--查询表空间的大小
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name ;
--增大表空间的尺寸
alter database datafile 'C:\ORACLEXE\APP\ORACLE\ORADATA\XE\UPSCOREUSER.DBF'resize 600m;