Recover The Table space From Flashback Database
Recover The Table space From Flashback Database Backup was taken of both controlfile and datafile at 10 am. At 11 am Tablespace was created and at 1pm tablespace was dropped. How to Recover the tablespace using cold backup. Solution - If you actually DROPPED the tablespace, the controlfile you're trying to use will have no record of the tablespace. You can recover with Flash database or You will need to do a point in time recovery using a backup controlfile from a time when the tablespace existed, then recover up to the point before the drop. Using Flashback database :- 1. Configure the Oracle Database for Flashback SQL> shutdown immediate; SQL> startup mount SQL> ALTER DATABASE FLASHBACK ON; SQL> ALTER DATABASE OPEN; SQL> create tablespace test_restore datafile 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TEST5\MYTEST08.DBF' size 5m; Tablespace created. SQL> create table test tablespace test_restore as select level a1 from dual...