码迷,mamicode.com
首页 > 数据库 > 详细

oracle常用查询语句

时间:2018-10-27 00:25:20      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:oracle   表空间   sed   space   ble   select   where   常用   tables   

1.查看表空间:
SELECT total.tablespace_name,
Round(total.MB, 2) AS Total_MB,
Round(total.MB - free.MB, 2) AS Used_MB,
Round(( 1 - free.MB / total.MB ) * 100, 2)
|| ‘%‘ AS Used_Pct
FROM (SELECT tablespace_name,
Sum(bytes) / 1024 / 1024 AS MB
FROM dba_free_space
GROUP BY tablespace_name) free,
(SELECT tablespace_name,
Sum(bytes) / 1024 / 1024 AS MB
FROM dba_data_files
GROUP BY tablespace_name) total
WHERE free.tablespace_name = total.tablespace_name;

2.后续不断更新中。。。。。。。。。。。。。。。

oracle常用查询语句

标签:oracle   表空间   sed   space   ble   select   where   常用   tables   

原文地址:http://blog.51cto.com/1937519/2309579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!