查看Oracle表空间大小的方法

在数据库管理中,磁盘空间不足是DBA都会遇到的问题,问题比较常见。

1 查看Oracle表空间大小--已经使用的百分比。
SQL> 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;


TABLESPACE_NAME   Sum MB    used MB free MB percent_used
------------------------------ ---------- ---------- ---------- ------------
UNDOTBS1       65    57.9375 7.0625        89.13
DW      100    34.6875 65.3125        34.69
USERS 5      1.375  3.625 27.5
SYSTEM     5724   718.6875  5005.3125        12.56


17 rows selected.


"Sum MB": 表示表空间所有的数据文件总共在操作系统占用磁盘空间的大小
比如:SYSTEM表空间有2个数据文件,datafile1为300MB,datafile2为400MB,那么test表空间的"Sum MB"就是700MB
"userd MB": 表示表空间已经使用了多少
"free MB": 表示表空间剩余多少
"percent_user": 表示已经使用的百分比


2 比如从1中查看到SYSTEM表空间已使用百分比达到90%以上,可以查看该表空间总共有几个数据文件,每个数据文件是否自动扩展,可以自动扩展的最大值。
select file_name,tablespace_name,bytes/1024/1024 "bytes MB",maxbytes/1024/1024 "maxbytes MB" from dba_data_files where tablespace_name='SYSTEM'; 


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


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


5 验证已经增加的数据文件
select file_name,file_id,tablespace_name from dba_data_files  
where tablespace_name='SYSTEM';


6 如果删除表空间数据文件,如下:
alter tablespace SYSTEM  
drop datafile '/opt/oracle/oradata/ora11g/system02.dbf';

你可能感兴趣的:(查看Oracle表空间大小的方法)