Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1790960
  • 博文数量: 600
  • 博客积分: 10581
  • 博客等级: 上将
  • 技术积分: 6205
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-06 10:13
文章分类
文章存档

2016年(2)

2015年(9)

2014年(8)

2013年(5)

2012年(8)

2011年(36)

2010年(34)

2009年(451)

2008年(47)

分类: Oracle

2012-11-08 14:46:02

1. 查看所有表空间大小
SQL> select tablespace_name,sum(bytes)/1024/1024 M from dba_data_files group by tablespace_name;

2. 已经使用的表空间大小
SQL> select tablespace_name,sum(bytes)/1024/1024 M from dba_free_space group by tablespace_name;

3. 所以使用空间可以这样计算
select a.tablespace_name,total,free,total-free used from 
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files
   group by tablespace_name) a, 
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space
   group by tablespace_name) b    
where a.tablespace_name=b.tablespace_name;
 
4. 下面这条语句查看所有segment的大小。
Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name

5. 还有在命令行情况下如何将结果放到一个文件里。
SQL> spool out.txt
SQL> select * from v$database;
SQL> spool off
阅读(1315) | 评论(0) | 转发(0) |
0

上一篇:tuxedo 基本命令

下一篇:C/C++格式化字符串

给主人留下些什么吧!~~