oracle异常:
ORA-01653: unable to extend table
设置表空间自动增长
非临时表空间:
select file_id from dba_data_files where tablespace_name=<your_tablespace_name>;
alter database datafile <file_id> autoextend on next 10M maxsize 10G;
临时表空间:
select file_id from dba_temp_files where tablespace_name=<your_tablespace_name>;
alter database tempfile <file_id> autoextend on next 10M maxsize 10G;
原文链接:http://changqingnew.blog.163.com/blog/static/1075233820112168135532/
ORA-01653: unable to extend table
设置表空间自动增长
非临时表空间:
select file_id from dba_data_files where tablespace_name=<your_tablespace_name>;
alter database datafile <file_id> autoextend on next 10M maxsize 10G;
临时表空间:
select file_id from dba_temp_files where tablespace_name=<your_tablespace_name>;
alter database tempfile <file_id> autoextend on next 10M maxsize 10G;
原文链接:http://changqingnew.blog.163.com/blog/static/1075233820112168135532/
本文介绍了解决Oracle数据库中遇到的ORA-01653异常的方法,通过设置表空间自动增长来避免表无法扩展的问题。适用于非临时表空间和临时表空间。
3216

被折叠的 条评论
为什么被折叠?



