数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

显示表空间的使用情况的SQL语句


发布日期:2018年05月08日
 
显示表空间的使用情况的SQL语句

col tsname format a justify c heading Tablespace

col nfrags format justify c heading Free|Frags

col mxfrag format justify c heading Largest|Frag (KB)

col totsiz format justify c heading Total|(KB)

col avasiz format justify c heading Available|(KB)

col pctusd format justify c heading Pct|Used

select

totaltablespace_name tsname

count(freebytes) nfrags

nvl(max(freebytes)/) mxfrag

totalbytes/ totsiz

nvl(sum(freebytes)/) avasiz

(nvl(sum(freebytes))/totalbytes)* pctusd

from

dba_data_files total

dba_free_space free

where

totaltablespace_name = freetablespace_name(+)

group by

totaltablespace_name

totalbytes;

上一篇:其他数据库向Oracle8i的转移分析

下一篇:数据库名、实例名、ORACLE