After table drop, it got flushed from recyclebin within some minutes
Scenario :
- One partitioned table of size 480 GB approx dropped mistakenly from Production database (Oracle 19c) using command : drop table table_name
- Select dropped table from dba_reclyclebin immediately by using below command :--> select * from dba_recyclebin where original_name='Table_name' ;
- it fetched expected results
- After few minutes, when I tried flashback query to restore the table, I got an error saying : Table does not exists in recycle_bin:
FLASHBACK TABLE schema_name.table_name TO BEFORE DROP;
Can someone please help me to understand the reason behind this ?
0