Chinaunix首页 | 论坛 | 博客
  • 博客访问: 972461
  • 博文数量: 358
  • 博客积分: 8185
  • 博客等级: 中将
  • 技术积分: 3751
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-15 16:27
个人简介

The views and opinions expressed all for my own,only for study and test, not reflect the views of Any Company and its affiliates.

文章分类

全部博文(358)

文章存档

2012年(8)

2011年(18)

2010年(50)

2009年(218)

2008年(64)

我的朋友

分类: Oracle

2009-12-14 16:28:34

 /*
 *  Tablespace  Size
 */
SELECT a.tablespace_name,
       a.bytes/1024/1024 total_M,
       b.bytes/1024/1024 as free_M,
       a.bytes/1024/1024- b.bytes/1024/1024 used_M,
       round(((a.bytes - b.bytes) / a.bytes) * 100, 2) percent_used,
       b.largest
  FROM (SELECT tablespace_name, sum(bytes) bytes
          FROM dba_data_files
         GROUP BY tablespace_name) a,
       (SELECT tablespace_name, sum(bytes) bytes, max(bytes) largest
          FROM dba_free_space
         GROUP BY tablespace_name) b
 WHERE a.tablespace_name = b.tablespace_name
 ORDER BY tablespace_name
 --ORDER BY bytes_free DESC
 -- ((a.bytes - b.bytes) / a.bytes) DESC
阅读(582) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~