checkpoint

  • what is check point?what can i do if check pont expires?

  • Checkpoint is a processes within SQL that writes all dirty data pages to disk. It's an automatic process.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Checkpoints flush dirty data and log pages from the buffer cache of the current database, minimizing the number of modifications that have to be rolled forward during a recovery.

    It happens during any of the following scenario,

    1. If the database settings are altered using Alter database command

    2. When checkpoint statement is executed

    3. When Sql Server is stopped using Shutdown command or using service control manager

    Read through this link for more information about checkpoints in Sql Server,

    http://msdn.microsoft.com/en-us/library/aa174542(SQL.80).aspx

    [font="Verdana"]- Deepak[/font]

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply