Is it possible to take catalog database backup using RMAN?
Yes, you can perform backup of catalog database using RMAN with below steps:1. Start the RMAN with NOCATALOG option.2. Run the recovery catalog database in ARCHIVELOG mode.3. set the retention policy ...
How do you setup the RMAN tape backups?
RMAN Target / run{Allocate channel ch1 device type sbt_tape maxpiecesize 4gFormat'%D_%U_%T_%t';sql 'alter system switch logfile';Backup database;backup archivelog from time 'sysdate-7';Backup Format '...
RMAN with netbackup, tsm type library
What are the steps required to perform in $Oracle_home for enabling the RMAN backups with netbackup or tsm tape library software?
HI, I can expalin what are all the steps to take a rman backup with TSM tape library as follows1.Install TDPO (default path /usr/tivoli/tsm/client/oracle/)2.Once u installed the TDPO,auto...
How RMAN works with TAPE with TSM ?
How do you clone the database using RMAN software? Give brief steps? When do you use crosscheck command?
Two commands available in RMAN to clone database:
1) Duplicate
2) Restore.
Check whether backup pieces, proxy copies, or disk copies still exist.
List some of the RMAN catalog view names which contains the catalog information ?
RC_DATABASE_INCARNATION,RC_BACKUP_COPY_DETAILS,RC_BACKUP_CORRUPTION,
RC_BACKUP-DATAFILE_SUMMARY to name a few
In catalog database, if some of the blocks are corrupted due to system crash, how will you recover?
using RMAN BLOCK RECOVER command
What is raid? What is raid0? What is raid1? What is raid 10?
RAID: It is a redundant array of independent disk
RAID0: Concatenation and stripping
RAID1: Mirroring
What are things which play major role in designing the backup strategy?
Cold backup: shutdown the database and copy the datafiles with the help of O.S. command. this is simply copying of datafiles just like any other text file copy. Holt backup: backup process start...
I Believe in designing a good backup strategy it will not only be simply backup but also a contingency plan. In this case you should consider the following:1. How long is the allowable down time durin...
You have taken a manual backup of a datafile using o/s. How RMAN will know about it?
You have to catalog that manual backup in RMAN's repository by command
RMAN> catalog datafilecopy '/DB01/BACKUP/users01.dbf';
restrictions:
> Accessible on disk
> A complete image copy of a single file
How do you identify the block corruption in RMAN database? How do you fix it?
First check whether the block is corrupted or not by using this commandsql>select file#, block#  from v$database_block_corruption; file# block  2        507the above block is corrupted.....
using v$block_corruption view u can find which blocks corrupted.
Rman>> block recover datafile
Using the above statement u recover the corrupted blocks.
Thanks & Regards,
Kishore.
Time based hot backup recovery
Outline the steps involved in time based recovery from the full database from hot backup?
Configure encryption for database on
Configure encryption algorithm 'AES256'
RMAN offers three encryption modes: transparent mode, password mode, and dual mode