{"id":10168,"date":"2017-05-29T18:59:56","date_gmt":"2017-05-29T16:59:56","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/"},"modified":"2017-05-29T18:59:56","modified_gmt":"2017-05-29T16:59:56","slug":"which-privilege-for-create-pluggable-database-from-db-link","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/","title":{"rendered":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nWhen cloning a PDB from a remote CDB you need to define a database link to be used in the CREATE PLUGGABLE DATABASE &#8230; FROM &#8230;@&#8230; command. The documentation is not completely clear about the privileges required on the source for the user defined in the database link, so here are the different possibilities.<\/p>\n<h3>Remote clone<\/h3>\n<p>Here is what the documentation says:<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\" alt=\"CapturePDBPrivsClone\" width=\"1024\" height=\"156\" class=\"alignnone size-large wp-image-16886\" \/><\/a><\/p>\n<p>So you can connect to the CDB or to the PDB.<\/p>\n<p>In order to connect to the CDB you need a common user with the CREATE SESSION system privilege:<\/p>\n<pre><code>\nSQL&gt; create user C##DBA identified by oracle;\nUser C##DBA created.\nSQL&gt; grant create session to C##DBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>No need for CONTAINER=ALL here because you connect only to the CDB$ROOT.<\/p>\n<p>Then you need the CREATE PLUGGABLE DATABASE system privilege on the PDB. You can grant it from the CDB$ROOT with the CONTAINER=ALL but it is sufficient to grant it locally on the source PDB:<\/p>\n<pre><code>\nSQL&gt; alter session set container=PDB1;\nSession altered.\nSQL&gt; grant create pluggable database to C##DBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>Note that, not documented, but the SYSOPER administrative privilege can replace the CREATE PLUGGABLE DATABASE so we can run the following instead of the previous one:<\/p>\n<pre><code>\nSQL&gt; alter session set container=PDB1;\nSession altered.\ngrant sysoper to C##DBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>Both ways are usable for cloning, you create a database link to this common user, on the destination, and run the CLONE PLUGGABLE DATABASE:<\/p>\n<pre><code>\nSQL&gt; create database link CDB1A connect to C##DBA identified by oracle using '\/\/localhost\/CDB1A';\nDatabase link CDB1A created.\nSQL&gt; create pluggable database PDB1CLONE from PDB1@CDB1A file_name_convert=('CDB1A\/PDB1','CDB2A\/PDB1CLONE');\nPluggable database PDB1CLONE created.\nSQL&gt; alter  pluggable database PDB1CLONE open;\nPluggable database PDB1CLONE altered.\n<\/code><\/pre>\n<p>This was using a common user but you can also define the user locally on the source PDB:<\/p>\n<pre><code>\nSQL&gt; alter session set container=PDB1;\nSession altered.\nSQL&gt; create user PDBDBA identified by oracle;\nUser PDBDBA created.\nSQL&gt; grant create session to PDBDBA container=current;\nGrant succeeded.\nSQL&gt; grant create pluggable database to PDBDBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>There again you have the alternative to use SYSOPER instead of CREATE PLUGGABLE DATABASE:<\/p>\n<pre><code>\nSQL&gt; alter session set container=PDB1;\nSession altered.\nSQL&gt; create user PDBDBA identified by oracle;\nUser PDBDBA created.\nSQL&gt; grant create session to PDBDBA container=current;\nGrant succeeded.\nSQL&gt; grant sysoper to PDBDBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>With one of those, you can clone from the target with a database link connecting to the local user only:<\/p>\n<pre><code>\nSQL&gt; create database link CDB1A connect to PDBDBA identified by oracle using '\/\/localhost\/PDB1';\nDatabase link CDB1A created.\nSQL&gt; create pluggable database PDB1CLONE from PDB1@CDB1A file_name_convert=('CDB1A\/PDB1','CDB2A\/PDB1CLONE');\nPluggable database PDB1CLONE created.\nSQL&gt; alter  pluggable database PDB1CLONE open;\nPluggable database PDB1CLONE altered.\n<\/code><\/pre>\n<p>Then which alternative to use? The choice of the common or local user is up to you. I probably use a common user to do system administration, and cloning is one of them. But if you are in a PDBaaS environment where you are the PDB administrator, then you can clone your PDB to another CDB that you manage. This can mean cloning a PDB from the Cloud to a CDB on your laptop.<\/p>\n<h3> PDB Relocate<\/h3>\n<p>Things are different with the RELOCATE option where you drop the source PDB and redirect the connection to the new one. This is definitely a system administration task to do at CDB level and requires a common user. Trying it from a database link connecting to a local user will raise the following error:<\/p>\n<pre><code>\nORA-17628: Oracle error 65338 returned by remote Oracle server\n&nbsp;\n65338, 00000, \"unable to create pluggable database\"\n\/\/ *Cause:  An attempt was made to relocate a pluggable database using a\n\/\/          database link to the source pluggable database.\n\/\/ *Action: Use a database link that points to the source multitenant container\n\/\/          database root and retry the operation.\n<\/code><\/pre>\n<p>Here is what the documentation says:<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsRelocate.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsRelocate.png\" alt=\"CapturePDBPrivsRelocate\" width=\"1024\" height=\"185\" class=\"alignnone size-large wp-image-16888\" \/><\/a><\/p>\n<p>So, we need to have a common user on the source CDB, with CREATE SESSION privilege, and it makes sense to use an administrative privilege:<\/p>\n<pre><code>\nSQL&gt; create user C##DBA identified by oracle;\nUser C##DBA created.\nSQL&gt; grant create session to C##DBA container=current;\nGrant succeeded.\nSQL&gt; alter session set container=PDB1;\nSession altered.\ngrant sysoper to C##DBA container=current;\nGrant succeeded.\n<\/code><\/pre>\n<p>The documentation mentions that you can use either SYSDBA or SYSOPER, but from my tests (and <a href=\"https:\/\/www.toadworld.com\/platforms\/oracle\/w\/wiki\/11750.near-zero-downtime-pdb-relocation-in-oracle-database-12cr2\" target=\"_blank\" rel=\"noopener noreferrer\">Deiby G\u00f3mez ones<\/a>) only SYSOPER works without raising an &#8216;insufficient privileges&#8217;. The documentation mentions that CREATE PLUGGABLE DATABASE is also necessary. Actually, it is not. And, with a relocate, it cannot be an alternative to SYSOPER. The user must be a common user, the CREATE SESSION must be granted commonly, but the SYSOPER can be locally for the PDB we relocate.<\/p>\n<h3>In summary<\/h3>\n<p>To clone a remote PDB you can use a common or local user, with SYSOPER or CREATE PLUGGABLE DATABASE privilege. To relocate a PDB you need a common user with SYSOPER.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . When cloning a PDB from a remote CDB you need to define a database link to be used in the CREATE PLUGGABLE DATABASE &#8230; FROM &#8230;@&#8230; command. The documentation is not completely clear about the privileges required on the source for the user defined in the database link, so here are [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":10169,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[198],"tags":[656,220,64,96,209,66,223,978],"type_dbi":[],"class_list":["post-10168","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-management","tag-12-2","tag-cdb","tag-multitenant","tag-oracle","tag-oracle-12c","tag-pdb","tag-pluggable-databases","tag-relocate"],"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>Which privilege for CREATE PLUGGABLE DATABASE from DB LINK? - 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\/which-privilege-for-create-pluggable-database-from-db-link\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?\" \/>\n<meta property=\"og:description\" content=\"By Franck Pachot . When cloning a PDB from a remote CDB you need to define a database link to be used in the CREATE PLUGGABLE DATABASE &#8230; FROM &#8230;@&#8230; command. The documentation is not completely clear about the privileges required on the source for the user defined in the database link, so here are [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-29T16:59:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1257\" \/>\n\t<meta property=\"og:image:height\" content=\"192\" \/>\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=\"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\/which-privilege-for-create-pluggable-database-from-db-link\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?\",\"datePublished\":\"2017-05-29T16:59:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\"},\"wordCount\":525,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\",\"keywords\":[\"12.2\",\"CDB\",\"multitenant\",\"Oracle\",\"Oracle 12c\",\"PDB\",\"Pluggable Databases\",\"relocate\"],\"articleSection\":[\"Database management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\",\"name\":\"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\",\"datePublished\":\"2017-05-29T16:59:56+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png\",\"width\":1257,\"height\":192},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?\"}]},{\"@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":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK? - 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\/which-privilege-for-create-pluggable-database-from-db-link\/","og_locale":"en_US","og_type":"article","og_title":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?","og_description":"By Franck Pachot . When cloning a PDB from a remote CDB you need to define a database link to be used in the CREATE PLUGGABLE DATABASE &#8230; FROM &#8230;@&#8230; command. The documentation is not completely clear about the privileges required on the source for the user defined in the database link, so here are [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/","og_site_name":"dbi Blog","article_published_time":"2017-05-29T16:59:56+00:00","og_image":[{"width":1257,"height":192,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?","datePublished":"2017-05-29T16:59:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/"},"wordCount":525,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png","keywords":["12.2","CDB","multitenant","Oracle","Oracle 12c","PDB","Pluggable Databases","relocate"],"articleSection":["Database management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/","url":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/","name":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png","datePublished":"2017-05-29T16:59:56+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CapturePDBPrivsClone.png","width":1257,"height":192},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/which-privilege-for-create-pluggable-database-from-db-link\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Which privilege for CREATE PLUGGABLE DATABASE from DB LINK?"}]},{"@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\/10168","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=10168"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10168\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/10169"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10168"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}