{"id":541,"date":"2011-08-04T15:27:00","date_gmt":"2011-08-04T15:27:00","guid":{"rendered":"\/blogs\/paul\/post\/Survey-nonclustered-index-counts-(code-to-run).aspx"},"modified":"2017-04-13T09:50:49","modified_gmt":"2017-04-13T16:50:49","slug":"survey-nonclustered-index-counts-code-to-run","status":"publish","type":"post","link":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/","title":{"rendered":"Survey: nonclustered index counts (code to run)"},"content":{"rendered":"<p>\n<font face=\"verdana,geneva\" size=\"2\">Here&#39;s a survey I&#39;ve been meaning to run for quite a while &#8211; that Kimberly and I are really interested in.<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">For all the databases on your server, how many nonclustered indexes do you tables have, plus is the table a heap or a clustered index?<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">The code below will return the following result set (taken from a random client system):<\/font>\n<\/p>\n<blockquote>\n<p>\n\t<font face=\"courier new,courier\" size=\"2\">BaseType&nbsp;&nbsp; NCIndexes TableCount<br \/>\n\t&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211;<br \/>\n\tClustered&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1645<br \/>\n\tClustered&nbsp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 832<br \/>\n\tClustered&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 417<br \/>\n\tClustered&nbsp; 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 68<br \/>\n\tClustered&nbsp; 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 18<br \/>\n\tClustered&nbsp; 5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 13<br \/>\n\tClustered&nbsp; 6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9<br \/>\n\tClustered&nbsp; 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5<br \/>\n\tClustered&nbsp; 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3<br \/>\n\tClustered&nbsp; 9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3<br \/>\n\tClustered&nbsp; 10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2<br \/>\n\tHeap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 303<br \/>\n\tHeap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 19<br \/>\n\tHeap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 51<br \/>\n\tHeap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4<br \/>\n\tHeap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp;<\/font>\n\t<\/p>\n<\/blockquote>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">I think it&#39;ll make some really interesting reading, and you may be really surprised at the results for your system &#8211; how many tables with no indexes at all and how many tables with large numbers of nonclustered indexes.<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">And yes, I&#39;m sure there&#39;s a slightly better way to write the code below, but I&#39;m not an expert T-SQL developer (and yes Aaron, I know about your (seriously) fabulous <a href=\"https:\/\/www.mssqltips.com\/sqlservertip\/2201\/making-a-more-reliable-and-flexible-spmsforeachdb\/\" target=\"_blank\">sp_MSforeachdb replacement<\/a> :-)<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">If someone wants to bang out a quick post with the PowerShell to run this on multiple servers, I&#39;ll link to it. (Update: The PowerShell script can be downloaded from the bottom of this post)<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">Feel free to send the results in email, in a spreadsheet, in a comment below, or even written on papyrus &#8211; anything works.<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">The more results the better &#8211; thanks!<\/font>\n<\/p>\n<p>\n<font face=\"verdana,geneva\" size=\"2\">Here&#39;s the code:<\/font>\n<\/p>\n<blockquote>\n<p>\n\t<font face=\"courier new,courier\" size=\"2\">IF EXISTS (SELECT * FROM msdb.sys.objects WHERE [name] = &#39;SQLskillsPaulsIndexCounts&#39;)<br \/>\n\t&nbsp;&nbsp;&nbsp; DROP TABLE msdb.dbo.SQLskillsPaulsIndexCounts;<br \/>\n\tGO<br \/>\n\tCREATE TABLE msdb.dbo.SQLskillsPaulsIndexCounts (<br \/>\n\t&nbsp;&nbsp;&nbsp; BaseType&nbsp;CHAR (10),<br \/>\n\t&nbsp;&nbsp;&nbsp; IndexCount&nbsp;SMALLINT);<br \/>\n\tGO<\/font>\n\t<\/p>\n<p>\n\t<font face=\"courier new,courier\" size=\"2\">EXEC sp_MSforeachdb <br \/>\n\t&nbsp;&nbsp;&nbsp; N&#39;IF EXISTS (SELECT 1 FROM (SELECT DISTINCT [name] <br \/>\n\t&nbsp;&nbsp;&nbsp; FROM sys.databases WHERE [state_desc] = &#39;&#39;ONLINE&#39;&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [database_id] &gt; 4<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [name] != &#39;&#39;pubs&#39;&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [name] != &#39;&#39;Northwind&#39;&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [name] != &#39;&#39;distribution&#39;&#39;<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [name]&nbsp;NOT LIKE&nbsp;&#39;&#39;ReportServer%&#39;&#39;<\/font><font face=\"courier new,courier\" size=\"2\"><br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [name] NOT LIKE &#39;&#39;Adventure%&#39;&#39;) AS names WHERE [name] = &#39;&#39;?&#39;&#39;)<br \/>\n\tBEGIN<br \/>\n\tUSE [?]<br \/>\n\tINSERT INTO msdb.dbo.SQLskillsPaulsIndexCounts<br \/>\n\tSELECT &#39;&#39;Heap&#39;&#39;, COUNT (*)-1<br \/>\n\tFROM sys.objects o<br \/>\n\tJOIN sys.indexes i<br \/>\n\t&nbsp;&nbsp;&nbsp; ON o.[object_id] = i.[object_id]<br \/>\n\tWHERE o.[type_desc] IN (&#39;&#39;USER_TABLE&#39;&#39;, &#39;&#39;VIEW&#39;&#39;)<br \/>\n\t&nbsp;&nbsp;&nbsp; AND o.[is_ms_shipped] = 0<br \/>\n\t&nbsp;&nbsp;&nbsp; AND EXISTS (<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SELECT *<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FROM sys.indexes<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WHERE [index_id] = 0<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [object_id] = o.[object_id])<br \/>\n\tGROUP BY i.[object_id];<br \/>\n\t<\/font><font face=\"courier new,courier\" size=\"2\"><br \/>\n\tINSERT INTO msdb.dbo.SQLskillsPaulsIndexCounts<br \/>\n\tSELECT &#39;&#39;Clustered&#39;&#39;, COUNT (*)-1<br \/>\n\tFROM sys.objects o<br \/>\n\tJOIN sys.indexes i<br \/>\n\t&nbsp;&nbsp;&nbsp; ON o.[object_id] = i.[object_id]<br \/>\n\tWHERE o.[type_desc] IN (&#39;&#39;USER_TABLE&#39;&#39;, &#39;&#39;VIEW&#39;&#39;)<br \/>\n\t&nbsp;&nbsp;&nbsp; AND o.[is_ms_shipped] = 0<br \/>\n\t&nbsp;&nbsp;&nbsp; AND EXISTS (<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SELECT *<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM sys.indexes<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WHERE [index_id] = 1<br \/>\n\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND [object_id] = o.[object_id])<br \/>\n\tGROUP BY i.[object_id];<br \/>\n\tEND&#39;;<br \/>\n\tGO<\/font>\n\t<\/p>\n<p>\n\t<font face=\"courier new,courier\" size=\"2\">SELECT DISTINCT [BaseType], [IndexCount] AS [NCIndexes], COUNT (*) AS [TableCount]<br \/>\n\tFROM msdb.dbo.SQLskillsPaulsIndexCounts<br \/>\n\tGROUP BY [BaseType], [IndexCount]<br \/>\n\tORDER BY [BaseType], [IndexCount];<br \/>\n\tGO<\/font>\n\t<\/p>\n<p>\n\t<font face=\"verdana,geneva\" size=\"2\"><font face=\"courier new,courier\">DROP TABLE msdb.dbo.SQLskillsPaulsIndexCounts;<br \/>\n\tGO<\/font><br \/>\n\t<\/font>\n\t<\/p>\n<\/blockquote>\n<p>\n<a href=\"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-content\/uploads\/2011\/8\/paulsindexsurvey.zip\">Pauls Index Survey.ps1 (2.64 kb)<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here&#39;s a survey I&#39;ve been meaning to run for quite a while &#8211; that Kimberly and I are really interested in. For all the databases on your server, how many nonclustered indexes do you tables have, plus is the table a heap or a clustered index? The code below will return the following result set [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[47,91],"tags":[],"class_list":["post-541","post","type-post","status-publish","format-standard","hentry","category-indexes-from-every-angle","category-surveys"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Survey: nonclustered index counts (code to run) - Paul S. Randal<\/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\/paul\/survey-nonclustered-index-counts-code-to-run\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Survey: nonclustered index counts (code to run) - Paul S. Randal\" \/>\n<meta property=\"og:description\" content=\"Here&#039;s a survey I&#039;ve been meaning to run for quite a while &#8211; that Kimberly and I are really interested in. For all the databases on your server, how many nonclustered indexes do you tables have, plus is the table a heap or a clustered index? The code below will return the following result set [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/\" \/>\n<meta property=\"og:site_name\" content=\"Paul S. Randal\" \/>\n<meta property=\"article:published_time\" content=\"2011-08-04T15:27:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-13T16:50:49+00:00\" \/>\n<meta name=\"author\" content=\"Paul Randal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Randal\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/\",\"name\":\"Survey: nonclustered index counts (code to run) - Paul S. Randal\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#website\"},\"datePublished\":\"2011-08-04T15:27:00+00:00\",\"dateModified\":\"2017-04-13T16:50:49+00:00\",\"author\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Survey: nonclustered index counts (code to run)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#website\",\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/\",\"name\":\"Paul S. Randal\",\"description\":\"In Recovery...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/?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\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce\",\"name\":\"Paul Randal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g\",\"caption\":\"Paul Randal\"},\"sameAs\":[\"http:\/\/3.209.169.194\/blogs\/paul\"],\"url\":\"https:\/\/www.sqlskills.com\/blogs\/paul\/author\/paul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Survey: nonclustered index counts (code to run) - Paul S. Randal","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\/paul\/survey-nonclustered-index-counts-code-to-run\/","og_locale":"en_US","og_type":"article","og_title":"Survey: nonclustered index counts (code to run) - Paul S. Randal","og_description":"Here&#39;s a survey I&#39;ve been meaning to run for quite a while &#8211; that Kimberly and I are really interested in. For all the databases on your server, how many nonclustered indexes do you tables have, plus is the table a heap or a clustered index? The code below will return the following result set [&hellip;]","og_url":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/","og_site_name":"Paul S. Randal","article_published_time":"2011-08-04T15:27:00+00:00","article_modified_time":"2017-04-13T16:50:49+00:00","author":"Paul Randal","twitter_misc":{"Written by":"Paul Randal","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/","url":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/","name":"Survey: nonclustered index counts (code to run) - Paul S. Randal","isPartOf":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#website"},"datePublished":"2011-08-04T15:27:00+00:00","dateModified":"2017-04-13T16:50:49+00:00","author":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce"},"breadcrumb":{"@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/survey-nonclustered-index-counts-code-to-run\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlskills.com\/blogs\/paul\/"},{"@type":"ListItem","position":2,"name":"Survey: nonclustered index counts (code to run)"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#website","url":"https:\/\/www.sqlskills.com\/blogs\/paul\/","name":"Paul S. Randal","description":"In Recovery...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlskills.com\/blogs\/paul\/?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\/paul\/#\/schema\/person\/ffcec826c18782e1e0adf173826a7fce","name":"Paul Randal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqlskills.com\/blogs\/paul\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0b6a266bba2f088f2551ef529293001bd73bf026bc1908b9866728c062beeeb6?s=96&d=mm&r=g","caption":"Paul Randal"},"sameAs":["http:\/\/3.209.169.194\/blogs\/paul"],"url":"https:\/\/www.sqlskills.com\/blogs\/paul\/author\/paul\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts\/541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/comments?post=541"}],"version-history":[{"count":0,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/posts\/541\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/media?parent=541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/categories?post=541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqlskills.com\/blogs\/paul\/wp-json\/wp\/v2\/tags?post=541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}