软件测试开发技术oracle常用经典SQL查询

发表于:2009-09-29来源:作者:点击数: 标签:软件测试SQLSqlsqloracle
软件测试 开发 技术 oracle 常用经典SQL查询 oracle 数据库 关键字:oracle SQL查询 oracle常用经典SQL查询 常用SQL查询: 1、查看表空间的名称及大小 selectt.tablespace_name,round(sum(bytes/(1024*1024)),0)ts_size fromdba_tablespacest,dba_data_files

软件测试开发技术oracle常用经典SQL查询 oracle数据库

关键字:oracle SQL查询 oracle常用经典SQL查询 

常用SQL查询:

 

1、查看表空间的名称及大小

 

select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size

from dba_tablespaces t, dba_data_files d

where t.tablespace_name = d.tablespace_name

group by t.tablespace_name;

 

2、查看表空间物理文件的名称及大小

 

select tablespace_name, file_id, file_name,

round(bytes/(1024*1024),0) total_space

from dba_data_files

order by tablespace_name;

 

3、查看回滚段名称及大小

 

select segment_name, tablespace_name, r.status, 

(initial_extent/1024) InitialExtent,(next_extent/1024) NextExtent, 

max_extents, v.curext CurExtent

From dba_rollback_segs r, v$rollstat v

Where r.segment_id = v.usn(+)

order by segment_name; 

 

原文转自:http://www.ltesting.net