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

Why we need sql server?

0 Answers  


What is the difference between left and right outer join?

0 Answers  


How do I make a resultset scrollable?

0 Answers  


what is dbcc? : Sql server database administration

0 Answers  


Is truncate autocommit?

0 Answers  






How to write query to Delete the records in child table and corresponding records in parent table

11 Answers   Semantic Space,


Can one drop a column from a table?

0 Answers  


How is sql server used?

0 Answers  


Plz tell about backup&recovery?

3 Answers  


ehat is the default port no of sql 2000?

2 Answers   IBM,


What is b tree index?

0 Answers  


How will you monitor replication activity and performance? What privilege do you need to use replication monitor? : sql server replication

0 Answers  


Categories