本文共 590 字,大约阅读时间需要 1 分钟。
select tbs 表空间名,
sum(totalM) 总共大小M,
sum(usedM) 已使用空间M,
sum(remainedM) 剩余空间M,
sum(usedM)/sum(totalM) 使用率
from
(
select b.file_id ID,
b.tablespace_name tbs,
b.file_name name,
b.bytes/1024/1024 totalM,
(b.bytes-sum(a.bytes))/1024/1024 usedM,
sum(a.bytes)/1024/1024 remainedM
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_name,b.file_id,b.bytes
order by b.tablespace_name
)
group by tbs
扩容命令
alter tablespace LMIS add datafile 'E:\LMIS\DATA\DATA24.ODB' size 1024M
新增命令,注意新增文件名称
转载地址:http://kyuwa.baihongyu.com/