RMAN script query [message #527514] |
Tue, 18 October 2011 07:59 |
|
Kwisatz78
Messages: 24 Registered: October 2011
|
Junior Member |
|
|
Hi all - Can anyone tell me if this script is following best practice for the base backup for an incremental strategy. The reason I ask is that I am confused by channel allocations in particular to the delete.
Thanks
RUN {
allocate channel c1 device type disk;
backup incremental level 0 database;
backup archivelog all delete input;
delete noprompt obsolete device type disk;
release channel c1;
}
|
|
|
|
|
|
|