{"id":7194,"date":"2016-02-26T16:05:10","date_gmt":"2016-02-26T15:05:10","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/"},"modified":"2016-02-26T16:05:10","modified_gmt":"2016-02-26T15:05:10","slug":"sql-server-database-failed-to-generate-a-checkpoint","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/","title":{"rendered":"SQL Server Database failed to generate a checkpoint"},"content":{"rendered":"<p>Last time, I experienced a strange error when I tried to perform an integrity check or a simple checkpoint of a database:<\/p>\n<p><em>One or more recovery units belonging to database &#8216;mydatabase&#8217; failed to generate a checkpoint. This is typically caused by lack of system resources such as disk or memory, or in some cases due to database corruption. Examine previous entries in the error log for more detailed information on this failure.<\/em><\/p>\n<p><em>The log scan number (26001:414:0) passed to log scan in database &#8216; mydatabase &#8216; is not valid. This error may indicate data corruption or that the log file (.ldf) does not match the data file (.mdf). If this error occurred during replication, re-create the publication. Otherwise, restore from backup if the problem results in a failure during startup.<\/em><\/p>\n<p>As I said, this error seemed strange to me because:<\/p>\n<ul>\n<li>Memory was available for my instance<\/li>\n<li>The volumes space was enough<\/li>\n<li>Tempdb data and log files were not completely used (as for \u2018mydatabase\u2019 files)<\/li>\n<li>No database corruption was detected so far, and no dump<\/li>\n<li>No more information are present in the error logs<\/li>\n<\/ul>\n<p>I had no idea about the origin of this problem. So I decided to check the configuration of my database:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">SELECT * FROM sys.databases where name = N\u2018mydatabase\u2019<\/pre>\n<p>And when I checked the different configurations, I noticed that the parameter \u2018log_reuse_wait_desc\u2019 was set to \u2018Replication\u2019.<\/p>\n<p>This database contains a replication which was not correctly cleaned. After some investigations, I decided to use the stored procedure called \u2018sp_removedbreplication\u2019:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">EXEC sp_removedbreplication N\u2018mydatabase\u2019<\/pre>\n<p>However, when I still found my database when I executed this query:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">SELECT name, log_reuse_wait_desc FROM sys.databases where log_reuse_wait_desc = N\u2019replication\u2019<\/pre>\n<p>But the problem was the log file still contained a non-replicated transaction. My colleague advised me to mark all the transactions as replicated:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">EXEC sp_repldone @xactid = NULL, @xact_segno = NULL, @numtrans = 0, @time = 0, @reset = 1<\/pre>\n<p>Unfortunately, the replication was still not cleaned and the error was still present! So, the only way was to reactivate the publication\u2026<\/p>\n<p>Here are the different steps I had to perform to resolve my problem:<\/p>\n<ul>\n<li>Installation of the Replication components for this instance\n<ul>\n<li>Launch SQL Server installation, and add \u2018Replication\u2019 feature to the instance<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<ul>\n<li>Creation of a Publisher\n<ul>\n<li>As a table with a primary key is required for the replication, you should create an empty table just for this resolution (you can remove it at the end)<\/li>\n<li>Add the database to the Publisher<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-medium wp-image-7265 aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation.png\" alt=\"Replication_Publiation\" width=\"300\" height=\"208\" \/><\/a><\/p>\n<p>Now, the parameter \u2018log_reuse_log_wait_desc\u2019 must have changed from \u2018Replication\u2019 to \u2018Nothing\u2019. You can check it with this command:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">SELECT name, log_reuse_wait_desc FROM sys.databases where name = N\u2019mydatabase\u2019<\/pre>\n<p>Re-execute the stored procedure to correctly clean the replication from the database:<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">EXEC sp_removedbreplication N\u2018mydatabase\u2019<\/pre>\n<p>And your problem must be resolved \ud83d\ude09<\/p>\n<p>Do not forget to remove the elements added with your replication (jobs, table \u2026)<\/p>\n<p>I hope it will help you. If you have questions or remarks, do not hesitate to comment!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Last time, I experienced a strange error when I tried to perform an integrity check or a simple checkpoint of a database: One or more recovery units belonging to database &#8216;mydatabase&#8217; failed to generate a checkpoint. This is typically caused by lack of system resources such as disk or memory, or in some cases due [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":7196,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[],"type_dbi":[],"class_list":["post-7194","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Server Database failed to generate a checkpoint - dbi Blog<\/title>\n<meta name=\"description\" content=\"One or more recovery units belonging to database &#039;database&#039; failed to generate a checkpoint. This is typically caused by lack of system resources such as...\" \/>\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.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Database failed to generate a checkpoint\" \/>\n<meta property=\"og:description\" content=\"One or more recovery units belonging to database &#039;database&#039; failed to generate a checkpoint. This is typically caused by lack of system resources such as...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-02-26T15:05:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"380\" \/>\n\t<meta property=\"og:image:height\" content=\"263\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nathan Courtine\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nathan Courtine\" \/>\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.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/\"},\"author\":{\"name\":\"Nathan Courtine\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/38305b5ebdcdb4fb784fa31d760862d1\"},\"headline\":\"SQL Server Database failed to generate a checkpoint\",\"datePublished\":\"2016-02-26T15:05:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/\"},\"wordCount\":449,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/Replication_Publiation-1.png\",\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/\",\"name\":\"SQL Server Database failed to generate a checkpoint - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/Replication_Publiation-1.png\",\"datePublished\":\"2016-02-26T15:05:10+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/38305b5ebdcdb4fb784fa31d760862d1\"},\"description\":\"One or more recovery units belonging to database 'database' failed to generate a checkpoint. This is typically caused by lack of system resources such as...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/Replication_Publiation-1.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/Replication_Publiation-1.png\",\"width\":380,\"height\":263},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-database-failed-to-generate-a-checkpoint\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Database failed to generate a checkpoint\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/38305b5ebdcdb4fb784fa31d760862d1\",\"name\":\"Nathan Courtine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g\",\"caption\":\"Nathan Courtine\"},\"description\":\"Nathan Courtine has more than four years of experience in Microsoft solutions. He is specialized in SQL Server installation, migration, performance analysis, best practices, etc. Moreover, he has a background in Oracle Java and .NET software and web development. Nathan Courtine is Microsoft Certified in Administering SQL Server 2012 Databases. Nathan Courtine holds an Engineer\u2019s Degree in Computer Science from the ENSISA (Ecole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse (F). His branch-related experience covers Public Sector, Automotive, IT, Financial Services \\\/ Banking, etc.\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/nathan-courtine\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server Database failed to generate a checkpoint - dbi Blog","description":"One or more recovery units belonging to database 'database' failed to generate a checkpoint. This is typically caused by lack of system resources such as...","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.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server Database failed to generate a checkpoint","og_description":"One or more recovery units belonging to database 'database' failed to generate a checkpoint. This is typically caused by lack of system resources such as...","og_url":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/","og_site_name":"dbi Blog","article_published_time":"2016-02-26T15:05:10+00:00","og_image":[{"width":380,"height":263,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png","type":"image\/png"}],"author":"Nathan Courtine","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Nathan Courtine","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/"},"author":{"name":"Nathan Courtine","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/38305b5ebdcdb4fb784fa31d760862d1"},"headline":"SQL Server Database failed to generate a checkpoint","datePublished":"2016-02-26T15:05:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/"},"wordCount":449,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png","articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/","url":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/","name":"SQL Server Database failed to generate a checkpoint - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png","datePublished":"2016-02-26T15:05:10+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/38305b5ebdcdb4fb784fa31d760862d1"},"description":"One or more recovery units belonging to database 'database' failed to generate a checkpoint. This is typically caused by lack of system resources such as...","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Replication_Publiation-1.png","width":380,"height":263},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-database-failed-to-generate-a-checkpoint\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL Server Database failed to generate a checkpoint"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/38305b5ebdcdb4fb784fa31d760862d1","name":"Nathan Courtine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0fcc6c91bbc35c976c9d470585e48ae5d500680f1f55de5bbc5f8373b8ebb02c?s=96&d=mm&r=g","caption":"Nathan Courtine"},"description":"Nathan Courtine has more than four years of experience in Microsoft solutions. He is specialized in SQL Server installation, migration, performance analysis, best practices, etc. Moreover, he has a background in Oracle Java and .NET software and web development. Nathan Courtine is Microsoft Certified in Administering SQL Server 2012 Databases. Nathan Courtine holds an Engineer\u2019s Degree in Computer Science from the ENSISA (Ecole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse (F). His branch-related experience covers Public Sector, Automotive, IT, Financial Services \/ Banking, etc.","url":"https:\/\/www.dbi-services.com\/blog\/author\/nathan-courtine\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/7194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=7194"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/7194\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/7196"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=7194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=7194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=7194"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=7194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}