摘要: select df.tablespace_name "表空间名",totalspace "总空间M",freespace "剩余空间M",round((1-freespace/totalspace)*100,2) "使用率%",(totalspace-freespace)/1024 "已用空间G"from (select tablespace_name,round(sum(bytes)/1024/1024) totalspace from dba_data_files group by tabl 阅读全文
posted @ 2012-05-08 16:37 无尽的缥缈 阅读(313) 评论(0) 推荐(0) 编辑