Script – Tablespace Information .

  1. SET linesize 150  
  2. column tablespace_name format a20 heading 'Tablespace'  
  3. column sumb format 999,999,999  
  4. column extents format 9999  
  5. column bytes format 999,999,999,999  
  6. column largest format 999,999,999,999  
  7. column Tot_Size format 999,999 Heading 'Total| Size(Mb)'  
  8. column Tot_Free format 999,999,999 heading 'Total Free(MB)'  
  9. column Pct_Free format 999.99 heading '% Free'  
  10. column Chunks_Free format 9999 heading 'No Of Ext.'  
  11. column Max_Free format 999,999,999 heading 'Max Free(Kb)'  
  12. SET echo OFF  
  13. PROMPT FREE SPACE AVAILABLE IN TABLESPACES  
  14. SELECT   a.tablespace_name           ,  
  15.          SUM(a.tots   /1048576)        Tot_Size,  
  16.          SUM(a.sumb   /1048576)        Tot_Free,  
  17.          SUM(a.sumb)  *100/SUM(a.tots) Percent_Free,  
  18.          SUM(a.largest/1024)           Max_Free,  
  19.          SUM(a.chunks)                 Chunks_Free  
  20. FROM     ( SELECT  tablespace_name,  
  21.                   0          tots          ,  
  22.                   SUM(bytes) sumb          ,  
  23.                   MAX(bytes) largest       ,  
  24.                   COUNT(*)   chunks  
  25.          FROM     dba_free_space a  
  26.          GROUP BY tablespace_name  
  27.            
  28.          UNION  
  29.            
  30.          SELECT   tablespace_name,  
  31.                   SUM(bytes) tots,  
  32.                   0,0,0  
  33.          FROM     dba_data_files  
  34.          GROUP BY tablespace_name  
  35.          )  
  36.          a  
  37. GROUP BY a.tablespace_name  
  38. ORDER BY pct_free;  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值