DBA Hub

📋Steps in this guide1/1

rman tablespace 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 tablespace USERS,

oracle configurationintermediate
by OracleDba
14 views
1

rman tablespace 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 tablespace USERS,TOOLS;
release channel c1 ;
release channel c2 ;
}

Comments (0)

Please to add comments

No comments yet. Be the first to comment!