Snapshot standby gone bad....almost
I was recently involved in DR testing involving two standby databases. For the testing, I simply converted the 2 standby databases from physical standbys to snapshot standbys. After the testing had ended from an application perspective, I started to convert the standby databases from snapshot standby back to physical standby. In the process of doing so, I received the following ORA-0600 error. SQL > ALTER DATABASE CONVERT TO PHYSICAL STANDBY * ERROR at line 1: ORA-00600: internal error code, arguments: [krhahws_02], [], [], [], [], [], [], [], [], [], [], [] Oh no! Never fear, I thought... I went to Oracle Support to research this issue and found the following resolution: 1. set disk_asynch_io=FALSE in the init.ora (this setting is just going to be temporary for repeating the "flashback database"). 2. shutdown then "startup mount" the database, to pick up the new parameter setting for disk_asynch_io 3. verify the disk_a...