{"id":9198,"date":"2016-11-01T14:14:53","date_gmt":"2016-11-01T13:14:53","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/"},"modified":"2016-11-01T14:14:53","modified_gmt":"2016-11-01T13:14:53","slug":"sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/","title":{"rendered":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?"},"content":{"rendered":"<p>If you have restricted access to the server and you do not know if your packages are installed on the SQL Server with the R Services, you have the possibility to do it by T-SQL.<br \/>\nThe R command\/function to use is \u201cinstalled.packages()\u201d.<br \/>\nAs you can read in the <a title=\"R Documentation installed.packages()\" href=\"https:\/\/stat.ethz.ch\/R-manual\/R-devel\/library\/utils\/html\/installed.packages.html\" target=\"_blank\">R Documentation for installed.packages()<\/a>,\u00a0 this function scans the description of each package.<br \/>\nThe output is a table with 16 columns with basically these information:<\/p>\n<ul>\n<li>Package<\/li>\n<li>LibPath<\/li>\n<li>Version<\/li>\n<li>Priority Depends<\/li>\n<li>Imports<\/li>\n<li>LinkingTo<\/li>\n<li>Suggests<\/li>\n<li>Enhances<\/li>\n<li>OS_type<\/li>\n<li>License<\/li>\n<li>Built<\/li>\n<\/ul>\n<p>To understand, I propose an example with this function installed.packages() with a result writes in a table of 16 columns:<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">EXECUTE sp_execute_external_script @language = N'R',\n@script=N'x &lt;- data.frame(installed.packages()) \n\t\t\tOutputDataSet &lt;- x[,c(1:16)]'<\/pre>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-12431 aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01.jpg\" alt=\"R_Services_Installed_packages01\" width=\"1145\" height=\"553\" \/><\/a><\/p>\n<p>Just for your information, if you change the number of columns to 17, you get the following error message:<br \/>\n<em>Msg 39004, Level 16, State 20<\/em><\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages02.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-12433 aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages02.jpg\" alt=\"R_Services_Installed_packages02\" width=\"766\" height=\"329\" \/><\/a><\/p>\n<p>Just to find the information that I need, I create a temporary table with the package name, the path and the version. These information are in the 3 first columns:<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">CREATE TABLE #packages_list\n(\n[Package] sysname\n,[Package_Path] sysname\n,[Version] NVARCHAR(20)\n)\nINSERT INTO #packages_list\nEXECUTE sp_execute_external_script @language = N'R' ,\n@script=N'x &lt;- data.frame(installed.packages())\nOutputDataSet &lt;- x[,c(1:3)]'\n\nSELECT COUNT(*) as NumberOfPackages FROM #packages_list\n\nSELECT * FROM #packages_list\n<\/pre>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages03.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-12432 aligncenter\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages03.jpg\" alt=\"R_Services_Installed_packages03\" width=\"549\" height=\"533\" \/><\/a><\/p>\n<p>As you can see, 47 packages are installed by default with the R Services.<br \/>\nI hope that my little tips will help you to begin with the R language in SQL Server \ud83d\ude09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you have restricted access to the server and you do not know if your packages are installed on the SQL Server with the R Services, you have the possibility to do it by T-SQL. The R command\/function to use is \u201cinstalled.packages()\u201d. As you can read in the R Documentation for installed.packages(),\u00a0 this function scans [&hellip;]<\/p>\n","protected":false},"author":15,"featured_media":9202,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[368],"tags":[49,969,51,566],"type_dbi":[],"class_list":["post-9198","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development-performance","tag-microsoft","tag-r-services","tag-sql-server","tag-sql-server-2016"],"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 2016 \u2013 R Services Tips: How to find installed packages using T-SQL? - 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-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?\" \/>\n<meta property=\"og:description\" content=\"If you have restricted access to the server and you do not know if your packages are installed on the SQL Server with the R Services, you have the possibility to do it by T-SQL. The R command\/function to use is \u201cinstalled.packages()\u201d. As you can read in the R Documentation for installed.packages(),\u00a0 this function scans [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-11-01T13:14:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1145\" \/>\n\t<meta property=\"og:image:height\" content=\"553\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"St\u00e9phane Haby\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"St\u00e9phane Haby\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\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-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\"},\"author\":{\"name\":\"St\u00e9phane Haby\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/d0bfb7484ae81c8980fc2b11334f803b\"},\"headline\":\"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?\",\"datePublished\":\"2016-11-01T13:14:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\"},\"wordCount\":201,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg\",\"keywords\":[\"Microsoft\",\"R Services\",\"SQL Server\",\"SQL Server 2016\"],\"articleSection\":[\"Development &amp; Performance\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\",\"name\":\"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg\",\"datePublished\":\"2016-11-01T13:14:53+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/d0bfb7484ae81c8980fc2b11334f803b\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg\",\"width\":1145,\"height\":553},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?\"}]},{\"@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\/d0bfb7484ae81c8980fc2b11334f803b\",\"name\":\"St\u00e9phane Haby\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g\",\"caption\":\"St\u00e9phane Haby\"},\"description\":\"St\u00e9phane Haby has more than ten years of experience in Microsoft solutions. He is specialized in SQL Server technologies such as installation, migration, best practices, and performance analysis etc. He is also an expert in Microsoft Business Intelligence solutions such as SharePoint, SQL Server and Office. Futhermore, he has many years of .NET development experience in the banking sector and other industries. In France, he was one of the first people to have worked with Microsoft Team System. He has written several technical articles on this subject. St\u00e9phane Haby is Microsoft Most Valuable Professional (MVP) as well as Microsoft Certified Solutions Associate (MCSA) and\u00a0Microsoft Certified Solutions Expert (MCSE) for SQL Server 2012. He is also Microsoft Certified Technology Specialist (MCTS) and Microsoft Certified IT Professional (MCITP) for SQL Server 2008 as well as ITIL Foundation V3 certified. He holds a Engineer diploma in industrial computing and automation from France. His branch-related experience covers Chemicals &amp; Pharmaceuticals, Banking \/ Financial Services, and many other industries.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/stephane-haby\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL? - 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-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?","og_description":"If you have restricted access to the server and you do not know if your packages are installed on the SQL Server with the R Services, you have the possibility to do it by T-SQL. The R command\/function to use is \u201cinstalled.packages()\u201d. As you can read in the R Documentation for installed.packages(),\u00a0 this function scans [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/","og_site_name":"dbi Blog","article_published_time":"2016-11-01T13:14:53+00:00","og_image":[{"width":1145,"height":553,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg","type":"image\/jpeg"}],"author":"St\u00e9phane Haby","twitter_card":"summary_large_image","twitter_misc":{"Written by":"St\u00e9phane Haby","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/"},"author":{"name":"St\u00e9phane Haby","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/d0bfb7484ae81c8980fc2b11334f803b"},"headline":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?","datePublished":"2016-11-01T13:14:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/"},"wordCount":201,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg","keywords":["Microsoft","R Services","SQL Server","SQL Server 2016"],"articleSection":["Development &amp; Performance"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/","url":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/","name":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg","datePublished":"2016-11-01T13:14:53+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/d0bfb7484ae81c8980fc2b11334f803b"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/R_Services_Installed_packages01-1.jpg","width":1145,"height":553},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-r-services-tips-how-to-find-installed-packages-using-t-sql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL Server 2016 \u2013 R Services Tips: How to find installed packages using T-SQL?"}]},{"@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\/d0bfb7484ae81c8980fc2b11334f803b","name":"St\u00e9phane Haby","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1123227ca39a5dca608c0f72d23cd1904fee29979749bbb3a485b9438436c553?s=96&d=mm&r=g","caption":"St\u00e9phane Haby"},"description":"St\u00e9phane Haby has more than ten years of experience in Microsoft solutions. He is specialized in SQL Server technologies such as installation, migration, best practices, and performance analysis etc. He is also an expert in Microsoft Business Intelligence solutions such as SharePoint, SQL Server and Office. Futhermore, he has many years of .NET development experience in the banking sector and other industries. In France, he was one of the first people to have worked with Microsoft Team System. He has written several technical articles on this subject. St\u00e9phane Haby is Microsoft Most Valuable Professional (MVP) as well as Microsoft Certified Solutions Associate (MCSA) and\u00a0Microsoft Certified Solutions Expert (MCSE) for SQL Server 2012. He is also Microsoft Certified Technology Specialist (MCTS) and Microsoft Certified IT Professional (MCITP) for SQL Server 2008 as well as ITIL Foundation V3 certified. He holds a Engineer diploma in industrial computing and automation from France. His branch-related experience covers Chemicals &amp; Pharmaceuticals, Banking \/ Financial Services, and many other industries.","url":"https:\/\/www.dbi-services.com\/blog\/author\/stephane-haby\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9198","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\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=9198"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9198\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/9202"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=9198"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=9198"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=9198"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=9198"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}