• GilaMonster (9/25/2012)


    The transaction log records aren't committed to data pages. The data modification is made to the data pages (in memory) and then logged into the transaction log. The only time you get replay from the log is in database recovery or restores (or on the mirror DB in database mirroring).

    The data modification is made to the data pages (in memory) and then logged into the transaction log.

    That means

    1. Sql server fetches the table related data pages to memory (What is the memory in this case is it RAM?)

    Q. How many pages will be fetched to Memory?

    Q2. How does server knows that the pages are related to a table?

    if i am wrong can u correct me, Can you tell me the process of insertion?

    Thanks alot

    🙂