ADSM-L

Management class and TDP for Oracle with RMAN

2001-09-14 12:20:26
Subject: Management class and TDP for Oracle with RMAN
From: Thiha Than <tthan AT US.TIVOLI DOT COM>
Date: Fri, 14 Sep 2001 09:21:21 -0700
hi,

You can use 'include' option to bind with different management class.  It
is documented on page 36 of the user manual.  But you will have to do a
little bit differently than what is documented.

I assume that you are using different domain for your TDPO backups.  Let's
say your default mgmt class's storage pool is pointing to disk pool.  So
you don't have to do anything for your database backups.  As for the
archive log file, let's say you have the pattern "log_archive_format =
arch%t_%s.dbf" in your init.ora file. In your include definition file, add

include /adsmorc/.../arch*       tapemgmt

This will bind the archive logs to 'tapemgmt' class.


If you don't use different domain for your TDPO backups and/or mgmt class
pointing to disk pool is not the default, you can add another line in your
include definition file:

include /adsmorc/.../arch*       tapemgmt
include /adsmorc/.../*           diskmgmt


Make sure that these statements appear in the exact order.

regards,
Thiha


>I'm trying to configure RMAN and need some help. My scenario is AIX 4.3,
>Oracle 8.1.6 and TDP for Oracle 2.2 64 bits.

>My question is if it is possible to have differents management classes
when
>making backups with RMAN. In the TDP manual there's only reference to
>TDPO_MGMT_CLASS_2, 3 and 4 but only for the duplex copy option.
>I'd like to have one management class for archive log files (sending it
to
>disk storage pools) and another for database files (sending it to tape
>storage pools).