Ckpt. No. — The sequential number assigned to the checkpoint
Time — The time the checkpoint began
Len — The length of time required to complete the checkpoint. The checkpoint is not considered completed until all dirty buffers on the checkpoint queue have been written out. This is either done over time by the APWs between checkpoints or is forced at the next checkpoint (DB Writes).
Freq — The length of time between checkpoint starts
Dirty — The number of modified buffers scheduled to be written
Database Writes
CPT Q — The number of buffers written from the checkpoint queue by the APWs
Scan — The number of buffers written by the APWs during the scan cycle
APW Q — The number of buffers written by the APW queue and replaced on the least recently used (LRU) chain by APWs
DB Writes — The total number of database buffers written all at once at the end of the checkpoint
Bi Writes — The total number of BI buffers written from the BI buffer pool all at once at the end of the checkpoint
Performance Timings
Duration — The time to do the housekeeping of the checkpoint. This includes the time to write the active recovery log buffers to disk, write any outstanding dirty buffers marked at the previous checkpoint, scan the database buffer pools for dirty buffers marking them as needing to be written to disk prior to the start of the next check point (putting them on the checkpoint queue) and to perform the file system synchronization (Sync Time).
Sync Time — The time to perform the file system synchronization of the checkpoint (fdatasync() on UNIX, FlushFileBuffers() in Windows)
DB Write — The time in seconds to scan and write the buffers from the database buffer pool
Bi Write — The time in seconds to write the buffers from the -bibufs buffer pool
NumChkpt — The number of buffers checkpointed (written from the database buffer pool)