{"id":35776,"date":"2024-12-10T10:54:39","date_gmt":"2024-12-10T09:54:39","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=35776"},"modified":"2024-12-16T10:02:41","modified_gmt":"2024-12-16T09:02:41","slug":"help-yourself-out-with-the-log_reuse_wait_desc-column","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/","title":{"rendered":"Help yourself out with the &#8216;log_reuse_wait_desc&#8217; column"},"content":{"rendered":"\n<p>A few days ago a customer called me to ask if I could help him with a problem with the log file.<\/p>\n\n\n\n<p>He tried to&nbsp;shrink it, but the system wasn&#8217;t doing anything and he didn&#8217;t know why.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-with-the-column-log-reuse-wait-desc-you-can-find-it-out\">With the column &#8216;log_reuse_wait_desc&#8217; you can find it out.<\/h2>\n\n\n\n<p>When I asked him what was in the &#8216;log_reuse_wait_desc&#8217; column for the database, there was silence at first, then the question quickly arose as to where the column could be found at all.<\/p>\n\n\n\n<p>But let&#8217;s start at the beginning.<\/p>\n\n\n\n<p>I arranged a session with the customer and asked him to show me what he had in mind.<\/p>\n\n\n\n<p>He tried to reduce the log file to the smallest possible size with the following command:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"405\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\" alt=\"\" class=\"wp-image-35778\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png 940w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13-300x129.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13-768x331.png 768w\" sizes=\"auto, (max-width: 940px) 100vw, 940px\" \/><\/figure>\n\n\n\n<p>The output is successfull and nothing has happened.<\/p>\n\n\n\n<p>But why?<\/p>\n\n\n\n<p>I quickly found out that this was a database located in an AlwaysOn group.<\/p>\n\n\n\n<p>Some time before his call, an application had made large changes to the database by mistake. This caused the log file to grow enormously. From there also the desire to restore the old size.<\/p>\n\n\n\n<p>In the well-known system table sys.databases there is a column with the name &#8216;log_reuse_wait_desc&#8217; which tells us why it does not work.<\/p>\n\n\n\n<p>So I executed a query based on the name of the database and the column:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"803\" height=\"329\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-14.png\" alt=\"\" class=\"wp-image-35779\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-14.png 803w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-14-300x123.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-14-768x315.png 768w\" sizes=\"auto, (max-width: 803px) 100vw, 803px\" \/><\/figure>\n\n\n\n<p>The reuse_wait &#8216;AVAILABILITY_REPLICA&#8217; was recognizable.<\/p>\n\n\n\n<p>This means that the log file is replicating the transactions that have been carried out. Until this has happened, the log file cannot be manipulated.<\/p>\n\n\n\n<p>We therefore had to wait until all transactions had been replicated and the status had changed:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"384\" height=\"331\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-15.png\" alt=\"\" class=\"wp-image-35780\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-15.png 384w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-15-300x259.png 300w\" sizes=\"auto, (max-width: 384px) 100vw, 384px\" \/><\/figure>\n\n\n\n<p>On the status &#8216;ACTIVE_TRANSACTION&#8217;, we are already able to shrink the previous enlargement.<\/p>\n\n\n\n<p>Then we could reduce the size of the file.<\/p>\n\n\n\n<p>Are there any other log waits?<\/p>\n\n\n\n<p>The following are listed in the official Microsoft documentation:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>NOTHING<\/li>\n\n\n\n<li>CHECKPOINT<\/li>\n\n\n\n<li>LOG_BACKUP<\/li>\n\n\n\n<li>ACTIVE_BACKUP_OR_RESTORE<\/li>\n\n\n\n<li>ACTIVE_TRANSACTION<\/li>\n\n\n\n<li>DATABASE_MIRRORING<\/li>\n\n\n\n<li>REPLICATION<\/li>\n\n\n\n<li>DATABASE_SNAPSHOT_CREATION<\/li>\n\n\n\n<li>LOG_SCAN<\/li>\n\n\n\n<li>AVAILABILITY_REPLICA<\/li>\n\n\n\n<li>OLDEST_PAGE<\/li>\n\n\n\n<li>XTP_CHECKPOINT<\/li>\n\n\n\n<li>SLOG_SCAN<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p>Customers often ask me exactly the opposite. Why can&#8217;t I reduce the size of the log file even though I have only made small changes to the database?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-main-problem-lies-with-the-vlfs\">The main problem lies with the VLFs.<\/h2>\n\n\n\n<p>When the transaction log is not growing, and you&#8217;re taking regular log backups, but the log_reuse_wait_desc stays at LOG_BACKUP, the reason is that the previous log backup did not clear any Virtual Log Files (VLFs).<\/p>\n\n\n\n<p>How can this occur?<\/p>\n\n\n\n<p>Consider a database with minimal insert, update, delete, or DDL activity. In this scenario, only a few log records are generated between your regular log backups, and they all reside in the same Virtual Log File (VLF). When the next log backup runs, it backs up these few log records but cannot clear the current VLF, preventing the log_reuse_wait_desc from changing. Once enough changes are made in the database to fill the current VLF and activate the next one, the subsequent log backup should be able to clear the previous VLF, causing the log_reuse_wait_desc to change to NOTHING. However, if the next log backup cannot clear the current VLF, the log_reuse_wait_desc will revert to LOG_BACKUP again.<\/p>\n\n\n\n<p>If you want to find out more about VFLs, take a look at my colleague&#8217;s blog entry. He has covered the topic in great detail:<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-dbi-blog wp-block-embed-dbi-blog\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ztQoBU8d7M\"><a href=\"https:\/\/www.dbi-services.com\/blog\/sql-server-what-are-vlfs-and-why-should-i-care-about-them\/\">SQL-Server: What are VLF\u2019s and why should I care about them?<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"&#8220;SQL-Server: What are VLF\u2019s and why should I care about them?&#8221; &#8212; dbi Blog\" src=\"https:\/\/www.dbi-services.com\/blog\/sql-server-what-are-vlfs-and-why-should-i-care-about-them\/embed\/#?secret=1skfEubUwJ#?secret=ztQoBU8d7M\" data-secret=\"ztQoBU8d7M\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>A few days ago a customer called me to ask if I could help him with a problem with the log file. He tried to&nbsp;shrink it, but the system wasn&#8217;t doing anything and he didn&#8217;t know why. With the column &#8216;log_reuse_wait_desc&#8217; you can find it out. When I asked him what was in the &#8216;log_reuse_wait_desc&#8217; [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[99],"tags":[466,892,51],"type_dbi":[],"class_list":["post-35776","post","type-post","status-publish","format-standard","hentry","category-sql-server","tag-alwayson","tag-shrinking","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>Help yourself out with the &#039;log_reuse_wait_desc&#039; column - 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\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Help yourself out with the &#039;log_reuse_wait_desc&#039; column\" \/>\n<meta property=\"og:description\" content=\"A few days ago a customer called me to ask if I could help him with a problem with the log file. He tried to&nbsp;shrink it, but the system wasn&#8217;t doing anything and he didn&#8217;t know why. With the column &#8216;log_reuse_wait_desc&#8217; you can find it out. When I asked him what was in the &#8216;log_reuse_wait_desc&#8217; [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-10T09:54:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-16T09:02:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\" \/>\n\t<meta property=\"og:image:width\" content=\"940\" \/>\n\t<meta property=\"og:image:height\" content=\"405\" \/>\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\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"Help yourself out with the &#8216;log_reuse_wait_desc&#8217; column\",\"datePublished\":\"2024-12-10T09:54:39+00:00\",\"dateModified\":\"2024-12-16T09:02:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\"},\"wordCount\":589,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\",\"keywords\":[\"AlwaysOn\",\"Shrinking\",\"SQL Server\"],\"articleSection\":[\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\",\"name\":\"Help yourself out with the 'log_reuse_wait_desc' column - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\",\"datePublished\":\"2024-12-10T09:54:39+00:00\",\"dateModified\":\"2024-12-16T09:02:41+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png\",\"width\":940,\"height\":405},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help yourself out with the &#8216;log_reuse_wait_desc&#8217; column\"}]},{\"@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":"Help yourself out with the 'log_reuse_wait_desc' column - 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\/help-yourself-out-with-the-log_reuse_wait_desc-column\/","og_locale":"en_US","og_type":"article","og_title":"Help yourself out with the 'log_reuse_wait_desc' column","og_description":"A few days ago a customer called me to ask if I could help him with a problem with the log file. He tried to&nbsp;shrink it, but the system wasn&#8217;t doing anything and he didn&#8217;t know why. With the column &#8216;log_reuse_wait_desc&#8217; you can find it out. When I asked him what was in the &#8216;log_reuse_wait_desc&#8217; [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/","og_site_name":"dbi Blog","article_published_time":"2024-12-10T09:54:39+00:00","article_modified_time":"2024-12-16T09:02:41+00:00","og_image":[{"width":940,"height":405,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.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\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"Help yourself out with the &#8216;log_reuse_wait_desc&#8217; column","datePublished":"2024-12-10T09:54:39+00:00","dateModified":"2024-12-16T09:02:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/"},"wordCount":589,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png","keywords":["AlwaysOn","Shrinking","SQL Server"],"articleSection":["SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/","url":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/","name":"Help yourself out with the 'log_reuse_wait_desc' column - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png","datePublished":"2024-12-10T09:54:39+00:00","dateModified":"2024-12-16T09:02:41+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/11\/image-13.png","width":940,"height":405},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/help-yourself-out-with-the-log_reuse_wait_desc-column\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Help yourself out with the &#8216;log_reuse_wait_desc&#8217; column"}]},{"@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\/35776","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=35776"}],"version-history":[{"count":2,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/35776\/revisions"}],"predecessor-version":[{"id":36172,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/35776\/revisions\/36172"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=35776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=35776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=35776"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=35776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}