码迷,mamicode.com
首页 > 其他好文 > 详细

ORCAL查看表空间情况

时间:2020-07-20 22:36:26      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:table   des   byte   join   总计   order   from   space   desc   

SELECT
a.tablespace_name 表空间名称,
total 总计,
total - free 已使用,
free 空闲,
round((total - free) / total * 100, 2) 使用占比
FROM (
SELECT tablespace_name
, round(SUM(bytes) / 1024 / 1024) AS total
FROM dba_data_files
GROUP BY tablespace_name
) a
LEFT JOIN (
SELECT tablespace_name
, round(SUM(bytes) / 1024 / 1024) AS free
FROM dba_free_space
GROUP BY tablespace_name
) b
ON a.tablespace_name = b.tablespace_name
ORDER BY (total - free) / total DESC;

ORCAL查看表空间情况

标签:table   des   byte   join   总计   order   from   space   desc   

原文地址:https://www.cnblogs.com/zhangzhiqin/p/13347192.html

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