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 |
How to Get the last identity value used
What is merge statement?
Mention the 3 ways to get a count of the number of records in a table.
Distinguish between nested subquery and correlated subquery?
Which data types generate inaccurate results if used with an = or <> comparison in a where clause of a sql statement?
How to make remote connection in database?
How do I find query history in sql server?
What is DCL?
If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio
What is the order by used for?
What does null mean?
Equi join and non equi join is possible with sql server?