Chinaunix首页 | 论坛 | 博客
  • 博客访问: 624340
  • 博文数量: 825
  • 博客积分: 5000
  • 博客等级: 大校
  • 技术积分: 4980
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-27 14:19
文章分类

全部博文(825)

文章存档

2011年(1)

2008年(824)

我的朋友

分类:

2008-10-27 14:26:58


  col tsname format a16 justify c heading 'Tablespace'
  col nfrags format 999,990 justify c heading 'Free|Frags'
  col mxfrag format 999,999,990 justify c heading 'Largest|Frag (KB)'
  col totsiz format 999,999,990 justify c heading 'Total|(KB)'
  col avasiz format 999,999,990 justify c heading 'Available|(KB)'
  col pctusd format 990 justify c heading 'Pct|Used'
  select
  total.tablespace_name tsname,
  count(free.bytes) nfrags,
  nvl(max(free.bytes)/1024,0) mxfrag,
  total.bytes/1024 totsiz,
  nvl(sum(free.bytes)/1024,0) avasiz,
  (1-nvl(sum(free.bytes),0)/total.bytes)*100 pctusd
  from
  dba_data_files total,
  dba_free_space free
  where
  total.tablespace_name = free.tablespace_name(+)
  group by
  total.tablespace_name,
  total.bytes;
【责编:admin】

--------------------next---------------------

阅读(275) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~