ERROR:
In Oracle 11g r2 database rman crashes during exit and gives error like DBGMISC: ENTERED crmkmrsr.
REASON:
Inconsistency in NLS settings. (This is specified as a bug on the oracle side.)
SOLUTION:
The problem will be solved when NLS_COMP and NLS_SORT are set to BINARY during the rman session.
1 2 |
RMAN> sql "alter session set NLS_COMP=BINARY"; RMAN> sql "alter session set NLS_SORT=BINARY"; |
You can run your scripts afterwards.