Can We Restore a Table that accidantly dropped.

Answers were Sorted based on User's Feedback



Can We Restore a Table that accidantly dropped. ..

Answer / ganesh

Upto Oracle 9i its not possible
but in 10g there is a new feature called flashback option
as

flashback table <tablename> to before drop

Is This Answer Correct ?    7 Yes 0 No

Can We Restore a Table that accidantly dropped. ..

Answer / pinkey

yes u can restore a table when it is dropped using
follwing command

Flashback Table Tablename to before drop

Try this

Is This Answer Correct ?    4 Yes 0 No

Can We Restore a Table that accidantly dropped. ..

Answer / attitude girl

Ofcourse Its Possible in New ORACLE 10g EDITION
you have to use flashback command for this.

Syntax:

FLASHBACK TABLE YOURTABLENAME TO BEFORE DROP;

LIKE
FLASHBACK TABLE EMP TO BEFORE DROP;
FLASHBACK COMPLETE.


YOU'LL BE AMAZED BY THIS.
THE BEST THIG IS THAT IT'LL EVEN GET YOUR DATA BACK AS WELL.

TRY THIS COMMAND.

Is This Answer Correct ?    4 Yes 1 No

Can We Restore a Table that accidantly dropped. ..

Answer / sonu

Flashback features is new in Oracle 10G, but we can also
restore a table that accidently dropped.
1. With the previously taken backup of the table or the
database.
2. With the SCN, if one know it and
3. With the timestamp, we can restore the table.

Is This Answer Correct ?    0 Yes 0 No

Can We Restore a Table that accidantly dropped. ..

Answer / bon vivant

Hey... The question was to restore the table that is
accedentially dropped... Why u connecting Purging with
this...

Is This Answer Correct ?    0 Yes 0 No

Can We Restore a Table that accidantly dropped. ..

Answer / david

coz...it is also related to recyclebin ...thats y m asking ........


do u have any answer for dis ..??

Is This Answer Correct ?    0 Yes 0 No

Can We Restore a Table that accidantly dropped. ..

Answer / chintan_db

create table dropedemo(a number(10)); --will create table
commit;
insert into dropedemo values (dbms_random.value(0,100)) ; --
data inserted
commit;


drop table dropedemo; --drope table
flashback table dropedemo to before drop; --will restore
table

select * from dropedemo;
--will create magic and give u proof of data is back

Is This Answer Correct ?    0 Yes 1 No

Can We Restore a Table that accidantly dropped. ..

Answer / david

as all of you said about the flashback ....but what if u
purged the recyclbin ....will u get the data back from
their.....

hv you any answer dear...????

david

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Oracle AllOther Interview Questions

WHAT ARE TEMPLATES?EXPLAIN WHAT YOU HAVE CREATED?

0 Answers  


Hey i want to join oracle apps so will you pls tell me that which institute is best in hyderabad.

0 Answers  


How would you determine who has added a row to a table?

0 Answers  


why r u using etl tool.

2 Answers  


what are the types of LIST REPORTS in cognos8BI? and what is the mean and use of METRIC STUDIO in Cognos 8.3BI?

0 Answers   HP,






Compare and contrast TRUNCATE and DELETE for a table.

3 Answers  


Explain the difference between $ORACLE_HOME and $ORACLE_BASE.

2 Answers  


Explain the difference between a FUNCTION, PROCEDURE and PACKAGE.

10 Answers   TCS,


A Table has 10,000 records,How can i get latest 10 dates from the table.so that i can only store those 10 records in to my Resultset Object,to reduce load on my app?

7 Answers   TCS,


TILL WHAT LEVEL OF SECURITY BO SUPPORTS?

1 Answers  


What are the advantages of operating a database in ARCHIVELOG mode over operating it in NO ARCHIVELOG mode in Oracle?

0 Answers  


what are basic modules required to implement oracle application in any oraganisation?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)