錯誤提示
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