oracle table space add

前端之家收集整理的这篇文章主要介绍了oracle table space add前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

oracle table space add

ORA-01653: unable to extend table xxxxxxx by 32 in tablespace xxxxxxxxxx

解决方法添加空间:

ust add a new datafile for the existing tablespace

ALTER TABLESPACE LEGAL_DATA ADD DATAFILE ‘/u01/oradata/ userdata03. dbf’ SIZE 200M;

To find out the location and size of your data files:

SELECT FILE_NAME,BYTES FROM DBA_DATA_FILES WHERE TABLESPACE_NAME = 'LEGAL_DATA';

Are the spaces intended? I adjusted the path to my needs,but left the spaces in,so I ended up with: ALTER TABLESPACE SYSTEM ADD DATAFILE ‘/usr/lib/oracle/oradata/XE/ userdata03. dbf’ SIZE 200M; The file in my filesystem has the spaces,but it think this is wrong. However,I cannot rename the file,as I cannot take SYSTEM tablespace offline

http://www.dba-oracle.com/t_ora_01653_unable_to_extend_table_string_string_by_string_in_tablespace_string.htm

原文链接:https://www.f2er.com/oracle/211922.html

猜你在找的Oracle相关文章