ORA-01653: unable to extend table FND_CONCURRENT_REQUESTS by 16 in tablespace APPS_TS_TX_DATA

Oracle EBS中做业务的时候报ORA-01653: unable to extend table FND_CONCURRENT_REQUESTS by 16 in tablespace APPS_TS_TX_DATA
ORA-01653: unable to extend table FND_CONCURRENT_REQUESTS by 16 in tablespace APPS_TS_TX_DATA_第1张图片

解决方法:

应该是表空间不够引起的,可以通过Script – Tablespace Information里的脚本查看下。


使用下边Query查看Tablespcace
SELECT * FROM dba_data_files WHERE tablespace_name='APPS_TS_TX_DATA'

使用下边SQL增加一个数据文件到Tablespace中
ALTER tablespace APPS_TS_TX_DATA
ADD datafile '/u01/oracle/mc3yd213/db/apps_st/data/tx_data54.dbf' SIZE 512M autoextend ON NEXT 512M maxsize 2048M;

(需要system用户)

你可能感兴趣的:(ORA-01653: unable to extend table FND_CONCURRENT_REQUESTS by 16 in tablespace APPS_TS_TX_DATA)