在Linux下使用SQLPlus檢視Oracle資料庫表空間及使用率
- 在Linux下進入SQLPlus,
# su – oracle
$ sqlplus / as sysdba
SQL> - 檢視一個表空間所對應的資料檔案
SQL>select file_name from dba_data_files
where tablespace_name=’BING’;
FILE_NAME
————————————————————————————————————-
/u01/app/oracle/oradata/ora10g/bing001.dbf
/u01/app/oracle/oradata/ora10g/bing002.dbf - 檢視一個表空間資料檔案的大小
SQL>select tablespace_name, sum(bytes)/1024/1024 “SIZE_M”,sum(maxbytes)/1024/1024 “MAX_SIZE”
from dba_data_files
where tablespace_name=’BING’
group by tablespace_name;TABLESPACE_NAME SIZE_M MAX_SIZE
—————————— ———- ———-
BING 200 33791.9844 - 檢視一個表空間空閒的大小,
SQL>select tablespace_name, sum(bytes)/1024/1024 “Free_M”
from dba_free_space
where tablespace_name=’BING’
group by tablespace_name;TABLESPACE_NAME Free_M
—————————— ———-
BING 199.875說明:size_M 說明BING這個表空間對應的資料檔案現在的大小是200MB, Free_M說明現在這個表空間還剩餘199.874MB。 由於這個表空間設定了自動擴充套件,MAX_SIZE 說明這個表空間最大可以增大到33791.9844 MB
- 其他方法檢視
a. 在Oracle10g新增加了檢視 dba_tablespace_usage_metrics, 以block為單位顯示使用率。不過在這個檢視中,tablespace_size 對應的是上面的MAX_SIZE。
b. Oracle Enterprise Manager DB console中以圖形的方式很直觀的顯示了表空間的使用率。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9390331/viewspace-691893/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 檢視資料庫表空間資料庫
- 檢視oracle資料庫表空間使用情況 非常慢!Oracle資料庫
- Oracle檢視錶空間大小和使用率Oracle
- 檢視Oracle資料庫表空間大小,是否需要增加表空間的資料檔案Oracle資料庫
- 如何檢視Oracle資料庫表空間大小(空閒、已使用),是否要增加表空間的資料檔案...Oracle資料庫
- 檢視單個SQL消耗TEMP表空間以及TEMP表空間使用率SQL
- Oracle檢視錶空間使用率SQL指令碼OracleSQL指令碼
- oracle 資料庫裡檢視錶空間使用狀況;Oracle資料庫
- oracle表空間檢視Oracle
- 檢視oracle表空間使用情況Oracle
- oracle 表空間,臨時表空間使用率查詢Oracle
- oracle表空間使用率查詢Oracle
- 查詢數oracle據庫表空間使用率sqlOracleSQL
- 檢視mysql資料庫空間使用情況MySql資料庫
- oracle 11g 表空間使用率Oracle
- 通過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 透過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- oracle清除資料庫表空間Oracle資料庫
- Oracle 查詢表大小以及表空間使用率Oracle
- oracle 檢視使用者所在的表空間Oracle
- 檢視Oracle的表空間的使用情況Oracle
- Oracle11g新增檢視查詢表空間使用率DBA_TABLESPACE_USAGE_METRICSOracle
- GBase8s 檢視資料庫表空間資訊資料庫
- Oracle臨時表空間檢視、新增臨時表空間資料檔案、修改預設臨時表空間 方法!Oracle
- 在資料庫之間移動表空間資料庫
- 檢視ORACLE中表、表空間的大小Oracle
- 怎麼檢視oracle表空間,剩餘大小,表空間利用Oracle
- Oracle資料庫-建庫、建表空間,建使用者Oracle資料庫
- oracle的臨時表空間使用率99.9%Oracle
- ORACLE 臨時表空間使用率過高分析Oracle
- oracle 查詢表空間使用率的語句Oracle
- 檢視oracle臨時表空間佔用率的檢視Oracle
- oracle表及表空間使用情況Oracle
- Linux下建立Oracle表空間LinuxOracle
- ORACLE 臨時表空間使用率過高的原因及解決方案Oracle
- ORACLE臨時表空間使用率過高的原因及解決方法Oracle
- 查詢資料庫系統中表空間的使用率資料庫
- 同/不同庫遷移資料(在同使用者及表空間)測試