SYS|544 SQL> alter database recover managed standby database cancel;
Database altered.
Elapsed: 00:00:03.02
SYS|544 SQL> alter database open read only;
alter database open read only
*
ERROR at line 1:
ORA-16006: audit_trail destination incompatible with database open mode
Elapsed: 00:00:00.01
SYS|544 SQL> !oerr ora 16006
16006, 00000, "audit_trail destination incompatible with database open mode"
// *Cause: The audit_trail initialization parameter was set to "DB" (or
// TRUE), which is incompatible with a database opened for read-only
// access.
// *Action: When the database is opened for read-only access, the audit_trail
// initialization parameter can only be set to "OS" or "NONE" (FALSE).
//
SYS|544 SQL> show parameter audit_trail;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
audit_trail string DB, EXTENDED
後來查了一下,發現是主庫設定了審計資料存放到資料庫表這個引數,而備庫引數是從主庫引數修改過來的,現在由於備庫要開啟只讀模式,所以有衝突,那就把審計資訊放倒作業系統目錄下吧。
SYS|544 SQL> alter system set audit_trail='os' scope=spfile;
System altered.
Elapsed: 00:00:00.01
SYS|544 SQL> shutdown immediate;
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SYS|544 SQL> startup mount;
ORACLE instance started.
Total System Global Area 335544320 bytes
Fixed Size 1219304 bytes
Variable Size 104858904 bytes
Database Buffers 226492416 bytes
Redo Buffers 2973696 bytes
Database mounted.
SYS|544 SQL> alter database open read only;
Database altered.
Elapsed: 00:00:03.32
只讀模式開啟成功。以後如果這個備庫switchover或failover成主庫的時候,它的審計資訊會放到audit_file_dest引數指定的目錄裡。
SYS|544 SQL> show parameter audit_trail
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
audit_trail string OS
SYS|544 SQL> show parameter audit_file
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
audit_file_dest string /u01/app/oracle/admin/PHYSTDBY
/adump
SYS|544 SQL>
看來要注意的細節問題還很多。
--End--
以只讀模式開啟物理備庫的時候,遇到ORA-16006錯誤
以只讀模式開啟物理備庫的時候,遇到ORA-16006錯誤
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-751056/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 物理data guard備standby庫的時候報錯。
- 文件被鎖定以只讀模式開啟怎麼取消 檔案只讀模式怎麼解除模式
- data gurad物理備份方式下以READ ONLY/WRITE模式開啟物理STANDBY模式
- rman映象備份全庫的時候報ora-00600錯誤。
- 建立cache group 時遇到 錯誤5120 時候的解決方案
- 資料庫啟動時遇到ORA-01578錯誤資料庫
- 啟動oracle資料庫到只讀模式Oracle資料庫模式
- 安裝clusterware時候遇到版本不相容錯誤
- 啟動oracle資料庫的時候報ORA-00205錯誤:Oracle資料庫
- onbar備份的時候返回錯誤程式碼142
- cache buffer chain latch可以以只讀模式共享AI模式
- 開發中遇到的錯誤
- 資料庫restore時遇到1119錯誤資料庫REST
- 使用React Hooks時遇到的錯誤提示ReactHook
- 使用flashback database 特性時遇到的錯誤Database
- ORA-00604, ORA-16000: 開啟資料庫以進行只讀訪問資料庫
- JPA 開發中遇到的錯誤
- sqlserver附加資料庫時,無法開啟物理檔案 "xx.mdf"。作業系統錯誤 5:"5SQLServer資料庫作業系統
- Oracle 11g Data Guard 物理備庫開啟日誌延時應用流程Oracle
- 解決升級資料庫時遇到的Text file busy錯誤資料庫
- 將資料庫設定為ARCHIVELOG模式時遇到ORA-12514錯誤資料庫Hive模式
- Oracle11g物理STANDBY開啟模式應用歸檔時無法執行備份Oracle模式
- rac的系統時間與物理備庫lag
- firefox 開啟em時候報ssl_error_weak_server_ephemeral_dh_key錯誤FirefoxErrorServer
- 啟動 Laravel-Sail 服務時遇到的 /usr/bin/env: 'bash\r' 錯誤LaravelAI
- Oracle 11g RAC如何把物理DG變成只讀庫Oracle
- 誰遇到過執行 monkey 的時候報 filenotfound 的報錯
- 物理DG的FAL_CLIENT設定錯誤引起的主庫報錯client
- 物理備庫互轉快照備庫
- 配置物理備庫+邏輯備庫
- DG -- READ ONLY模式開啟物理Standby模式
- windows上使用telnet時遇到的兩個錯誤Windows
- pypy有時候執行python程式錯誤Python
- suse10啟動vsftp的時候報錯FTP
- 遇到用toad 監控資料庫時的ora-00600 [17281] 錯誤資料庫
- AIX RAC9i 節點2啟動時遭遇到7445錯誤AI
- 搭建物理備庫
- 啟動10.2.0.5的OEM時,遇到ssl: Open wallet failed, ret = 28750的錯誤解決方案AI