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 is difference b/w Credit memo and Adjustment in AR.

1 Answers   Oracle,


Difference between negative and positive adjustments : oracle accounts receivable

0 Answers  


Olap tools

0 Answers  


key flexfield structure

0 Answers   Infosys,


How do you resize a data file?

2 Answers  






What is the use of lockboxes? : oracle accounts receivable

0 Answers  


Give the two types of tables involved in producing a star schema and the type of data they hold.

1 Answers  


1.In a table Gender is a column in that male and female are the two data.In a single statement i have to modify all male to female and all female to male vice versa. 2.In a single query i need the count of male data,count of female and total count

3 Answers   HP,


wht r the base tables & primary key for BOM& WIP modules

1 Answers   Satyam,


what is different between inline query,subquery& corelated query?

8 Answers   Quest,


Explain the use of table functions.

0 Answers  


please send me oracle pl/sql exp resume. and also faqs...

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)