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

相关文章

Java Oracle 结果集是Java语言中处理数据库查询结果的一种方...
Java AES和Oracle AES是现代加密技术中最常使用的两种AES加密...
Java是一种广泛应用的编程语言,具备可靠性、安全性、跨平台...
随着移动互联网的发展,抽奖活动成为了营销活动中不可或缺的...
Java和Oracle都是在计算机领域应用非常广泛的技术,他们经常...
Java 是一门非常流行的编程语言,它可以运行于各种操作系统上...