|
To perform an incremental level 0 backup, just issue the following in RMAN:
run {
backup incremental level 0;
}
You can change the zero to a '1' or '2' for other incremental backup levels. So the script is as easy as using the above. For more RMAN information, please read the following docs:
Oracle9i Recovery Manager User's Guide
Oracle9i Recovery Manager Reference
|