查询Oracle表空间使用情况:SELECT
-- '表空间名称'
a.tablespace_name as "Table Space Name",
-- 表空间总大小(byte)
total as "Total(byte)",
-- 表空间剩余大小(byte)
free as "Lave(byte)",
-- 表空间已使用大小(byte)
(total - free) as "Use(byte)",
-- 表空间总大小(G)
total / (1024 * 1024 * 1024) as "Total(G)" ,
-- 表空间剩余大小(G)
free...
阅读全部