Oracle
database and EMC network MML error
How
to link library?
using target database control file instead of recovery catalog
RMAN retention policy will be applied to the command
RMAN retention policy is set to recovery window of 7 days
RMAN-00571:
===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS
===============
RMAN-00571: ===========================================================
RMAN-03002: failure of delete command at 11/18/2017 11:00:14
ORA-19554: error allocating device, device type: SBT_TAPE,
device name:
ORA-27211: Failed to load Media Management Library
Additional information: 2
Note: Database has been upgraded from 12c to 18c that’s why
we are getting above error.
Solution :
--------------OLD
12c ORACLE_HOME--------------------------
[oracle@test_server lib]$
[oracle@test_server lib]$ ls -lrt *libobk.so*
lrwxrwxrwx. 1 oracle oinstall 21 Nov 15 2017 libobk.so -> /usr/lib/libnsrora.so
[oracle@test_server lib]$
[oracle@test_server lib]$
[oracle@test_server lib]$ pwd
/applications/oracle/12.1.0.2/dbhome1/lib
---------------NEW
18c ORACLE_HOME ------------------------
[oracle@test_server]$ cd $ORACLE_HOME/lib
[oracle@test_server lib]$ pwd
/applications/oracle/18.3.0.0/dbhome2/lib
[oracle@test_server lib]$ ls -lrt *libobk.so*
lrwxrwxrwx 1 oracle oinstall 21 Jun 27 12:20 libobk.so ->
/usr/lib/libnsrora.so
Run below command to Link the library file
[oracle@test_server lib]$
ln -s /usr/lib/libnsrora.so libobk.so
Now run the RMAN backup once again …!!!
No comments:
Post a Comment