Oracle table space Error Collection

1, a mistake

ORA-00604: recursive SQL level 1 error ORA-01653: can not pass table SYS.AUD $ 1024 (in the SYSTEM table space) extended ORA-02002: Error writing to audit trail ORA-00604: recursive SQL level 1 error ORA-01653: table SYS.AUD $ by 1024 can not be extended (in the SYSTEM table space)



 

Check the table space is to grow automatically.

SELECT FILE_NAME,TABLESPACE_NAME,AUTOEXTENSIBLE FROM dba_data_files;

search result:

E:\APP\ADMINISTRATOR\ORADATA\ORCL\USERS01.DBF    USERS    YES
E:\APP\ADMINISTRATOR\ORADATA\ORCL\UNDOTBS01.DBF    UNDOTBS1    YES
E:\APP\ADMINISTRATOR\ORADATA\ORCL\SYSAUX01.DBF    SYSAUX    YES
E:\APP\ADMINISTRATOR\ORADATA\ORCL\SYSTEM01.DBF    SYSTEM    YES

Confirm SYSTEM table space to grow automatically, but can not be extended.

View server E drive, not capacity, and delete some unused things, ORACLE restart the service. problem solved.

 

If the table space is not an automatic increase, according to the command, is set to grow automatically.

ALTER DATABASE DATAFILE 'E:\APP\ADMINISTRATOR\ORADATA\OFFSITEAUDIT\SYSTEM01.DBF'
AUTOEXTEND ON NEXT 100M MAXSIZE 20480M;

 

Or directly change the size of data files.

ALTER TABLESPACE SYSTEM ADD DATAFILE 'E:\APP\ADMINISTRATOR\ORADATA\OFFSITEAUDIT\SYSTEM02.DBF' SIZE 2048M;

to be continued.

Guess you like

Origin www.cnblogs.com/Currention/p/11077280.html