I need a solution
I use NBU RMAN backup script to backup the oracle database 11gR1. Just want to confirm that if i dropped one tablespace in the database, can i just restore the dropped tablespace without restore the whole database and affecting other tablespace data?
The command i use to recover the database is like this:
RMAN> run
{
allocate channel ch00 type 'SBT_TAPE';
Set until time "to_date('2015-10-23 10:55:00','yyyy-mm-dd hh24:mi:ss')";
restore database;
recover database;
}