{"id":3700,"date":"2014-04-08T11:12:26","date_gmt":"2014-04-08T09:12:26","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/"},"modified":"2014-04-08T11:12:26","modified_gmt":"2014-04-08T09:12:26","slug":"best-practice-to-send-an-oracle-execution-plan","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/","title":{"rendered":"Best practice for the sending of an Oracle execution plan"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nYou have a query that takes too long and you want help to analyze the execution plan? Then you need to get it with relevant information, and correctly formatted. Autotrace is not a good option as it does not bind the variables in the same way as your application. Explain plan only shows estimations, but if we have a performance issue, this probably means that the estimation is wrong. I prefer SQL Monitoring when we have Tuning Pack, or the cursor plan with row-source statistics in all other cases. If you post it in a forum, don&#8217;t forget to keep it formatted or it&#8217;s impossible to read.<\/p>\n<p>Here are the two ways I prefer to get an execution plan, depending on whether you have the tuning pack licence or not.<\/p>\n<h3>Method 1 &#8211; Without Tuning Pack<\/h3>\n<p>I set the sqlplus environment to nicely\u00a0spool to text file and set the STATISTICS_LEVEL to ALL in order to gather plan execution statistics:<\/p>\n<pre><code>\nset pagesize 10000 linesize 300 trimspool on serveroutput off\nalter session set statistics_level=all;\n<\/code><\/pre>\n<p>Then I execute the query. Don&#8217;t forget to set the current_schema to the user that executes the statement, and to bind variables:<\/p>\n<pre><code>\n-- set the schema\nalter session set current_schema=SCOTT;\n-- define variables\nvariable minimum_salary number\n-- bind values\nexec :minimum_salary := 3000\n-- execute the query\nSELECT * FROM DEPT JOIN EMP USING(DEPTNO) WHERE SAL&gt;:minimum_salary;\n<\/code><\/pre>\n<p>Finally I get the execution plan to a text file:<\/p>\n<pre><code>\nspool plan.txt\nselect * from table(dbms_xplan.display_cursor(format=&gt;'allstats last +outline +peeked_binds +cost'));\nspool off\n<\/code><\/pre>\n<p>The plan will have both the estimations (E-Rows) and the actual number of rows (A-Rows) from the last execution. Note that if it is a parallel query statement, you must omit the &#8216;last&#8217; in the format or you will have statistics only for the coordinator process.<\/p>\n<h3>Method 2 &#8211; With Tuning Pack<\/h3>\n<p>When you have tuning pack, you have access to the great SQL monitoring feature.<\/p>\n<pre><code>\nSQL&gt;\u00a0show\u00a0parameter\u00a0pack\nNAME\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0TYPE\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0VALUE\n ------------------------------------\u00a0-----------\u00a0------------------------------\n control_management_pack_access\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0string\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0DIAGNOSTIC+TUNING\n<\/code><\/pre>\n<p>I set the sqlplus environment to nicely\u00a0spool to html file:<\/p>\n<pre><code>\nset pagesize 0 linesize 10000 trimspool on serveroutput off long 1000000 longc 1000000 echo off feedback off\n<\/code><\/pre>\n<p>Then I execute the query. Don&#8217;t forget to set the current_schema to the user that executes the statement, and to bind variables.<\/p>\n<p>One difference here: the MONITOR hint to force SQL Monitoring.<\/p>\n<pre><code>\n-- set the schema\nalter session set current_schema=SCOTT;\n-- define variables\nvariable minimum_salary number\n-- bind values\nexec :minimum_salary := 3000\n-- execute the query\nSELECT \/*+ monitor *\/ * FROM DEPT JOIN EMP USING(DEPTNO) WHERE SAL&gt;:minimum_salary;<\/code><\/pre>\n<p>Finally, get the execution plan to a html file:<\/p>\n<pre><code>\n-- in 12c avoid compression of xml because there is additional information:\nalter session set events='emx_control compress_xml=none';\n-- errors with French NLS_LANG\nalter session set NLS_NUMERIC_CHARACTERS=',.';\n<\/code><\/pre>\n<pre><code>\nspool plan.htm\nselect dbms_sqltune.report_sql_monitor(report_level=&gt;'all',type=&gt;'active') from dual;\nspool off\n<\/code><\/pre>\n<p>The html file is very small but will be rendered by an online flash automatically loaded from the oracle.com website.<\/p>\n<p>You can see both output, plan.txt, and plan.htm from this zip:\u00a0<a title=\"title\" href=\"http:\/\/dbi-services.com\/blog\/images\/easyblog_images\/139\/xplans.zip\" target=\"_self\" rel=\"noopener noreferrer\">xplans.zip<\/a><\/p>\n<p>Here is how they look like (but please never send me screenshots of execution plans&#8230;):<\/p>\n<p><a class=\"easyblog-thumb-preview\" title=\"CapturePlantxt.PNG\" href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\"><img decoding=\"async\" title=\"CapturePlantxt.PNG\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\" alt=\"CapturePlantxt.PNG\" \/><\/a><\/p>\n<p>And the colorful active report from SQL Monitoring:<\/p>\n<p><a class=\"easyblog-thumb-preview\" title=\"CapturePlanHtm.PNG\" href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlanHtm.png\"><img decoding=\"async\" title=\"CapturePlanHtm.PNG\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlanHtm.png\" alt=\"CapturePlanHtm.PNG\" \/><\/a><\/p>\n<p>The goal of this blog post is to simply (copy\/paste) the formatting and the plan gathering code, so if you have any improvement ideas, please share.<\/p>\n<h3>Update 25-JUL-2014<\/h3>\n<p>Thanks to Tyler Muth (<a href=\"https:\/\/twitter.com\/tmuth\">@tmuth<\/a>) I added the emx_control event to avoid compression of xml in 12c. See <a href=\"https:\/\/github.com\/tmuth\/Query-Test-Framework\/blob\/master\/source\/query-capture.sql#L78\">his Query Test Framework<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . You have a query that takes too long and you want help to analyze the execution plan? Then you need to get it with relevant information, and correctly formatted. Autotrace is not a good option as it does not bind the variables in the same way as your application. Explain plan [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":3701,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,59],"tags":[451,348,96,209,452],"type_dbi":[],"class_list":["post-3700","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","category-oracle","tag-dbms_xplan","tag-execution-plan","tag-oracle","tag-oracle-12c","tag-sql-monitoring"],"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>Best practice for the sending of an Oracle execution plan - dbi Blog<\/title>\n<meta name=\"description\" content=\"How to get the Oracle execution plan with all relevant information and nicely formatted.\" \/>\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\/best-practice-to-send-an-oracle-execution-plan\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Best practice for the sending of an Oracle execution plan\" \/>\n<meta property=\"og:description\" content=\"How to get the Oracle execution plan with all relevant information and nicely formatted.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2014-04-08T09:12:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\" \/>\n\t<meta property=\"og:image:width\" content=\"655\" \/>\n\t<meta property=\"og:image:height\" content=\"565\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Oracle 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=\"Oracle 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\/best-practice-to-send-an-oracle-execution-plan\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Best practice for the sending of an Oracle execution plan\",\"datePublished\":\"2014-04-08T09:12:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\"},\"wordCount\":439,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\",\"keywords\":[\"dbms_xplan\",\"Execution plan\",\"Oracle\",\"Oracle 12c\",\"SQL Monitoring\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\",\"name\":\"Best practice for the sending of an Oracle execution plan - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\",\"datePublished\":\"2014-04-08T09:12:26+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"description\":\"How to get the Oracle execution plan with all relevant information and nicely formatted.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png\",\"width\":655,\"height\":565},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Best practice for the sending of an Oracle execution plan\"}]},{\"@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\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Best practice for the sending of an Oracle execution plan - dbi Blog","description":"How to get the Oracle execution plan with all relevant information and nicely formatted.","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\/best-practice-to-send-an-oracle-execution-plan\/","og_locale":"en_US","og_type":"article","og_title":"Best practice for the sending of an Oracle execution plan","og_description":"How to get the Oracle execution plan with all relevant information and nicely formatted.","og_url":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/","og_site_name":"dbi Blog","article_published_time":"2014-04-08T09:12:26+00:00","og_image":[{"width":655,"height":565,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Best practice for the sending of an Oracle execution plan","datePublished":"2014-04-08T09:12:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/"},"wordCount":439,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png","keywords":["dbms_xplan","Execution plan","Oracle","Oracle 12c","SQL Monitoring"],"articleSection":["Database Administration &amp; Monitoring","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/","url":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/","name":"Best practice for the sending of an Oracle execution plan - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png","datePublished":"2014-04-08T09:12:26+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"description":"How to get the Oracle execution plan with all relevant information and nicely formatted.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePlantxt.png","width":655,"height":565},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/best-practice-to-send-an-oracle-execution-plan\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Best practice for the sending of an Oracle execution plan"}]},{"@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\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/3700","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\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=3700"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/3700\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/3701"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=3700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=3700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=3700"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=3700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}