dirty buffers and changed data [message #296592] |
Mon, 28 January 2008 06:22 |
varu123
Messages: 754 Registered: October 2007
|
Senior Member |
|
|
I have a small doubt about data buffer cache.
What ever DML we do ,that DML is performed at data buffer cache.
ANd the result of DML is what we call as dirty buffers.
Now redolog buffer cache also contains changed data.
So is the server process that puts a copy of that changed data from that data buffer cache to redo log buffer cache or something else happens?
|
|
|
Re: dirty buffers and changed data [message #296604 is a reply to message #296592] |
Mon, 28 January 2008 06:42 |
|
Michel Cadot
Messages: 68732 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Quote: | So is the server process that puts a copy of that changed data from that data buffer cache to redo log buffer cache or something else happens?
|
Something else happens.
Server process writes modified buffer in buffer cache
Server process writes change vector in log buffer.
All is in Database Concepts.
Regards
Michel
|
|
|