{"id":17765,"date":"2022-06-30T15:27:26","date_gmt":"2022-06-30T13:27:26","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=17765"},"modified":"2024-09-10T17:27:46","modified_gmt":"2024-09-10T15:27:46","slug":"changing-fusion-middleware-forms-and-reports-repository-database","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/","title":{"rendered":"Changing Fusion Middleware Forms and Reports repository database"},"content":{"rendered":"\n<p>I have been requested to migrate the Fusion Middleware repository database from one Linux server to a new one. Here are the steps followed to successfully do this.<\/p>\n\n\n\n<p>In the following of this document, the Fusion Middleware repository created using the repository creation utility (RCU) has the following prefix: VM12FR. Note that the new repository database was already configured as a repository database. This mean that the RCU tool was run at least once against it.<\/p>\n\n\n\n<p>The Fusion Middleware repository database migration has been done following the <a href=\"https:\/\/docs.oracle.com\/en\/middleware\/fusion-middleware\/12.2.1.4\/asadm\/changing-network-configurations.html#GUID-2D7EA551-C00D-4604-B02F-1468EEC1F040\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Fusion Middleware 12.2.1.4 &#8211; Administering Oracle Fusion Middleware<\/a> documentation. The following restrictions applies to this kind of move:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The service name and SID of the database on the target host must be the same as on the source host.<\/li>\n\n\n\n<li>The port on the target host must be the same as on the source host.<\/li>\n\n\n\n<li>The database on the target host must contain the same schemas as on the source host and the schemas must have the same prefix as on the source host.<\/li>\n<\/ul>\n\n\n\n<p>This migration has been done in five steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check the current database for tablespaces related to the repository and create the SQL script to create them in the target database.<\/li>\n\n\n\n<li>Create the tablespaces in the target database<\/li>\n\n\n\n<li>Export all Fusion Middleware repository schemas from the source database<\/li>\n\n\n\n<li>Import those schemas in the target database<\/li>\n\n\n\n<li>Reconfigure the Fusion Middleware to use the new repository database<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Check current database for tablespaces related to the repository<\/h3>\n\n\n\n<p>Connect to the repository database as user having DBA privileges and run the following SQL queries.<\/p>\n\n\n\n<p>First for the normal tablespaces<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>select 'CREATE TABLESPACE '||TABLESPACE_NAME||' DATAFILE '||FILE_NAME||' SIZE '||BYTES||' autoextend on '||';' from dba_data_files where TABLESPACE_NAME like 'VM12FR%' order by tablespace_name;<\/code><\/pre>\n\n\n\n<p>Secondly for the temporary tablespaces<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>select 'CREATE TEMPORARY TABLESPACE '||TABLESPACE_NAME||' TEMPFILE '||FILE_NAME||' SIZE '||BYTES||' autoextend on '||';' from dba_temp_files where TABLESPACE_NAME like 'VM12FR%' order by tablespace_name;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Create the tablespaces in the target database<\/h3>\n\n\n\n<p>Connect to the target database and run the SQL scripts resulting from the previous step<\/p>\n\n\n\n<p>First for the normal tablespaces<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE TABLESPACE VM12FR_ias_opss DATAFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_ias_opss.dbf' SIZE 62914560 autoextend on ;\n\nCREATE TABLESPACE VM12FR_iau DATAFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_iau.dbf' SIZE 62914560 autoextend on ;\n\nCREATE TABLESPACE VM12FR_mds DATAFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_mds.dbf' SIZE 104857600 autoextend on ;\n\nCREATE TABLESPACE VM12FR_STB DATAFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_svctbl.dbf' SIZE 10485760 autoextend on ;\n\nCREATE TABLESPACE VM12FR_WLS DATAFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_wlsservices.dbf' SIZE 62914560 autoextend on ;<\/code><\/pre>\n\n\n\n<p>Secondly for the temporary tablespaces<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE TEMPORARY TABLESPACE VM12FR_IAS_TEMP TEMPFILE '\/u02\/app\/oracle\/oradata\/MD\/VM12FR_iastemp.dbf' SIZE 104857600 autoextend on ;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Export all Fusion Middleware repository schemas from the source database<\/h3>\n\n\n\n<p>Before exporting the schemas, you need to make sure the export will be done in the right character set. In my case, the recommended character set for Fusion Middleware was used: AL32UTF8<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export NLS_LANG=AMERICAN_AMERICA.AL32UTF8\nexpdp system\/***** schemas=VM12FR_STB,VM12FR_IAU_APPEND,VM12FR_IAU_VIEWER,VM12FR_MDS,VM12FR_WLS,VM12FR_WLS_RUNTIME,VM12FR_IAU,VM12FR_OPSS dumpfile=VM12FR.dpdmp\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Import those schemas in the target database<\/h3>\n\n\n\n<p>Same as for the database schemas export, the character set has to be correctly set in the NLS_LANG to avoid any character conversion or loose. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export NLS_LANG=AMERICAN_AMERICA.AL32UTF8\nimpdp system\/***** file=VM12FR.dpdmp\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Reconfigure the Fusion Middleware to use the new repository database<\/h3>\n\n\n\n<p>The reconfiguration of the Fusion Middleware Forms &amp; Reports has been done using the chghost.sh tool but this one requires two files. The wallet containing the WebLogic domain administrator password and the mapping file describing the type of changes that the chghost.sh tool will apply. Before running the change host script, make sure no process is running for the Fusion Middleware WebLogic Domain. For example, if the node manager is started as Unix service, make sure to stop it or the change host tool will hang stopping the WebLogic managed servers.<\/p>\n\n\n\n<p>Generate the wallet file for an administrator user named weblogic<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$MW_HOME\/oracle_common\/common\/bin\/configWallet.sh -walletDir \/home\/oracle\/CHGHOST_TEST weblogic<\/code><\/pre>\n\n\n\n<p>Create the mapping file. db_host_move.txt in this case.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#091;ARGUMENTS]\n\n&#091;DATABASE_MAPPING]\n#  You can only change the database host name.\nvm07.it.dbi-services.com=vm08.it.dbi-services.com<\/code><\/pre>\n\n\n\n<p>Finally run the chghost.sh script <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/app\/oracle\/12c\/Middleware\/oracle_common\/bin\/ \n.\/chghost.sh -chgHostInputFile \/home\/oracle\/CHGHOST_TEST\/db_host_move.txt  -javaHome \/app\/oracle\/Java\/jdk1.8.0_321 -domainLoc \/data\/config\/12c\/domains\/vm12fr -domainAdminUserName weblogic -walletDir \/home\/oracle\/CHGHOST_TEST  -logPriority FINEST  -logDir \/home\/oracle\/CHGHOST_TEST\/logs<\/code><\/pre>\n\n\n\n<p>Traces<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Command that will be executed :\n\n\n\/app\/oracle\/Java\/jdk1.8.0_321\/jre\/\/bin\/java -Xms4g -Xmx8g -DignoreErrors=true -Dweblogic.security.SSL.ignoreHostnameVerification=true -cp \/app\/oracle\/12c\/Middleware\/wlserver\/server\/lib\/weblogic.jar:\/app\/oracle\/12c\/Middleware\/oracle_common\/modules\/oracle.pki\/oraclepki.jar:\/app\/oracle\/12c\/Middleware\/oracle_common\/jlib\/cloningclient.jar:\/app\/oracle\/12c\/Middleware\/oracle_common\/jlib\/chghost.jar:\/app\/oracle\/12c\/Middleware\/oracle_common\/modules\/oracle.ldap\/ojmisc.jar:\/app\/oracle\/12c\/Middleware\/oracle_common\/modules\/features\/cieCfg_cam_lib.jar oracle.glcm.fmw.chghost.Chghost -chgHostInputFile \/home\/oracle\/CHGHOST_TEST\/db_host_move.txt -domainLoc \/data\/config\/12c\/domains\/vm12fr -domainAdminUserName weblogic -walletDir \/home\/oracle\/CHGHOST_TEST -logPriority FINEST -logDir \/home\/oracle\/CHGHOST_TEST\/logs\n\n Chghost Log File: \/home\/oracle\/CHGHOST_TEST\/logs\/CHGHOST2022-06-30_14-38_1477087699\/logs\/chghost.log<\/code><\/pre>\n\n\n\n<p>I will not past the complete traces here but all can be found in the log file which name provided on the screen.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have been requested to migrate the Fusion Middleware repository database from one Linux server to a new one. Here are the steps followed to successfully do this. In the following of this document, the Fusion Middleware repository created using the repository creation utility (RCU) has the following prefix: VM12FR. Note that the new repository [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[721],"type_dbi":[],"class_list":["post-17765","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-fmw"],"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>Changing Fusion Middleware Forms and Reports repository database - dbi Blog<\/title>\n<meta name=\"description\" content=\"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one\" \/>\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\/changing-fusion-middleware-forms-and-reports-repository-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Changing Fusion Middleware Forms and Reports repository database\" \/>\n<meta property=\"og:description\" content=\"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-30T13:27:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T15:27:46+00:00\" \/>\n<meta name=\"author\" content=\"Middleware 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=\"Middleware Team\" \/>\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\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Changing Fusion Middleware Forms and Reports repository database\",\"datePublished\":\"2022-06-30T13:27:26+00:00\",\"dateModified\":\"2024-09-10T15:27:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\"},\"wordCount\":540,\"commentCount\":0,\"keywords\":[\"FMW\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\",\"name\":\"Changing Fusion Middleware Forms and Reports repository database - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2022-06-30T13:27:26+00:00\",\"dateModified\":\"2024-09-10T15:27:46+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"description\":\"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Changing Fusion Middleware Forms and Reports repository database\"}]},{\"@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\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Changing Fusion Middleware Forms and Reports repository database - dbi Blog","description":"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one","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\/changing-fusion-middleware-forms-and-reports-repository-database\/","og_locale":"en_US","og_type":"article","og_title":"Changing Fusion Middleware Forms and Reports repository database","og_description":"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one","og_url":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/","og_site_name":"dbi Blog","article_published_time":"2022-06-30T13:27:26+00:00","article_modified_time":"2024-09-10T15:27:46+00:00","author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Changing Fusion Middleware Forms and Reports repository database","datePublished":"2022-06-30T13:27:26+00:00","dateModified":"2024-09-10T15:27:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/"},"wordCount":540,"commentCount":0,"keywords":["FMW"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/","url":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/","name":"Changing Fusion Middleware Forms and Reports repository database - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2022-06-30T13:27:26+00:00","dateModified":"2024-09-10T15:27:46+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"description":"This blogs describes the steps to migrate the Fusion Middleware repository database from one Linux server to a new one","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/changing-fusion-middleware-forms-and-reports-repository-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Changing Fusion Middleware Forms and Reports repository database"}]},{"@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\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17765","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\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=17765"}],"version-history":[{"count":12,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17765\/revisions"}],"predecessor-version":[{"id":23944,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/17765\/revisions\/23944"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=17765"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=17765"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=17765"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=17765"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}