{"id":159,"date":"2024-01-16T08:55:00","date_gmt":"2024-01-16T13:55:00","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=159"},"modified":"2024-01-16T10:33:34","modified_gmt":"2024-01-16T15:33:34","slug":"understanding-the-intricacies-of-sql-servers-virtual-log-filesunderstanding-the-intricacies-of-sql-servers-virtual-log-files","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=159","title":{"rendered":"Understanding the Intricacies of SQL Server Virtual Log Files"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p>We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.<\/p>\n\n\n\n<p><strong>The Essence of VLFs<\/strong><\/p>\n\n\n\n<p>At its core, the transaction log is a sequential record of all the modifications made to the database. SQL Server breaks this log into smaller, more manageable segments\u2014these are the VLFs. Each VLF can be marked as active or inactive, depending on whether the transactions within it have been backed up (in the case of a simple recovery model) or replicated to a secondary database (in full and bulk-logged recovery models).<\/p>\n\n\n\n<p><strong>Why VLF Management Matters<\/strong><\/p>\n\n\n\n<p>The number and size of VLFs have a profound impact on the database&#8217;s operations. Ideally, you want to have just enough VLFs to ensure efficient log management without overburdening the system. Excessive VLFs, particularly in the thousands, can lead to performance degradation affecting backups, restores, replication processes, crash recovery, and even day-to-day operations such as data manipulation and rollbacks.<\/p>\n\n\n\n<p><strong>Evolution of the VLF Algorithm<\/strong><\/p>\n\n\n\n<p>Over the years, SQL Server has refined its approach to creating VLFs. This evolution reflects Microsoft&#8217;s commitment to performance optimization and is particularly evident in the changes introduced from SQL Server 2005 through 2019.<\/p>\n\n\n\n<p>For SQL Server 2005 to 2014, the VLF creation algorithm was relatively straightforward, albeit with a nuanced structure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Tiny Transactions<\/strong>: For transactions less than 1 MB, the process is complex, but it&#8217;s an edge case that we&#8217;ll set aside for now.<\/li>\n\n\n\n<li><strong>Small to Medium Transactions<\/strong>: For growths up to 64 MB, SQL Server would create 4 new VLFs, each approximately a quarter of the growth size.<\/li>\n\n\n\n<li><strong>Larger Transactions<\/strong>: Between 64 MB and 1 GB, you&#8217;d see 8 new VLFs, each about an eighth of the growth size.<\/li>\n\n\n\n<li><strong>Substantial Growth<\/strong>: For any growth over 1 GB, SQL Server would generate 16 new VLFs, each one-sixteenth the size of the growth.<\/li>\n<\/ul>\n\n\n\n<p>This meant that if you had a database with a log file initially set to 1 GB, which then auto-grew in 512 MB increments to a total size of 200 GB, you&#8217;d end up with a staggering 3,192 VLFs. This figure comes from the initial 8 VLFs upon creation and the subsequent auto-growth operations.<\/p>\n\n\n\n<p>However, in SQL Server 2014 through 2019, Microsoft introduced a smarter, more adaptive algorithm:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The new approach first checks if the growth size is less than 1\/8 the size of the current log. If so, it simply adds one new VLF equal to the growth size.<\/li>\n\n\n\n<li>For larger growth sizes, the system defaults to the previous method.<\/li>\n<\/ul>\n\n\n\n<p>Using this updated logic, the same database that ends up at 200 GB would now have a more reasonable total of 455 VLFs. This is a significant improvement and showcases the benefits of a thoughtful VLF strategy.<\/p>\n\n\n\n<p><strong>Optimizing VLFs for Performance<\/strong><\/p>\n\n\n\n<p>It&#8217;s clear that managing VLFs is not just about adhering to a set algorithm\u2014it&#8217;s about understanding the patterns of your database&#8217;s growth and transactional behavior. Optimizing the number of VLFs can lead to noticeable improvements in database performance, particularly for systems under heavy transactional loads.<\/p>\n\n\n\n<p>By tuning your SQL Server&#8217;s VLF configuration, you&#8217;re not just performing routine maintenance; you&#8217;re taking a proactive step towards ensuring your database&#8217;s responsiveness and stability. Whether you&#8217;re a database administrator or a developer, it pays to be cognizant of the nuances of VLF management\u2014a testament to the sophistication and maturity of SQL Server as a database platform.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[35,12,18],"tags":[4,77,76],"class_list":["post-159","post","type-post","status-publish","format-standard","hentry","category-data-integrity","category-internals","category-transaction-logs","tag-internals","tag-virtual-log-files","tag-vlf"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk<\/title>\n<meta name=\"description\" content=\"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.\" \/>\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.sqltabletalk.com\/?p=159\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk\" \/>\n<meta property=\"og:description\" content=\"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=159\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-16T13:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-16T15:33:34+00:00\" \/>\n<meta name=\"author\" content=\"Yvonne Vanslageren\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yvonne Vanslageren\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159\"},\"author\":{\"name\":\"Yvonne Vanslageren\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082\"},\"headline\":\"Understanding the Intricacies of SQL Server Virtual Log Files\",\"datePublished\":\"2024-01-16T13:55:00+00:00\",\"dateModified\":\"2024-01-16T15:33:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159\"},\"wordCount\":590,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"Internals\",\"Virtual Log Files\",\"VLF\"],\"articleSection\":[\"Data Integrity\",\"Internals\",\"Transaction Logs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=159#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=159\",\"name\":\"Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2024-01-16T13:55:00+00:00\",\"dateModified\":\"2024-01-16T15:33:34+00:00\",\"description\":\"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=159\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=159#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding the Intricacies of SQL Server Virtual Log Files\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\",\"url\":\"https:\/\/www.sqltabletalk.com\/\",\"name\":\"SQL Table Talk\",\"description\":\"Breaking Down SQL Server, One Post at a Time.\",\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltabletalk.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\",\"name\":\"Stephen Planck\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"caption\":\"Stephen Planck\"},\"logo\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/dexterwiki.com\",\"https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI\",\"https:\/\/www.youtube.com\/linuxmate\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082\",\"name\":\"Yvonne Vanslageren\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g\",\"caption\":\"Yvonne Vanslageren\"},\"url\":\"https:\/\/www.sqltabletalk.com\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk","description":"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.","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.sqltabletalk.com\/?p=159","og_locale":"en_US","og_type":"article","og_title":"Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk","og_description":"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.","og_url":"https:\/\/www.sqltabletalk.com\/?p=159","og_site_name":"SQL Table Talk","article_published_time":"2024-01-16T13:55:00+00:00","article_modified_time":"2024-01-16T15:33:34+00:00","author":"Yvonne Vanslageren","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yvonne Vanslageren","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=159#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=159"},"author":{"name":"Yvonne Vanslageren","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082"},"headline":"Understanding the Intricacies of SQL Server Virtual Log Files","datePublished":"2024-01-16T13:55:00+00:00","dateModified":"2024-01-16T15:33:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=159"},"wordCount":590,"commentCount":0,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["Internals","Virtual Log Files","VLF"],"articleSection":["Data Integrity","Internals","Transaction Logs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=159#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=159","url":"https:\/\/www.sqltabletalk.com\/?p=159","name":"Understanding the Intricacies of SQL Server Virtual Log Files - SQL Table Talk","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2024-01-16T13:55:00+00:00","dateModified":"2024-01-16T15:33:34+00:00","description":"We as SQL Server DBAs often overlook the importance of the transaction log. It plays a pivotal role in ensuring data integrity and recoverability. To manage this effectively, SQL Server employs a system of segmentation known as Virtual Log Files, or VLFs. The intricacies of VLFs and their management are fundamental to the seamless performance of SQL Server databases.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=159#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=159"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=159#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"Understanding the Intricacies of SQL Server Virtual Log Files"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltabletalk.com\/#website","url":"https:\/\/www.sqltabletalk.com\/","name":"SQL Table Talk","description":"Breaking Down SQL Server, One Post at a Time.","publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltabletalk.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0","name":"Stephen Planck","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","caption":"Stephen Planck"},"logo":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/dexterwiki.com","https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI","https:\/\/www.youtube.com\/linuxmate"]},{"@type":"Person","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/68bb31b454bafe9e139183ed4f3e9082","name":"Yvonne Vanslageren","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/22c274a7a354b81a0a8dc5b23e8e0be9bdd81a6bc0541474cfb6b954d6bb2089?s=96&d=mm&r=g","caption":"Yvonne Vanslageren"},"url":"https:\/\/www.sqltabletalk.com\/?author=2"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/159","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=159"}],"version-history":[{"count":4,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/159\/revisions"}],"predecessor-version":[{"id":259,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/159\/revisions\/259"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=159"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=159"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}