首先查询表空间的大小以及文件路径地址
select tablespace_name, file_id, file_name,round(bytes/(1024*1024),0) total_space from dba_data_files order by tablespace_name;
解决方案一
//修改表空间大小(32000可改为想要的数值) alter database datafile "要修改的数据文件地址" resize 32000m;
解决方案二
//新增数据文件 ALTER TABLESPACE 表空间名 ADD DATAFILE "数据文件路径" SIZE 500M AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED;
[oracle创建表空间]Oracle表空间不足的两种解决办法
http://m.bbyears.com/shujuku/137747.html
推荐访问: