Oracle表空间不足的两种解决办法
程序员文章站
2022-06-24 20:39:14
首先查询表空间的大小以及文件路径地址
select tablespace_name, file_id, file_name,round(bytes/(1024*1...
首先查询表空间的大小以及文件路径地址
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表空间不足的两种解决办法,希望对大家有所帮助