指令碼實現檢視錶空間使用情況
#!/bin/bash
source ~/.bash_profile
. /home/ora10/system_tablespace
sqlplus -S oracle/hao12345@hxy <
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
source ~/.bash_profile
. /home/ora10/system_tablespace
sqlplus -S oracle/hao12345@hxy <
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
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24492954/viewspace-1129893/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 檢視錶空間使用情況Oracle
- 檢視空間使用情況的指令碼指令碼
- 通過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 透過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- Oracle 檢視錶空間的大小及使用情況sql語句OracleSQL
- 檢視oracle表空間使用情況Oracle
- 檢查表空間、資料檔案、OS空間使用情況的指令碼指令碼
- sql檢視所有表空間使用情況SQL
- 檢視mysql資料庫空間使用情況MySql資料庫
- 檢視Oracle的表空間的使用情況Oracle
- 檢視SQL SERVER表的空間使用情況SQLServer
- Oracle檢視錶空間使用率SQL指令碼OracleSQL指令碼
- 查詢表空間使用情況的指令碼指令碼
- oracle檢視錶空間使用情況及某表是否被鎖的問題Oracle
- Oracle 檢查表空間使用情況Oracle
- Oracle檢視物件空間使用情況show_spaceOracle物件
- 檢視SQL SERVER表的空間使用情況(續)SQLServer
- 華納雲:如何檢視Linux硬碟空間使用情況Linux硬碟
- Win10怎麼檢視磁碟空間使用情況?Win10
- 查詢表空間使用情況的簡單檢視
- oracle 檢視錶空間Oracle
- 檢視oracle資料庫表空間使用情況 非常慢!Oracle資料庫
- oracle 10g 命令檢視錶空間大小情況Oracle 10g
- oracle 資料庫裡檢視錶空間使用狀況;Oracle資料庫
- Oracle檢視錶空間大小Oracle
- Linux檢視磁碟目錄記憶體空間使用情況Linux記憶體
- java程式碼實現檢視Tomcat記憶體使用情況JavaTomcat記憶體
- 檢視系統中磁碟(加磁碟陣列)空間的使用情況陣列
- 通過 dbms_space.space_usage 檢視objects 的空間使用情況Object
- 查詢表空間使用情況
- oracle查詢表空間的空間佔用情況Oracle
- Oracle檢視使用者預設表空間使用情況的sql語句OracleSQL
- windows檢視埠占用情況Windows
- 使用SQL指令碼檢視錶空間使用率和使用dba_tablespace_usage_metrics檢視的區別SQL指令碼
- db2檢視錶空間和增加表空間容量DB2
- SQL語句大全—檢視錶空間(二)SQL
- SQL語句大全—檢視錶空間(一)SQL
- SQL Server 檢視錶佔用空間大小SQLServer