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

What is @@rowcount in sql?

1 Answers  


How to transfer Logins from SQL Server 2000 to 2005

2 Answers  


What options are available to audit login activity? : sql server security

1 Answers  


what is nonclustered index

1 Answers  


How do you test your database? : sql server database administration

1 Answers  


Explain index in sql server?

1 Answers  


How to restart SQL Server in single user mode? How to start SQL Server in minimal configuration mode?

3 Answers   HCL,


Explain the functionalities that views support?

1 Answers  


syntax and example for bitmap index in sql???

1 Answers  


Can a stored procedure call itself or a recursive stored procedure? How many levels of sp nesting is possible?

1 Answers  


What information is maintained within the msdb database?

1 Answers  


Can we call future method from trigger?

1 Answers  


Categories