--查看表空间名称、数据文件的路径、大小、及使用率
select b.tablespace_name "表空间名称",
b.file_name "数据文件路径",
b.bytes/1024/1024 "大小(M)",
substr((b.bytes-sum(nvl(a.bytes,0)))/(b.bytes)*100,1,5) "使用率"
from dba_free_space a,dba_data_files b
where a.file_id(+)=b.file_id
group by b.tablespace_name,b.file_name,b.bytes
order by 1,2;
--增加表空间大小
--首先需要查询表空间名称和数据文件所在路径,然后执行以下命令
alter tablespace "USERS" add datafile ‘D:\APP\ADMINISTRATOR\ORADATA\ORCL\USERS02.DBF‘ size 10240M;
alter temporary tablespace "TEMP" add tempfile ‘D:\APP\ADMINISTRATOR\ORADATA\ORCL\TEMP02.DBF‘ size 1024M;