加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

oracle table space add

发布时间:2020-12-12 15:46:19 所属栏目:百科 来源:网络整理
导读:oracle table space add ORA-01653: unable to extend table xxxxxxx by 32 in tablespace xxxxxxxxxx 解决方法添加空间: ust add a new datafile for the existing tablespaceALTER TABLESPACE LEGAL_DATA ADD DATAFILE ‘/u01/oradata/ userdata03. dbf’

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读