When 2 rac node database started, it throws ORA-19808 error as below.
SQL> startup pfile=’/tmp/pfile.ora’;
ORA-32006: SEC_CASE_SENSITIVE_LOGON initialization parameter has been deprecated
ORACLE instance started.
Total System Global Area 1.0737E+11 bytes
Fixed Size 7715904 bytes
Variable Size 1.2281E+10 bytes
Database Buffers 9.5026E+10 bytes
Redo Buffers 59392000 bytes
ORA-01105: mount is incompatible with mounts by other instances
ORA-19808: recovery destination parameter mismatch
Cause:
db_recovery_file_dest_size is different in DOYEN1 and DOYEN2 instance
Solution:
alter system set db_recovery_file_dest_size=1500g scope=spfile sid=’*’;
And start the instance.
Recent Posts