1.檢視所有表空間使用情況
select b.file_id 檔案id號,
b.tablespace_name 表空間名,
b.bytes/
1024
/1024||'
m'位元組數,
(b.bytes-
sum(nvl(a.bytes,0)))/
1024
/1024||'
m' 已使用,
sum(nvl(a.bytes,0))/
1024
/1024||'
m' 剩餘空間,
100-
sum(nvl(a.bytes,0))/(b.bytes)*
100 占用百分比
from dba_free_space a,dba_data_files b where a.file_id
=b.file_id
group
by b.tablespace_name,b.file_id,b.bytes order
by b.file_id;2
.檢視使用者預設的表空間.
select username,default_tablespace from
dba_users;
3.檢視要擴充套件的表空間使用的資料檔案路徑與名字
select
*from dba_data_files where tablespace_name like
'users%
';
oracle 表空間 查詢
知道表空間名,顯示該錶空間包括的所有表。select from all tables where tablespace name 表空間名 知道表名,檢視該錶屬於那個表空間 select tablespace name,table name from user tables where table ...
Oracle表空間查詢
查詢表空間使用情況 select upper f.tablespace name 表空間名 d.tot grootte mb 表空間大小 m d.tot grootte mb f.total bytes 已使用空間 m to char round d.tot grootte mb f.total b...
oracle表空間查詢
1.查詢使用者 資料 表空間 select upper f.tablespace name 表空間名 d.tot grootte mb 表空間大小 m d.tot grootte mb f.total bytes 已使用空間 m to char round d.tot grootte mb f.to...