Accidentally i deleted my table. How can i get that table?

Answers were Sorted based on User's Feedback



Accidentally i deleted my table. How can i get that table?..

Answer / ravi kanth

In 10g i think using flashback command we can get back.

Is This Answer Correct ?    4 Yes 2 No

Accidentally i deleted my table. How can i get that table?..

Answer / adhi

IN MS SQL SERVER 2005.

1.Take Tail Log backup
2.Restore Full backup
3.Restore Diff (If u have)or Log backup in sequence order
4.Restore Tail Log backup

Is This Answer Correct ?    1 Yes 1 No

Accidentally i deleted my table. How can i get that table?..

Answer / ravi

In this case data only deleted but table structure is there.
so can flashback the the data.
example:-

delete * from emp;

ans:- insert into emp select * from emp as of timestamp
sysdate -3/1440;

Is This Answer Correct ?    0 Yes 3 No

Accidentally i deleted my table. How can i get that table?..

Answer / anil panwar

tell me which command used for delete..

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More SQL Server Interview Questions

How to Get the last identity value used

4 Answers  


What is merge statement?

0 Answers  


Mention the 3 ways to get a count of the number of records in a table.

0 Answers  


Distinguish between nested subquery and correlated subquery?

0 Answers  


Which data types generate inaccurate results if used with an = or <> comparison in a where clause of a sql statement?

0 Answers  






How to make remote connection in database?

0 Answers  


How do I find query history in sql server?

0 Answers  


What is DCL?

0 Answers  


If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio

0 Answers  


What is the order by used for?

0 Answers  


What does null mean?

0 Answers  


Equi join and non equi join is possible with sql server?

0 Answers  


Categories