Let’s have look on the commands are used for “RMAN Parallel Backup”.

Run the backup

RMAN> run { allocate channel c1 type disk; allocate channel c2 type disk; backup (datafile 1,2,3 channel c1) (archivelog all channel c2); }

Create more allocate channel

RMAN> run
{
allocate channel c1 type disk;
allocate channel c2 type disk;
backup
(database channel c1)
(archivelog all channel c2);
}

Set the parallelism parameter and run the backup again

RMAN> configure device type disk parallelism 3;

RMAN> backup
(datafile 1,2)
(datafile 3,4)
(archivelog all);

Thought of the day..

“You will get all you want in life if you help enough other people get what they want.” — Zig Ziglar

Thank you for giving your valuable time to read the above information.

If you want to be updated with all our articles send us the Invitation or Follow us:

Skant Gupta’s LinkedIn: www.linkedin.com/in/skantali/

Joel Perez’s LinkedIn: Joel Perez’s Profile

LinkedIn Group: Oracle Cloud DBAAS

Facebook Page: OracleHelp

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.