#This script will do a FULL Backup On a NOARCHIVELOG database
shutdown immediate;
startup mount pfile=/u2/oracle/admin/reco/pfile/initreco.ora;
run {
allocate channel c1 type disk;
allocate channel c2 type disk;
backup
full
tag bkp_full
filesperset 4
database
format '/u5/ORACLE/reco/backup/bkp_full.%s.%p';
sql 'alter database open';
release channel c1;
release channel c2;
}

Hosted by www.Geocities.ws

1