oracle 查詢資料庫表空間大小和剩餘空間

2021-09-07 07:23:35 字數 505 閱讀 5437

dba_data_files:資料庫資料檔案資訊表。可以統計表空間大小(總空間大小)。

dba_free_space:可以統計剩餘表空間大小。

增加表空間即向表空間增加資料檔案,表空間大小就是資料檔案總大小。

檢查oracle各個表空間的增長情況(各表空間使用率)  

select a.tablespace_name,(1-(a.total)/b.total)*100 used_percent from 

(select tablespace_name,sum(bytes) total from dba_free_space group by tablespace_name) a,

(select tablespace_name,sum(bytes) total from dba_data_files group by tablespace_name) b

where a.tablespace_name=b.tablespace_name

ORACLE資料庫表空間查詢

前提 必須有dba許可權,有許可權查詢表空間使用情況 檢視表空間使用情況 select upper f.tablespace name 表空間名 d.tot grootte mb 表空間大小 m d.tot grootte mb f.total bytes 已使用空間 m to char round...

Oracle資料庫查詢使用者表空間查詢 建立

檢視資料庫裡面所有使用者,前提是你是有dba許可權的帳號,如sys,system select from dba users 檢視你能管理的所有使用者 select from all users 檢視當前使用者資訊 select from user users 查詢使用者所對應的表空間 select...

oracle 資料庫表空間

1 建立表空間 格式 建立表空間 create tablespace 表空間名 datafile 表空間檔案儲存物理路徑.ora size 500m defaultstorage autoextend on initial 100m next 100m minextents 20 maxextent...