oracle教程之oracle 查看表空间

1. 查看所有表空间大小

select tablespace_name,sum(bytes)/1024/1024 from dba_data_files
group by tablespace_name;  

2. 未使用的表空间大小

select tablespace_name,sum(bytes)/1024/1024 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  

6.如何查看oracle临时表空间当前使用了多少空间的大小?
不是占用量,是当前正在使用的临时表空间大小

SELECT SE.USERNAME,  
       SE.SID,  
       SU.EXTENTS,  
       SU.BLOCKS * TO_NUMBER(RTRIM(P.VALUE)) AS SPACE,  
       TABLESPACE,  
       SEGTYPE,  
       SQL_TEXT  
  FROM V$SORT_USAGE SU, V$PARAMETER P, V$SESSION SE, V$SQL S  
 WHERE P.NAME = 'db_block_size' 
   AND SU.SESSION_ADDR = SE.SADDR  
   AND S.HASH_VALUE = SU.SQLHASH  
   AND S.ADDRESS = SU.SQLADDR  
 ORDER BY SE.USERNAME, SE.SID;
7.查询所有的表空间

select tablespace_name from dba_tablespaces ;

8. 查看表空间中分布的用户信息

select tablespace_name, owner,sum(bytes) from dba_segments  
group by tablespace_name, owner  

------------------


1.查看表空间已经使用的百分比

select   a.tablespace_name,a.bytes/1024/1024 "Sum MB",(a.bytes-b.bytes)/1024/1024   "used MB",b.bytes/1024/1024 "free MB",round(((a.bytes-b.bytes)/a.bytes)*100,2) "percent_used" 
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   ((a.bytes-b.bytes)/a.bytes)   desc

“Sum MB”表示表空间所有的数据文件总共在操作系统占用磁盘空间的大小

比如:test表空间有2个数据文件,datafile1为300MB,datafile2为400MB,那么test表空间的“Sum MB”就是700MB
“userd MB”表示表空间已经使用了多少
“free MB”表示表空间剩余多少
“percent_user”表示已经使用的百分比


2.比如从1中查看到MLOG_NORM_SPACE表空间已使用百分比达到90%以上,可以查看该表空间总共有几个数据文件,每个数据文件是否自动扩展,可以自动扩展的最大值。

select   file_name,tablespace_name,bytes/1024/1024 "bytes MB",maxbytes/1024/1024 "maxbytes MB"   from   dba_data_files  
  where tablespace_name='MLOG_NORM_SPACE'; 

2.1 查看 xxx 表空间是否为自动扩展

select file_id,file_name,tablespace_name,autoextensible,increment_by from dba_data_files order by file_id desc; 


3.比如MLOG_NORM_SPACE表空间目前的大小为19GB,但最大每个数据文件只能为20GB,数据文件快要写满,可以增加表空间的数据文件
用操作系统UNIX、Linux中的df   -g命令(查看下可以使用的磁盘空间大小)
获取创建表空间的语句:

select   dbms_metadata.get_ddl('TABLESPACE','MLOG_NORM_SPACE')   from   dual; 


4.确认磁盘空间足够,增加一个数据文件
alter   tablespace   MLOG_NORM_SPACE  
add   datafile   '/oracle/oms/oradata/mlog/Mlog_Norm_data001.dbf' 
size   10M   autoextend   on   maxsize   20G 

5.验证已经增加的数据文件

select   file_name,file_id,tablespace_name   from   dba_data_files  
where   tablespace_name='MLOG_NORM_SPACE' 

6.删除表空间数据文件
alter   tablespace   MLOG_NORM_SPACE  
drop    datafile '/oracle/oms/oradata/mlog/Mlog_Norm_data001.dbf' 

你可能感兴趣的:(oralce,oracle表空间,oracle查看表空间)