table dropped without backup [message #198040] |
Sat, 14 October 2006 01:21 |
oracle_coorgi
Messages: 188 Registered: September 2006 Location: INDIA-karnataka
|
Senior Member |
|
|
hi
we have created table on tuesday 09/10/2006 but droped for some reason on friday 13/10/2006 the application guy says he needs it back
we have not taken any type (logicial/physcial)backup,how can i get that table back
pls advice me
thanxs
|
|
|
|
|
Re: table dropped without backup [message #198065 is a reply to message #198061] |
Sat, 14 October 2006 04:05 |
Mohammad Taj
Messages: 2412 Registered: September 2006 Location: Dubai, UAE
|
Senior Member |
|
|
no dear don't take headache doing "lengthy" name
SQL> create table "flashback" ( no number);
Table created.
SQL> drop table "flashback";
Table dropped.
SQL> show recyclebin
ORIGINAL NAME RECYCLEBIN NAME OBJECT TYPE DROP TIME
---------------- ------------------------------ ------------ -------------------
flashback BIN$SYw5JKJaST2z4Z10UepSwQ==$0 TABLE 2006-10-14:13:02:47
SQL> select * from "flashback";
select * from "flashback"
*
ERROR at line 1:
ORA-00942: table or view does not exist
SQL> flashback table "flashback" to before drop;
Flashback complete.
SQL> select * from "flashback";
no rows selected
SQL>
|
|
|