用戶準備清除dg,單機運行,但我清除主庫的dg相關參數後,啓動數據庫報:數據庫
ORA-03113oracle
SQL> startup;app
ORACLE instance started.性能
Total System Global Area 2147483648 bytesui
Fixed Size 1220460 bytes日誌
Variable Size 452984980 bytesorm
Database Buffers 1677721600 bytesci
Redo Buffers 15556608 bytesit
Database mounted.io
ORA-03113: end-of-file on communication channel
檢查alert.log日誌錯誤信息:
Thu Aug 13 09:21:15 2009
LGWR: Primary database is in MAXIMUM AVAILABILITY mode
LGWR: Destination LOG_ARCHIVE_DEST_1 is not serviced by LGWR
LGWR: Minimum of 1 synchronous standby database required
Thu Aug 13 09:21:15 2009
Errors in file /u01/app/oracle/admin/esuite/bdump/esuite_lgwr_3948.trc:
ORA-16072: Message 16072 not found; No message file for product=RDBMS, facility=ORA
Thu Aug 13 09:21:15 2009
Errors in file /u01/app/oracle/admin/esuite/bdump/esuite_lgwr_3948.trc:
ORA-16072: Message 16072 not found; No message file for product=RDBMS, facility=ORA
LGWR: terminating instance due to error 16072
Instance terminated by LGWR, pid = 3948
緣由是最大性能模式(最大保護模式也同樣)要求備庫是可通訊的, 而原先只是把備庫幹掉了, 但沒有把保護模式
作更改, 因此主庫重啓會有錯誤. 如今只要在打開數據庫前把改成最大性能模式便可.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 2147483648 bytes
Fixed Size 1220460 bytes
Variable Size 452984980 bytes
Database Buffers 1677721600 bytes
Redo Buffers 15556608 bytes
Database mounted.
SQL> alter database set standby database to maximize performance;
Database altered.
SQL> alter database open;
Database altered.
SQL>