--1、獲取需要釋放空間的表空間信息(包含oracle database自有表空間)
--drop table system.tbs_detail;
create table system.tbs_detail as 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;
--select * from system.tbs_detail order by "Sum_MB" desc,"free_MB" desc;
--2、獲取需要釋放空間的應用表空間數據文件使用情況
--drop table system.datafile_space;
create table system.datafile_space as?
select a.TABLESPACE_NAME,
? ? ? ?a.FILE_NAME,
? ? ? ?a.BYTES / 1024 / 1024 total,
? ? ? ?b.sum_free / 1024 / 1024 free
? from dba_data_files a,
? ? ? ?(select file_id, sum(bytes) sum_free
? ? ? ? ? from dba_free_space
? ? ? ? ?group by file_id) b
?where a.FILE_ID = b.file_id
? ?and a.TABLESPACE_NAME in (select tablespace_name
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?from system.tbs_detail
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? where (tablespace_name like '%CQLT%' or
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? tablespace_name like '%CQST%'
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? or tablespace_name like 'TS%' or tablespace_name like 'IDX%'
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? or tablespace_name like '%HX%')
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? and "Sum_MB" > 100);
--select * from system.datafile_space;
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
--3、生成數據文件大小重置腳本,在每個數據文件當前實際使用空間大小基礎上增加 100m 空間
select 'alter database datafile ''' || file_name || ''' resize ' ||
? ? ? round(to_number(total - free + 100),0) || ' M;'
? from system.datafile_space;
??
--查看 ASM 磁盤組使用情況
sqlplus / as sysdba <<EOF
set feed off
set linesize 200
set pagesize 200
set echo off
spool /home/oracle/check_log/chktbs.log append
select name,state,type,total_mb,free_mb from v\$asm_diskgroup;
spool off
quit
EOF
?
轉載請注明作者出處及原文鏈接,否則將追究法律責任:
作者:xiangsir
原文鏈接:http://blog.csdn.net/xiangsir/article/details/9002201
QQ:444367417
MSN:xiangsir@hotmail.com
?
?
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
