Oracle维护常用SQL语句

时间:2013-07-08 12:26:06
【文件属性】:

文件名称:Oracle维护常用SQL语句

文件大小:49KB

文件格式:TXT

更新时间:2013-07-08 12:26:06

Oracle

Oracle维护常用SQL语句 ************************************************ 如何查看各个表空间占用磁盘情况? col tablespace format a20 select b.file_id 文件ID号, b.tablespace_name 表空间名,b.bytes 字节数, (b.bytes-sum(nvl(a.bytes,0))) 已使用, sum(nvl(a.bytes,0)) 剩余空间,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


网友评论