首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Oracle 设立表空间自动增长(转)

2012-07-03 
Oracle 设置表空间自动增长(转)oracle异常: ORA-01653: unable to extend table设置表空间自动增长非临时

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/

热点排行