oracle table space add

不问归期 提交于 2020-03-09 09:25:11

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!