{"id":16514,"date":"2021-07-01T12:48:29","date_gmt":"2021-07-01T10:48:29","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/"},"modified":"2025-10-01T11:56:29","modified_gmt":"2025-10-01T09:56:29","slug":"sql-server-fixing-another-huge-msdb-database-80gb","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/","title":{"rendered":"SQL Server: Fixing another huge MSDB database &#8211; 80GB+"},"content":{"rendered":"<p>I have blogged several times about unusually large MSDB databases like <a href=\"https:\/\/www.dbi-services.com\/blog\/sql-server-how-to-delete-the-msdb-backup-history-kindly\/\">here.<\/a><br \/>\nMost of the time the problem comes from the backup history which is never purged.<br \/>\nThis time it&#8217;s different. Try to guess, if not the backup history, what can cause MSDB to increase abnormally in size?<\/p>\n<p>Let&#8217;s start by looking at the total size of the database:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_3_autogrow.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-50696\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_3_autogrow.png\" alt=\"\" width=\"751\" height=\"426\"><\/a><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-50693\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\" alt=\"\" width=\"729\" height=\"223\"><\/p>\n<p>It&#8217;s huge. The database size is almost 90GB. The 10% configuration on data files causes large 8GB autogrowth increments.<\/p>\n<p>Now let&#8217;s take a look at the storage used for each table:<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_2_table_size.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-50694\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_2_table_size.png\" alt=\"\" width=\"907\" height=\"500\"><\/a><\/p>\n<p>The problem comes from emails sent by the application directly through Database Mail. These emails have a very large HTML body.<\/p>\n<p>Here are some information about the emails stored in this msdb.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">select CAST(MIN(send_request_date) AS DATE) AS oldestEmail, Count(*) AS nbRows\nfrom msdb.dbo.sysmail_allitems<\/pre>\n<pre class=\"brush: text; gutter: true; first-line: 1\">oldestEmail nbRows\n----------- -----------\n2020-04-06  43935<\/pre>\n<p>There aren&#8217;t a lot of emails. There&#8217;s only about one year of emails stored.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">select Count(*) AS nbRows, AVG(DATALENGTH(body))\/1048576 AS avgSizeMB\nfrom msdb.dbo.sysmail_allitems\nwhere DATALENGTH(body) &gt; 1048576 -- 1MB<\/pre>\n<pre class=\"brush: text; gutter: true; first-line: 1\">nbRows      avgSizeMB\n----------- --------------------\n297         287<\/pre>\n<p>There are almost 300 emails with an HTML body exceeding 1 Megabytes size. The average size for these 300 emails is a 287MB of HTML body.<br \/>\nThis HTML size is obviously abnormal for an email and probably for any HTML file.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">select SUM(IIF(sent_status='failed', 0, 1)) AS emailsSent\nfrom msdb.dbo.sysmail_allitems\nwhere DATALENGTH(body) &gt; 1048576 -- 1MB<\/pre>\n<pre class=\"brush: text; gutter: true; first-line: 1\">emailsSent\n-----------\n0<\/pre>\n<p>None of those large emails has been sent successfully&#8230;<br \/>\nLooking at the Database Mail log we can see the following error message:<\/p>\n<pre class=\"brush: text; gutter: false; first-line: 1; highlight: [3]\">The mail could not be sent to the recipients because of the mail server failure.\nException Message: Cannot send mails to mail server. \n(Exceeded storage allocation. The server response was: 5.3.4 Message size exceeds fixed maximum message size).<\/pre>\n<p>Email size is often restricted to a few Megabytes to limit bandwidth usage.<br \/>\nThese large emails have nowhere to go and are just bloating the msdb database.<\/p>\n<p>I decided to delete old emails with a retention of 6 months.<br \/>\nTo clean up this table we can use the following procedure: <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/relational-databases\/system-stored-procedures\/sysmail-delete-mailitems-sp-transact-sql?view=sql-server-ver15\">msdb.dbo.sysmail_delete_mailitems_sp<\/a><\/p>\n<p>I used the following script to minimize the impact on the transaction log file.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">use msdb\ngo\ndeclare @retentionDate datetime = DATEADD(MONTH, -6, getdate())\ndeclare @oldest_date datetime = (select min(send_request_date) from msdb.dbo.sysmail_allitems)\n \nwhile (@oldest_date  &lt; @retentionDate)\nbegin\n    print 'sysmail_delete_mailitems_sp ' + CAST(@oldest_date AS varchar)\n    exec msdb.dbo.sysmail_delete_mailitems_sp @oldest_date\n \n    --  Delete by 1 week increments\n    set @oldest_date = DATEADD(WEEK, 1, @oldest_date)\n \n    checkpoint\n\tWAITFOR DELAY '00:00:10'\nend<\/pre>\n<p>&nbsp;<\/p>\n<p>The application team has been informed so they can fix this email content issue.<br \/>\nI recommend checking the size of your system databases frequently to avoid any weird situation like this.<\/p>\n\n\n<p>Written by <a href=\"https:\/\/www.linkedin.com\/in\/steven-naudet-aa540158\/\">Steven Naudet<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have blogged several times about unusually large MSDB databases like here. Most of the time the problem comes from the backup history which is never purged. This time it&#8217;s different. Try to guess, if not the backup history, what can cause MSDB to increase abnormally in size? Let&#8217;s start by looking at the total [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":16516,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,99],"tags":[49,51],"type_dbi":[],"class_list":["post-16514","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","category-sql-server","tag-microsoft","tag-sql-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Server: Fixing another huge MSDB database - 80GB+ - dbi Blog<\/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.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server: Fixing another huge MSDB database - 80GB+\" \/>\n<meta property=\"og:description\" content=\"I have blogged several times about unusually large MSDB databases like here. Most of the time the problem comes from the backup history which is never purged. This time it&#8217;s different. Try to guess, if not the backup history, what can cause MSDB to increase abnormally in size? Let&#8217;s start by looking at the total [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-01T10:48:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-01T09:56:29+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1125\" \/>\n\t<meta property=\"og:image:height\" content=\"344\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\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-fixing-another-huge-msdb-database-80gb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"SQL Server: Fixing another huge MSDB database &#8211; 80GB+\",\"datePublished\":\"2021-07-01T10:48:29+00:00\",\"dateModified\":\"2025-10-01T09:56:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\"},\"wordCount\":315,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\",\"keywords\":[\"Microsoft\",\"SQL Server\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\",\"name\":\"SQL Server: Fixing another huge MSDB database - 80GB+ - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\",\"datePublished\":\"2021-07-01T10:48:29+00:00\",\"dateModified\":\"2025-10-01T09:56:29+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png\",\"width\":1125,\"height\":344},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server: Fixing another huge MSDB database &#8211; 80GB+\"}]},{\"@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\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server: Fixing another huge MSDB database - 80GB+ - dbi Blog","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-fixing-another-huge-msdb-database-80gb\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server: Fixing another huge MSDB database - 80GB+","og_description":"I have blogged several times about unusually large MSDB databases like here. Most of the time the problem comes from the backup history which is never purged. This time it&#8217;s different. Try to guess, if not the backup history, what can cause MSDB to increase abnormally in size? Let&#8217;s start by looking at the total [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/","og_site_name":"dbi Blog","article_published_time":"2021-07-01T10:48:29+00:00","article_modified_time":"2025-10-01T09:56:29+00:00","og_image":[{"width":1125,"height":344,"url":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png","type":"image\/png"}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"SQL Server: Fixing another huge MSDB database &#8211; 80GB+","datePublished":"2021-07-01T10:48:29+00:00","dateModified":"2025-10-01T09:56:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/"},"wordCount":315,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png","keywords":["Microsoft","SQL Server"],"articleSection":["Database Administration &amp; Monitoring","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/","url":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/","name":"SQL Server: Fixing another huge MSDB database - 80GB+ - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png","datePublished":"2021-07-01T10:48:29+00:00","dateModified":"2025-10-01T09:56:29+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Blog23_1_file_size.png","width":1125,"height":344},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-fixing-another-huge-msdb-database-80gb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL Server: Fixing another huge MSDB database &#8211; 80GB+"}]},{"@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\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/16514","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\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=16514"}],"version-history":[{"count":2,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/16514\/revisions"}],"predecessor-version":[{"id":40611,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/16514\/revisions\/40611"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/16516"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=16514"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=16514"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=16514"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=16514"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}