DBA Hub

📋Steps in this guide1/1

RMAN datafile(s) backup run block

configure controlfile autobackup on; configure controlfile autobackup format for device type disk to '/archiva/backup/%F'; configure maxsetsize to unlimited; configure device type disk parallelism 4; run { allocate channel c1 type disk format '/archiva/backup/%I-%Y%M%D-%U' maxpiecesize 3G; allocate channel c2 type disk format '/archiva/backup/%I-%Y%M%D-%U' maxpiecesize 3g; backup datafile 3,4; rel

oracle configurationintermediate
by OracleDba
12 views
1

RMAN datafile(s) backup run block

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
configure controlfile autobackup on;
configure controlfile autobackup format for device type disk to '/archiva/backup/%F';
configure maxsetsize to unlimited;
configure device type disk parallelism 4;
run
{
allocate channel c1 type disk format '/archiva/backup/%I-%Y%M%D-%U' maxpiecesize 3G;
allocate channel c2 type disk format '/archiva/backup/%I-%Y%M%D-%U' maxpiecesize 3g;
backup datafile 3,4;
release channel c1 ;
release channel c2 ;
}

Comments (0)

Please to add comments

No comments yet. Be the first to comment!