• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

I am not able to recover dropped table

 
Ranch Hand
Posts: 391
1
MySQL Database PHP Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am not able to recover the dropped table.
It seems that it directly drops the table altogether from the disk rather than saving it in the recycle bin.

I have recycle bin set to on.Still it doesn`t save my dropped tables to recyclebin.How can i recover my dropped tables.
When i try to flashback table it results in error saying object does not exists i the recyclebin.

here is what i am trying to do in my sql * PLUS release:10.2.0.1.0

connect system/aaa;

create table example(id number);

drop table example;

flashback table example to before drop;
error:object does not exists in recyclebin

I have tried from other than system account but get the same result.
reply
    Bookmark Topic Watch Topic
  • New Topic