hi Experts
I want backup with RMAN and after that for example delete scott.dept and then restore it.
but i can't :(
I write it :
1)rman target sys/manager@db
2)in sql*plus
shutdown immediate;
startup mount exclusive;
ALTER DATABASE ARCHIVELOG;
2)CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'g:\db\db_cf%F';
3)BACKUP DATABASE PLUS ARCHIVELOG;
4)alter database open;
5)drop scott.dept
6)in sql*plus
shutdown immediate;
startup mount exclusive;
ALTER DATABASE ARCHIVELOG;
7)Restore Database;
8)Recover Database;
It show me : successfully completed .
but scott.dept no restore; why? Thanks ..