软件环境:
1、Windows NT4.0+Oracle 8.0.4
2、ORACLE安装路径为:C:\ORANT
SQL语句:
/* 中文环境*/
col 表空间名 format a20;
select
b.file_id文件ID号,
b.tablespace_name表空间名,
b.bytes字节数,
(b.bytes-sum(nvl(a.bytes,0)))已使用,
sum(nvl(a.bytes,0))剩余空间,
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;
/*英文环境*/
col tablespace_name format a20;
select
b.file_idfile_ID,
b.tablespace_nametablespace_name,
b.bytesBytes,
(b.bytes-sum(nvl(a.bytes,0)))used,
sum(nvl(a.bytes,0))free,
sum(nvl(a.bytes,0))/(b.bytes)*100 Percent
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;
文件ID号 表空间名 字节数已使用剩余空间 剩余百分比
--------- ------------------------------ --------- --------- --------- ----------
1 SYSTEM20971520 99717121099980852.451172
2 USER_DATA 3145728432128 271360086.263021
3 ROLLBACK_DATA 5242880 1640448 360243268.710938
4 TEMPORARY_DATA20971522048 209510499.902344