Oracle
 sql >> Database >  >> RDS >> Oracle

ORA-01618

Questo è il mio centesimo post su questo blog!!!

Sto cercando di duplicare un problema in cui ho i thread 4, 5 e 6 nel mio primario e il mio standby ha i thread 1 e 2. Quando ho eseguito un passaggio, tutto andava bene, ma non potevo tornare indietro perché il vecchio primario, ora lo standby si aspetta di ripetere il thread 4 che non esiste nel mio nuovo primario, il vecchio standby. Per i miei test, ho un RAC primario a 2 nodi e uno standby RAC a 2 nodi. Com'era prevedibile, entrambi hanno i thread 1 e 2. Quindi ho tentato di passare dal primario ai thread 3 e 4 semplicemente modificando il parametro THREADS nello SPFILE. Ma all'avvio ho ricevuto:

PRCR-1079 : Failed to start resource ora.resp.db
CRS-5017: The resource action "ora.resp.db start" encountered the following error:
ORA-01618: redo thread 3 is not enabled - cannot mount
. For details refer to "(:CLSN00107:)" in "/u01/app/crs11.2.0.3/log/myhost01/agent/crsd/oraagent_oracle/oraagent_oracle.log".
CRS-2674: Start of 'ora.resp.db' on 'myhost01' failed
CRS-2632: There are no more servers to try to place resource 'ora.resp.db' on that would satisfy its placement policy
CRS-5017: The resource action "ora.resp.db start" encountered the following error:
ORA-01618: redo thread 4 is not enabled - cannot mount
. For details refer to "(:CLSN00107:)" in "/u01/app/crs11.2.0.3/log/myhost02/agent/crsd/oraagent_oracle/oraagent_oracle.log".
CRS-2674: Start of 'ora.resp.db' on 'myhost02' failed

Questa non è una semplice modifica dei parametri. Per aggirare questo problema, dobbiamo prima creare log di ripristino online per supportare i nuovi thread:

SQL> alter database add logfile thread 3 group 30
  2  '/oracle_data/oradata/resp/redo30.log' size 52429312;
Database altered.
SQL> alter database add logfile thread 3 group 31
  2  '/oracle_data/oradata/resp/redo31.log' size 52429312;
Database altered.
SQL> alter database add logfile thread 4 group 40
  2  '/oracle_data/oradata/resp/redo40.log' size 52429312;
Database altered.
SQL> alter database add logfile thread 4 group 41
  2  '/oracle_data/oradata/resp/redo41.log' size 52429312;
Database altered.

Successivamente, abilitiamo i thread.

SQL> alter database enable public thread 3;
Database altered.
SQL> alter database enable public thread 4;
Database altered.

Lastly, we change the initialization parameters and bounce the instance:
SQL> alter system set thread=3 sid='resp1' scope=spfile;

System altered.

SQL> alter system set thread=4 sid='resp2' scope=spfile;

System altered.
Quindi rimbalza le istanze con srvctl. Una volta eseguito il backup di tutto, ho disabilitato i thread 1 e 2.
SQL> alter database disable thread 1;
Database altered.
SQL> alter database disable thread 2;
Database altered.