日期:2014-05-16  浏览次数:20580 次

Oracle 设置表空间自动增长(转)
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/