1. 程式人生 > 資料庫 >oracle 查詢表空間

oracle 查詢表空間

SELECT a.tablespace_name “表空間名稱”,
total / (1024 * 1024) “表空間大小(M)”,
free / (1024 * 1024) “表空間剩餘大小(M)”,
(total - free) / (1024 * 1024 ) “表空間使用大小(M)”,
total / (1024 * 1024 * 1024) “表空間大小(G)”,
free / (1024 * 1024 * 1024) “表空間剩餘大小(G)”,
(total - free) / (1024 * 1024 * 1024) “表空間使用大小(G)”,
round((total - free) / total,4) * 100 “使用率 %”

FROM (SELECT tablespace_name,SUM(bytes) free
FROM dba_free_space
GROUP BY tablespace_name) a,
(SELECT tablespace_name,SUM(bytes) total
FROM dba_data_files
GROUP BY tablespace_name) b
WHERE a.tablespace_name = b.tablespace_name