Accidentally i deleted my table. How can i get that table?
Answers were Sorted based on User's Feedback
Answer / ravi kanth
In 10g i think using flashback command we can get back.
Is This Answer Correct ? | 4 Yes | 2 No |
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 |
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 |
Explain log shipping?
When I delete any data from a table, does the sql server reduce the size of that table?
you notice that the transaction log on one of your databases is over 4gb the size of the data file is 2mb what could cause this situation, and how can you fix it? : Sql server administration
how can you find out if the current user is a member of the specified microsoft® windows nt® group or microsoft sql server™ role? : Sql server administration
What is the significance of master, tempdb and model databases?
Explain Normalization and DE normalization
Define candidate key, alternate key, and composite key.
What is a functions and types in sql server?
How data can be copied from one table to another table?
What is difference between index and primary key?
Why I am getting this error when dropping a database in ms sql server?
what are triggers? : Sql server database administration