Hello All,
I am using Oracle 11g R2.
there was users mistake on my database on one tablespace the data is not OK. and they asked me to restore this database to 9:00 Am
I am planing to restore only this table space and recover it until 9:00 am?
What is the best solution, is the below correct ?
alter tablespace TS_NAME offline immediate;
restore tablespace TS_NAME;
recover tablespace TS_NAME until time "to_date('2013-04-02:09:00:00', 'YYYY-MM-DD:HH24:MI:SS')";
alter tablespace TS_NAME online;
Regards,