I want to backup via RMAN and delete scott.dept
and again restore everything. (this is for testing RMAN mechanism)
I wrote like this :
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;
At the end it shows me : successfully completed
.
but scott.dept
not restore yet; why?
Thanks ...