unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM 错误处理


错误提示
SQL> conn
Enter user-name: username
Enter password:
ERROR:
ORA-00604: error occurred at recursive SQL level 1
ORA-01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM
ORA-02002: error while writing to audit trail
ORA-00604: error occurred at recursive SQL level 1
ORA-01653: unable to extend table SYS.AUD$ by 8192 in tablespace SYSTEM
经过分析,发现是system用户表空间问题导致,最终,通过增加system用户表空间解决问题。
表空间扩展如下:
SQL> ALTER TABLESPACE "SYSTEM" ADD DATAFILE '/Oracle/app/oradata/orcl/SYSTEM02.DBF' SIZE 500M AUTOEXTEND ON NEXT 50M MAXSIZE UNLIMITED;
Tablespace altered.
SQL> COMMIT;
Commit complete.
SQL> CONN
Enter user-name: RDSYSEDUV712685
Enter password:
Connected.

 


lsnrctl stop
sqlplus /nolog
SQL> connect /as sysdba
Connected.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area 1586708480 bytes
Fixed Size 2213736 bytes
Variable Size 1191184536 bytes
Database Buffers 385875968 bytes
Redo Buffers 7434240 bytes
Database mounted.
Database opened.
SQL> quit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@localhost ~]$ lsnrctl start


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM