{"id":548,"date":"2010-12-16T18:15:00","date_gmt":"2010-12-16T18:15:00","guid":{"rendered":"\/blogs\/jonathan\/post\/An-XEvent-a-Day-(16-of-31)-How-Many-Checkpoints-are-Issued-During-a-Full-Backup.aspx"},"modified":"2017-04-13T12:13:37","modified_gmt":"2017-04-13T16:13:37","slug":"an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/","title":{"rendered":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup?"},"content":{"rendered":"<p>\nThis wasn&rsquo;t my intended blog post for today, but last night <a href=\"https:\/\/twitter.com\/1sql\/statuses\/15212120828280832\" target=\"_blank\">a question<\/a> came across <a href=\"https:\/\/twitter.com\/search?q=%23sqlhelp\" target=\"_blank\">#SQLHelp<\/a> on Twitter from Varun (<a href=\"https:\/\/twitter.com\/1sql\" target=\"_blank\">Twitter<\/a>).\n<\/p>\n<blockquote>\n<p>\n\t<a href=\"https:\/\/twitter.com\/search?q=%23sqlhelp\">#sqlhelp<\/a> how many checkpoints are issued during a full backup?\n\t<\/p>\n<\/blockquote>\n<p>\nThe question was <a href=\"https:\/\/twitter.com\/SQLSoldier\/statuses\/15226844110397440\" target=\"_blank\">answered<\/a> by Robert Davis (Blog|Twitter) as:\n<\/p>\n<blockquote>\n<p>\n\t<em>Just 1, at the very start. RT @<\/em><a href=\"https:\/\/twitter.com\/1sql\"><em>1sql<\/em><\/a><em>: <\/em><a href=\"https:\/\/twitter.com\/search?q=%23sqlhelp\"><em>#sqlhelp<\/em><\/a><em> how many checkpoints are issued during a full backup?<\/em>\n\t<\/p>\n<\/blockquote>\n<p>\nThis seemed like a great thing to test out with Extended Events so I ran through the available Events in SQL Server 2008, and the only Event related to Backup is the sqlserver.databases_backup_restore_throughput Event, something which is a topic for another blog post, but that doesn&rsquo;t matter because we can still do testing of this by using the Events available in Extended Events.&nbsp; The sqlserver.sql_statement_starting, sqlserver.sql_statement_completed, sqlserver.checkpoint_begin and sqlserver.checkpoint_end Events can be used to test this with appropriate Predicate definitions.\n<\/p>\n<p>\nTo test this I used a copy of two databases on a development server.&nbsp; One is a source database and the second is a reporting database.&nbsp; I also duplicated the ETL process that extracts data from a source database and transforms it into the reporting schema so that I could test this under a workload that would be changing data and should cause checkpoints to occur inside of the reporting database.&nbsp; Then I queried sys.databases (ok I actually used DB_ID(&lsquo;Sample_Reporting&rsquo;)) to get the database_id for the Sample_Reporting database to use in the Predicate for the sqlserver.checkpoint_begin and sqlserver.checkpoint_end Events.&nbsp;\n<\/p>\n<p align=\"center\">\n<a href=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/3d72cc40\/image.png\"><img fetchpriority=\"high\" decoding=\"async\" style=\"display: inline; border-width: 0px\" src=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png\" border=\"0\" alt=\"image\" title=\"image\" width=\"297\" height=\"172\" \/><\/a>\n<\/p>\n<p>\nThen I opened a new Query Window in SSMS and used that connections session_id in the Predicate for the sqlserver.sql_statement_starting and sqlserver.sql_statement_completed Events in the Event Session.&nbsp; The result was the following Session definition.\n<\/p>\n<blockquote><p>\n\t<code><span style=\"color: green\">-- Create the Event Session<br \/>\n\t<\/span><span style=\"color: blue\">CREATE <\/span><span style=\"color: black\">EVENT SESSION BackupCheckPoints<br \/>\n\t<\/span><span style=\"color: blue\">ON <\/span><span style=\"color: black\">SERVER<br \/>\n\t<\/span><span style=\"color: blue\">ADD <\/span><span style=\"color: black\">EVENT sqlserver.sql_statement_starting<br \/>\n\t<\/span><span style=\"color: gray\">(&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">ACTION <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">sqlserver.database_id<\/span><span style=\"color: gray\">, <\/span><span style=\"color: black\">sqlserver.sql_text<\/span><span style=\"color: gray\">)<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">WHERE <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">sqlserver.session_id <\/span><span style=\"color: blue\">= <\/span><span style=\"color: black\">113<\/span><span style=\"color: gray\">)),<br \/>\n\t<\/span><span style=\"color: blue\">ADD <\/span><span style=\"color: black\">EVENT sqlserver.sql_statement_completed<br \/>\n\t<\/span><span style=\"color: gray\">(&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">ACTION <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">sqlserver.database_id<\/span><span style=\"color: gray\">, <\/span><span style=\"color: black\">sqlserver.sql_text<\/span><span style=\"color: gray\">)<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">WHERE <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">sqlserver.session_id <\/span><span style=\"color: blue\">= <\/span><span style=\"color: black\">113<\/span><span style=\"color: gray\">)),<br \/>\n\t<\/span><span style=\"color: blue\">ADD <\/span><span style=\"color: black\">EVENT sqlserver.checkpoint_begin<br \/>\n\t<\/span><span style=\"color: gray\">(&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">WHERE <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">database_id<\/span><span style=\"color: blue\">= <\/span><span style=\"color: black\">41<\/span><span style=\"color: gray\">)),<br \/>\n\t<\/span><span style=\"color: blue\">ADD <\/span><span style=\"color: black\">EVENT sqlserver.checkpoint_end<br \/>\n\t<\/span><span style=\"color: gray\">(&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">WHERE <\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">database_id <\/span><span style=\"color: blue\">= <\/span><span style=\"color: black\">41<\/span><span style=\"color: gray\">))<br \/>\n\t<\/span><span style=\"color: blue\">ADD <\/span><span style=\"color: black\">TARGET package0.ring_buffer<br \/>\n\tGO<br \/>\n\t<\/span><span style=\"color: green\">-- Alter the Session to Start it<br \/>\n\t<\/span><span style=\"color: blue\">ALTER <\/span><span style=\"color: black\">EVENT SESSION BackupCheckpoints<br \/>\n\t<\/span><span style=\"color: blue\">ON <\/span><span style=\"color: black\">SERVER<br \/>\n\tSTATE<\/span><span style=\"color: blue\">=<\/span><span style=\"color: black\">START<br \/>\n\tGO<\/span><\/code>\n<\/p><\/blockquote>\n<p>\nWith the Event Session started, I then started a FULL backup of the Sample Reporting database, followed by starting the ETL processes.&nbsp; When the FULL backup completed I dropped the Events from the Event Session so that no further Event collection occurred.\n<\/p>\n<blockquote><p>\n\t<code><span style=\"color: green\">-- Drop Events to halt Event collection<br \/>\n\t<\/span><span style=\"color: blue\">ALTER <\/span><span style=\"color: black\">EVENT SESSION BackupCheckPoints<br \/>\n\t<\/span><span style=\"color: blue\">ON <\/span><span style=\"color: black\">SERVER<br \/>\n\t<\/span><span style=\"color: blue\">DROP <\/span><span style=\"color: black\">EVENT sqlserver.sql_statement_starting<\/span><span style=\"color: gray\">,<br \/>\n\t<\/span><span style=\"color: blue\">DROP <\/span><span style=\"color: black\">EVENT sqlserver.sql_statement_completed<\/span><span style=\"color: gray\">,<br \/>\n\t<\/span><span style=\"color: blue\">DROP <\/span><span style=\"color: black\">EVENT sqlserver.checkpoint_begin<\/span><span style=\"color: gray\">,<br \/>\n\t<\/span><span style=\"color: blue\">DROP <\/span><span style=\"color: black\">EVENT sqlserver.checkpoint_end<\/span><\/code>\n<\/p><\/blockquote>\n<p>\nNow we can query the ring_buffer Target and see what has occurred during the FULL backup of the Sample_Reporting database.\n<\/p>\n<blockquote><p>\n\t<code><span style=\"color: green\">-- Query the XML to get the Target Data<br \/>\n\t<\/span><span style=\"color: blue\">SELECT <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/@name)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;varchar(50)&#39;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">event_name<\/span><span style=\"color: gray\">,<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/@package)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;varchar(50)&#39;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">package_name<\/span><span style=\"color: gray\">,<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: magenta\">DATEADD<\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">hh<\/span><span style=\"color: gray\">, <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: magenta\">DATEDIFF<\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">hh<\/span><span style=\"color: gray\">, <\/span><span style=\"color: magenta\">GETUTCDATE<\/span><span style=\"color: gray\">(), <\/span><span style=\"color: magenta\">CURRENT_TIMESTAMP<\/span><span style=\"color: gray\">), <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/@timestamp)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;datetime2&#39;<\/span><span style=\"color: gray\">)) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">[timestamp]<\/span><span style=\"color: gray\">,<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: magenta\">ISNULL<\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/data[@name=&quot;database_id&quot;]\/value)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;int&#39;<\/span><span style=\"color: gray\">),<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/action[@name=&quot;database_id&quot;]\/value)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;int&#39;<\/span><span style=\"color: gray\">)) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">[database_id]<\/span><span style=\"color: gray\">,<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: black\">n.value<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;(event\/action[@name=&quot;sql_text&quot;]\/value)[1]&#39;<\/span><span style=\"color: gray\">, <\/span><span style=\"color: red\">&#39;nvarchar(max)&#39;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">[sql_text]<br \/>\n\t<\/span><span style=\"color: blue\">FROM<br \/>\n\t<\/span><span style=\"color: gray\">(&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">SELECT <\/span><span style=\"color: black\">td.query<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;.&#39;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">n<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">FROM <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: gray\">(<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">SELECT <\/span><span style=\"color: magenta\">CAST<\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">target_data <\/span><span style=\"color: blue\">AS XML<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">target_data<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">FROM <\/span><span style=\"color: black\">sys.dm_xe_sessions <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">s <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">JOIN <\/span><span style=\"color: black\">sys.dm_xe_session_targets <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">t <br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">ON <\/span><span style=\"color: black\">t.event_session_address <\/span><span style=\"color: blue\">= <\/span><span style=\"color: black\">s.address<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: blue\">WHERE <\/span><span style=\"color: black\">s.name <\/span><span style=\"color: blue\">= <\/span><span style=\"color: red\">&#39;BackupCheckpoints&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: gray\">AND <\/span><span style=\"color: black\">t.target_name <\/span><span style=\"color: blue\">= <\/span><span style=\"color: red\">&#39;ring_buffer&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">sub<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;<\/span><span style=\"color: gray\">CROSS <\/span><span style=\"color: black\">APPLY target_data.nodes<\/span><span style=\"color: gray\">(<\/span><span style=\"color: red\">&#39;RingBufferTarget\/event&#39;<\/span><span style=\"color: gray\">) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">q<\/span><span style=\"color: gray\">(<\/span><span style=\"color: black\">td<\/span><span style=\"color: gray\">)<br \/>\n\t) <\/span><span style=\"color: blue\">AS <\/span><span style=\"color: black\">tab<br \/>\n\tGO<\/span><\/code>\n<\/p><\/blockquote>\n<p>\n<a href=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/629016ac\/image.png\"><img decoding=\"async\" style=\"display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px\" src=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/67fe8750\/image_thumb.png\" border=\"0\" alt=\"image\" title=\"image\" width=\"644\" height=\"195\" \/><\/a>\n<\/p>\n<p>\nAs you can see in the above screenshot, multiple checkpoints can occur during a FULL backup of a database in SQL Server 2008.&nbsp; According to Paul Randal, &ldquo;Checkpoints exist for two reasons&mdash;to batch up write I\/Os to improve performance and to reduce the time required for crash recovery&rdquo; (<a href=\"https:\/\/technet.microsoft.com\/en-us\/library\/2009.02.logging.aspx\" title=\"http:\/\/technet.microsoft.com\/en-us\/magazine\/2009.02.logging.aspx\">http:\/\/technet.microsoft.com\/en-us\/magazine\/2009.02.logging.aspx<\/a>).&nbsp; Since we are continuing to make changes to the data inside of the system while the FULL backup occurs, there is a continued need for CHECKPOINT&rsquo;s to occur for the database.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This wasn&rsquo;t my intended blog post for today, but last night a question came across #SQLHelp on Twitter from Varun (Twitter). #sqlhelp how many checkpoints are issued during a full backup? The question was answered by Robert Davis (Blog|Twitter) as: Just 1, at the very start. RT @1sql: #sqlhelp how many checkpoints are issued during [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,38,45],"tags":[],"class_list":["post-548","post","type-post","status-publish","format-standard","hentry","category-extended-events","category-sql-server-2008","category-xevent-a-day-series"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias\" \/>\n<meta property=\"og:description\" content=\"This wasn&rsquo;t my intended blog post for today, but last night a question came across #SQLHelp on Twitter from Varun (Twitter). #sqlhelp how many checkpoints are issued during a full backup? The question was answered by Robert Davis (Blog|Twitter) as: Just 1, at the very start. RT @1sql: #sqlhelp how many checkpoints are issued during [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/\" \/>\n<meta property=\"og:site_name\" content=\"Jonathan Kehayias\" \/>\n<meta property=\"article:published_time\" content=\"2010-12-16T18:15:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-13T16:13:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png\" \/>\n<meta name=\"author\" content=\"Jonathan Kehayias\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Kehayias\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/\"},\"author\":{\"name\":\"Jonathan Kehayias\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\"},\"headline\":\"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup?\",\"datePublished\":\"2010-12-16T18:15:00+00:00\",\"dateModified\":\"2017-04-13T16:13:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/\"},\"wordCount\":487,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windowslivewriter\\\/anxeventaday15of31howmanycheckpointsarei\\\/2a519f94\\\/image_thumb.png\",\"articleSection\":[\"Extended Events\",\"SQL Server 2008\",\"XEvent a Day Series\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/\",\"url\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/\",\"name\":\"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windowslivewriter\\\/anxeventaday15of31howmanycheckpointsarei\\\/2a519f94\\\/image_thumb.png\",\"datePublished\":\"2010-12-16T18:15:00+00:00\",\"dateModified\":\"2017-04-13T16:13:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windowslivewriter\\\/anxeventaday15of31howmanycheckpointsarei\\\/2a519f94\\\/image_thumb.png\",\"contentUrl\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/wp-content\\\/uploads\\\/windowslivewriter\\\/anxeventaday15of31howmanycheckpointsarei\\\/2a519f94\\\/image_thumb.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Extended Events\",\"item\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/category\\\/extended-events\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/\",\"name\":\"Jonathan Kehayias - The Rambling DBA\",\"description\":\"The Rambling DBA\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.sqlskills.com\\\/blogs\\\/jonathan\\\/#\\\/schema\\\/person\\\/01c10d94f3648654ef706d5e6305f69c\",\"name\":\"Jonathan Kehayias\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g\",\"caption\":\"Jonathan Kehayias\"},\"sameAs\":[\"http:\\\/\\\/3.209.169.194\\\/blogs\\\/jonathan\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/","og_locale":"en_US","og_type":"article","og_title":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias","og_description":"This wasn&rsquo;t my intended blog post for today, but last night a question came across #SQLHelp on Twitter from Varun (Twitter). #sqlhelp how many checkpoints are issued during a full backup? The question was answered by Robert Davis (Blog|Twitter) as: Just 1, at the very start. RT @1sql: #sqlhelp how many checkpoints are issued during [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/","og_site_name":"Jonathan Kehayias","article_published_time":"2010-12-16T18:15:00+00:00","article_modified_time":"2017-04-13T16:13:37+00:00","og_image":[{"url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png","type":"","width":"","height":""}],"author":"Jonathan Kehayias","twitter_misc":{"Written by":"Jonathan Kehayias","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#article","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/"},"author":{"name":"Jonathan Kehayias","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c"},"headline":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup?","datePublished":"2010-12-16T18:15:00+00:00","dateModified":"2017-04-13T16:13:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/"},"wordCount":487,"commentCount":1,"image":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png","articleSection":["Extended Events","SQL Server 2008","XEvent a Day Series"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/","url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/","name":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup? - Jonathan Kehayias","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#primaryimage"},"image":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png","datePublished":"2010-12-16T18:15:00+00:00","dateModified":"2017-04-13T16:13:37+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#primaryimage","url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png","contentUrl":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-content\/uploads\/windowslivewriter\/anxeventaday15of31howmanycheckpointsarei\/2a519f94\/image_thumb.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/an-xevent-a-day-16-of-31-how-many-checkpoints-are-issued-during-a-full-backup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/"},{"@type":"ListItem","position":2,"name":"Extended Events","item":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/category\/extended-events\/"},{"@type":"ListItem","position":3,"name":"An XEvent a Day (16 of 31) \u2013 How Many Checkpoints are Issued During a Full Backup?"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/","name":"Jonathan Kehayias - The Rambling DBA","description":"The Rambling DBA","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/#\/schema\/person\/01c10d94f3648654ef706d5e6305f69c","name":"Jonathan Kehayias","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/86630e27f5deecc5c393ea57fc7c3b6a068949f4fd6b5309f81de5a276f12855?s=96&d=mm&r=g","caption":"Jonathan Kehayias"},"sameAs":["http:\/\/3.209.169.194\/blogs\/jonathan"]}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts\/548","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/comments?post=548"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/posts\/548\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/media?parent=548"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/categories?post=548"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/jonathan\/wp-json\/wp\/v2\/tags?post=548"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}