Question : We are tryiing to confifure the NMO backup and also give the sample script to database team and they will modify according online and archival .
Example 10 RMAN script for a manual backup
The following RMAN script is for a manual backup of an entire Oracle database to
the volume pool MondayFulls of the (remote) NetWorker server mars.emc.com:
run {
allocate channel t1 type ’SBT_TAPE’;
allocate channel t2 type ’SBT_TAPE’;
send ’NSR_ENV=(NSR_SERVER=mars.emc.com,
NSR_DATA_VOLUME_POOL=MondayFulls)’;
backup full filesperset 4 format ’FULL_%d_%U’ (database);
EMC NetWorker Module for Oracle Release 76 5.0 Administration Guide
Software Configuration
release channel t1;
release channel t2;
}
Example 12 RMAN script for a scheduled backup
The following RMAN script is for a scheduled backup of an entire Oracle database to
the volume pool MondayFulls. The Recovery Catalog is used in this case:
Have a look at the NMO Administration Guide. This explains in detail what you need to do to setup Oracle backups with NetWorker and gives script examples. You can also have your RMAN script generated automatically by using the wizard in the NetWorker software.
The error 'failed to load media management library' means that the NMO software and Oracle have not been integrated correctly. There are many different possible reasons for this. One of the more common would be that you have installed the wrong bit-version of NMO (if Oracle is 32 bit, you need 32 bit NMO even if it's running on a 64 bit OS.). If this is not it, you should check out the Oracle RMAN User Guide for your Oracle version which should have details on integrating the media management layer. Alternatively, you could type the error message into a powerlink search and you will get a list of articles that give possible reasons for this error.
You will need to open a Service Request with support to help you with this if you cannot make progress using the available documentation. Your NMO integration with Oracle is not correctly done. Pinpointing the problem would need more data exchange than is suitable for the forum.
xxx is whatever you want (apart what perverts will think when they see it). In essence, when running Oracle backup you can assign id to each channel and you do it in this way. This is not necessary of course and if you don't do it then information is taken by CLIENT_INFO by RMAN internally.
coganb
736 Posts
1412
0
Posted December 9th, 2011 02:00
Hi,
Have a look at the NMO Administration Guide. This explains in detail what you need to do to setup Oracle backups with NetWorker and gives script examples. You can also have your RMAN script generated automatically by using the wizard in the NetWorker software.
-Bobby