维基百科 百度百科
名称 *
别名ID
等级 所属
排序 上位
类型 日期
备注
修改子项 修改信息 添加子项 添加资源

Resources
TableSpace Edit 2021-06-07
set lines 120 set pages 100 set term off tti off clear col col TABLESPACE_NAME format a15 col "SIZE(MB)" format a20 col "USED(MB)" format a20 col "FREE(MB)" format a20 col "USED(%)" format 990.99 select tablespace_name, to_char(nvl(total_bytes / 1024 / 1024,0),'999,999,999') as "size(MB)", to_char(nvl((total_bytes - free_total_bytes) / 1024 / 1024,0),'999,999,999') as "used(MB)", to_char(nvl(free_total_bytes / 1024 / 1024,0),'999,999,999') as "free(MB)", round(nvl((total_bytes - free_total_bytes) / total_bytes * 100,100),2) as "rate(%)" from ( select tablespace_name, sum(bytes) total_bytes from dba_data_files group by tablespace_name ), ( select tablespace_name free_tablespace_name, sum(bytes) free_total_bytes from dba_free_space group by tablespace_name ) where tablespace_name = free_tablespace_name(+) /

Resources
2021-06-07 0.25
SUM 1 0.25