查看Oracle數據庫查看用戶默認表空間使用情況的sql語句:
查看用戶默認的表空間.sql:
select username,default_tablespace from dba_users;
查看各個表空間占用磁盤情況.sql:
select
b.file_id 文件ID號,
b.tablespace_name 表空間名,
b.bytes/1024/1024||'M'字節數,
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024||'M' 已使用,
sum(nvl(a.bytes,0))/1024/1024||'M' 剩余空間,
100 - sum(nvl(a.bytes,0))/(b.bytes)*100 占用百分比
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_id,b.bytes
order by b.file_id
以上2者關聯,就是查看用戶默認表空間使用情況的sql語句:
Select *
FROM
(select username,default_tablespace from dba_users) ut,
(select
--b.file_id 文件ID號,
b.tablespace_name 表空間名,
b.bytes/1024/1024||'M'字節數,
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024||'M' 已使用,
sum(nvl(a.bytes,0))/1024/1024||'M' 剩余空間,
100 - sum(nvl(a.bytes,0))/(b.bytes)*100 占用百分比
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_id,b.bytes
order by b.file_id ) tsu
Where ut.default_tablespace = tsu.表空間名
orDER BY ut.username