About REDO LOG FILE [message #438996] |
Wed, 13 January 2010 09:29 |
muktha_22
Messages: 527 Registered: December 2009
|
Senior Member |
|
|
Hello all,
Thanks for you help. Here is one more doubt needs to be clarified.
Case 1:
I have taken a backup of with 100 Rows in a table. Yesterday
Case 2:
Due to some problem, that particular Datafile got missed/Corrupted.
Case 3:
So Now I'm Restoring & Recovering that DATAFILE. So I got all that data's back.
Question:
How the SCN Number from the DATAFILE's header and CONTROLFILE.
|
|
|
|
About REDO LOG FILE [message #438999 is a reply to message #438996] |
Wed, 13 January 2010 09:48 |
muktha_22
Messages: 527 Registered: December 2009
|
Senior Member |
|
|
Hi All,
Need a clarification on below.
Step 1:
I have taken a backup of table with 100 ROWS.
Step 2:
Now I am inserting 10 Rows.
Step 3:
By mistakenly, The particular Table's Datafile got corrupted/Missed.
Step 4:
Now I'm able to get back all those datas which is added recently after the backup. IT means total rows are 110.
Question:
How the inserted rows got placed back to that Datafile?
(Because, only the DELETED & UPDATED data will be stored in to the Online Redo log files, isn't it).
|
|
|
|
Re: About REDO LOG FILE [message #439009 is a reply to message #438999] |
Wed, 13 January 2010 10:42 |
JRowbottom
Messages: 5933 Registered: June 2006 Location: Sunny North Yorkshire, ho...
|
Senior Member |
|
|
Quote:How the inserted rows got placed back to that Datafile?
(Because, only the DELETED & UPDATED data will be stored in to the Online Redo log files, isn't it).
No.
All changes to the data, including Inserts (among other things) are written to the Redo Logs.
There are a couple of exceptions to this (Temporary Tables, and NOLOGING operations) but in general you don't need to worry about them.
|
|
|