{"id":240233,"date":"2021-11-02T14:06:27","date_gmt":"2021-11-02T21:06:27","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=240233"},"modified":"2021-11-02T14:41:07","modified_gmt":"2021-11-02T21:41:07","slug":"finding-the-size-of-individual-indexes","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/","title":{"rendered":"Finding the Size of Individual Indexes"},"content":{"rendered":"\n<p>Recently I had a client ask me if there was a way to calculate the size of individual indexes on a table and how to interpret what is reported by the table function sysproc.admin_get_index_info. The client asked whether the value is reported as a sum per table or per individual index.<\/p>\n\n\n\n<p>To explain this, I ran the following queries:<\/p>\n\n\n<pre><code>SELECT \n   IID, \n   index_object_p_size , \n   char(indname,30) \nFROM \n   table(sysproc.admin_get_index_info('T','DB2INST1','ABC_ITEM'))<\/code><\/pre>\n<pre><code>IID    INDEX_OBJECT_P_SIZE  3\n------ -------------------- ------------------------------\n     1                 8704 MN_STOREID\n     2                 8704 MN_ACCOUNT\n     3                 8704 MN_ITEMSTATUS\n     4                 8704 MN_STATUS\n     5                 8704 MN_COL\n     6                 8704 IDX80000\n     7                 8704 MNITEM\n 7 record(s) selected.<\/code><\/pre>\n\n\n<p>The table function reports the same index size for each of the indexes on this table, indicating that the size is the total space required for all indexes, not each individual index.<\/p>\n\n\n\n<p>If you run the same query for an individual index, you will get the same value for INDEX_OBJECT_P_SIZE:<\/p>\n\n\n<pre><code>SELECT \n   IID, \n   index_object_p_size , \n   char(indname,30) \nFROM \n   table(sysproc.admin_get_index_info('I','DB2JCXP','IDX80000'))<\/code><\/pre>\n<pre><code> IID    INDEX_OBJECT_P_SIZE  3\n------ -------------------- ------------------------------\n     6                 8704 IDX80000\n\n  1 record(s) selected.\n<\/code><\/pre>\n\n\n<p>Next, I ran this query to calculate individual index sizes:<\/p>\n\n\n<pre><code>SELECT \n   sum(nleaf*4) over (partition by iid order by iid) size_nleaf_kb, \n   char(indname, 30) indname \nFROM \n   syscat.indexes \nWHERE \n   tabschema = 'DB2INST1' \n   AND tabname = 'ABC_ITEM' \nORDER BY \n   iid\n<\/code><\/pre>\n\n\n<p>The query returns the following individual sizes for the indexes:<\/p>\n\n\n<pre><code>SIZE_NLEAF_KB        INDNAME\n-------------------- ------------------------------\n                 632 MN_STOREID\n                2800 MN_ACCOUNT\n                 596 MN_ITEMSTATUS\n                 600 MN_STATUS\n                 564 MN_COL\n                2124 IDX80000\n                1188 MNITEM\n\n  7 record(s) selected.\n<\/code><\/pre>\n\n\n<p><strong><em>Some key considerations with the above query:<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Estimating the size of the index using NLEAF (the number of pages within the index) is the best available way as the leaf nodes within the index contain pointers to the actual data. This depends on having up-to-date statistics on your indexes, so you may need to use RUNSTATS prior to running this query. One potential issue with using NLEAF is on DPF systems, where NLEAF is extrapolated from the statistics for a single database partition, so this method is suitable for single-partition environments.<\/li><li>The multiplication of NLEAF is with the PAGE SIZE of the tablespace, in kilobytes (4 in this case).<\/li><\/ul>\n\n\n\n<p>If I add these up, I get 8504 kb, which is 97.7% the 8704 kb reported by ADMIN_GET_INDEX_INFO. The remaining 2.3% is attributable to the root and intermediate nodes of the index, but this is such a small amount that the numbers shown above provide a fairly accurate indication of the size of each index.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently I had a client ask me if there was a way to calculate the size of individual indexes on a table and how to interpret what is reported by the table function sysproc.admin_get_index_info. The client asked whether the value is reported as a sum per table or per individual index. To explain this, I [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":240253,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,17],"tags":[18,76],"class_list":["post-240233","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-db2","tag-db2","tag-db2-luw"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Is Index Size Reported by admin_get_index_info Per Table or Per Index?<\/title>\n<meta name=\"description\" content=\"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Finding the Size of Individual Indexes\" \/>\n<meta property=\"og:description\" content=\"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-02T21:06:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-02T21:41:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/Finding-the-Size-of-Individual-Indexes-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"Finding the Size of Individual Indexes\",\"datePublished\":\"2021-11-02T21:06:27+00:00\",\"dateModified\":\"2021-11-02T21:41:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\"},\"wordCount\":304,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg\",\"keywords\":[\"db2\",\"db2 luw\"],\"articleSection\":[\"Blog\",\"Db2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\",\"name\":\"Is Index Size Reported by admin_get_index_info Per Table or Per Index?\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg\",\"datePublished\":\"2021-11-02T21:06:27+00:00\",\"dateModified\":\"2021-11-02T21:41:07+00:00\",\"description\":\"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg\",\"width\":557,\"height\":291,\"caption\":\"Finding the Size of Individual Indexes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Finding the Size of Individual Indexes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Is Index Size Reported by admin_get_index_info Per Table or Per Index?","description":"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?","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:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/","og_locale":"en_US","og_type":"article","og_title":"Finding the Size of Individual Indexes","og_description":"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?","og_url":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2021-11-02T21:06:27+00:00","article_modified_time":"2021-11-02T21:41:07+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/Finding-the-Size-of-Individual-Indexes-1.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"Finding the Size of Individual Indexes","datePublished":"2021-11-02T21:06:27+00:00","dateModified":"2021-11-02T21:41:07+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/"},"wordCount":304,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg","keywords":["db2","db2 luw"],"articleSection":["Blog","Db2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/","url":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/","name":"Is Index Size Reported by admin_get_index_info Per Table or Per Index?","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg","datePublished":"2021-11-02T21:06:27+00:00","dateModified":"2021-11-02T21:41:07+00:00","description":"Is there a way to calculate the size of individual indexes and how can we interpret what is reported by the table function sysproc.admin_get_index_info?","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Finding-the-Size-of-Individual-Indexes-1.jpg","width":557,"height":291,"caption":"Finding the Size of Individual Indexes"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/finding-the-size-of-individual-indexes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Finding the Size of Individual Indexes"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=240233"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240233\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/240253"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=240233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=240233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=240233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}