您的位置:首页 > 其它

脚本实现查看表空间使用情况

2013-12-02 14:18 579 查看
#!/bin/bash

source ~/.bash_profile

. /home/ora10/system_tablespace

sqlplus -S oracle/hao12345@hxy <<EOF

col BYTES_USED for 9999999999999

set feed off

set linesize 100

set pagesize 200

spool /home/ora10/tablespace.alert

select a.tablespace_name,a.bytes bytes_used,b.largest,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;

spool off

exit;

EOF
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐