{"id":13815,"date":"2020-03-26T22:56:41","date_gmt":"2020-03-26T21:56:41","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/"},"modified":"2020-03-26T22:56:41","modified_gmt":"2020-03-26T21:56:41","slug":"oracle-disables-your-multitenant-option-when-you-run-on-ec2","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/","title":{"rendered":"Oracle disables your multitenant option when you run on EC2"},"content":{"rendered":"<p>I have installed Oracle 19.6 on an EC2 for our <a href=\"https:\/\/www.dbi-services.com\/trainings\/oracle-multitenant-database-administration\/\" rel=\"noopener noreferrer\" target=\"_blank\">Multitenant Workshop<\/a> training. And of course, during the workshop we create a lot of PDBs. If you don&#8217;t have paid for the Enterprise Edition plus the Multitenant Option you can create at most 3 pluggable database. But with this option you can create up to 252 pluggable databases. Does it worth the price, which according to the <a href=\"https:\/\/www.oracle.com\/assets\/technology-price-list-070617.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">public price list<\/a> is USD 47,500 + 17,500 per processor, which means per-core because Oracle doesn&#8217;t count the core factor when your Intel processors are in AWS Cloud (according to the <a href=\"https:\/\/www.oracle.com\/assets\/cloud-licensing-070579.pdf\" rel=\"noopener noreferrer\" target=\"_blank\">Authorized Cloud Environments<\/a> paper)? Probably not because Oracle detects where you run and bridles some features depending whether you are on the Dark or the Light Side of the public cloud (according to their criteria of course).<br \/>\n<!--more--><br \/>\nAt one point I have 3 pluggable databases in my CDB:<\/p>\n<pre><code>\nSQL&gt; show pdbs\n   CON_ID     CON_NAME    OPEN MODE    RESTRICTED\n_________ ____________ ____________ _____________\n        2 PDB$SEED     READ ONLY    NO\n        3 CDB1PDB01    MOUNTED\n        4 CDB1PDB03    MOUNTED\n        5 CDB1PDB02    MOUNTED\n<\/code><\/pre>\n<p>I want to create a 4th one:<\/p>\n<pre><code>\nSQL&gt; create pluggable database CDB1PDB04 from CDB1PDB03;\n\ncreate pluggable database CDB1PDB04 from CDB1PDB03\n                          *\nERROR at line 1:\nORA-65010: maximum number of pluggable databases created\n<\/code><\/pre>\n<p>It fails. The maximum number of pluggable databases is defined by MAX_PDBS, but I defined nothing in my SPFILE:<\/p>\n<pre><code>\nSQL&gt; show spparameter max_pdbs\nSID NAME     TYPE    VALUE\n--- -------- ------- -----\n*   max_pdbs integer\n<\/code><\/pre>\n<p>I thought that the default was 4098 (which is incorrect anyway as you cannot create more than 4096) but it is actually 5 here:<\/p>\n<pre><code>\nSQL&gt; show parameter max_pdbs\nNAME     TYPE    VALUE\n-------- ------- -----\nmax_pdbs integer 5\n<\/code><\/pre>\n<p>Ok&#8230; this parameter is supposed to count the number of user pluggable databases (the ones with CON_ID&gt;2) and I have 3 of them here. The limit is 5 and I have an error mentioning that I&#8217;ve reached the limit. That&#8217;s not the first time I see <a href=\"https:\/\/www.dbi-services.com\/blog\/oracle-12cr2-max_pdbs\/\" rel=\"noopener noreferrer\" target=\"_blank\">wrong maths<\/a> with this parameter. But there&#8217;s worse as I cannot change it:<\/p>\n<pre><code>\nSQL&gt; alter system set max_pdbs=6;\n\nalter system set max_pdbs=6\n *\nERROR at line 1:\nORA-02097: parameter cannot be modified because specified value is invalid\nORA-65334: invalid number of PDBs specified\n<\/code><\/pre>\n<p>I can change it in the SPFILE but it doesn&#8217;t help me to create more pluggable databases:<\/p>\n<pre><code>\nSQL&gt; alter system set max_pdbs=200 scope=spfile;\n\nSystem altered.\n\nSQL&gt; startup force;\n\nTotal System Global Area   2147482744 bytes\nFixed Size                    9137272 bytes\nVariable Size               587202560 bytes\nDatabase Buffers           1543503872 bytes\nRedo Buffers                  7639040 bytes\nDatabase mounted.\nDatabase opened.\n\nSQL&gt; show parameter max_pdbs\nNAME     TYPE    VALUE\n-------- ------- -----\nmax_pdbs integer 200\n\nSQL&gt; create pluggable database CDB1PDB04 from CDB1PDB03;\n\ncreate pluggable database CDB1PDB04 from CDB1PDB03\n                          *\nERROR at line 1:\nORA-65010: maximum number of pluggable databases created\n<\/code><\/pre>\n<p>Something bridles me. There&#8217;s a MOS Note <a href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocContentDisplay?id=2328600.1\" rel=\"noopener noreferrer\" target=\"_blank\">ORA-65010 When Oracle Database Hosted on AWS Cloud (Doc ID 2328600.1)<\/a> about the same problem but that&#8217;s in 12.1.0.2 (before MAX_PDBS was introduced) which is supposed to be fixed in AUG 2017 PSU. But here I am 3 years later in 19.6 (the January 2020 Release Update for the latest version available on-premises).<\/p>\n<p>So, Oracle limits the number of pluggable databases when we are on a public cloud provider which is not the Oracle Public Cloud. This limitation is not documented in the <a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/19\/dblic\/Licensing-Information.html#GUID-0F9EB85D-4610-4EDF-89C2-4916A0E7AC87\" rel=\"noopener noreferrer\" target=\"_blank\">licensing documentation<\/a> which mentions 252 as the Enterprise Edition limit, and I see nothing about &#8220;Authorized Cloud Environments&#8221; limitations for this item. This, and the fact that it can come and go with Release Updates put customers at risk when running on AWS EC2: financial risk and availability risk. I think there are only two choices, on long term, when you want to run your database on a cloud: go to Oracle Cloud or leave for another Database.<\/p>\n<p>How does the Oracle instance know on which public cloud you run? All cloud platforms provide some metadata through HTTP api. I have straced all sendto() and recvfrom() system calls when starting the instance:<\/p>\n<pre><code>\nstrace -k -e trace=recvfrom,sendto -yy -s 1000 -f -o trace.trc sqlplus \/ as sysdba &lt;&lt;&lt;&#039;startup force&#039;\n<\/code><\/pre>\n<p>And I searched for Amazon and AWS here:<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.jpg\" alt=\"\" width=\"1024\" height=\"850\" class=\"aligncenter size-large wp-image-38535\" \/><\/a><\/p>\n<p>This is clear: the instance has a function to detect the cloud provider (kgcs_clouddb_provider_detect) when initializing the SGA in a multitenant architecture (kpdbInitSga) with the purpose of detecting non-oracle clouds (kscs_is_non_oracle_cloud). This queries the AWS metadata (documented on <a href=\"https:\/\/docs.aws.amazon.com\/AWSEC2\/latest\/UserGuide\/instancedata-data-retrieval.html\" rel=\"noopener noreferrer\" target=\"_blank\">Retrieving Instance Metadata<\/a>):<\/p>\n<pre><code>\n[oracle@ora-cdb-1 ~]$ curl http:\/\/169.254.169.254\/latest\/meta-data\/services\/domain\namazonaws.com\/\n<\/code><\/pre>\n<p>When Oracle software sees the name of the enemy in the domain name amazonaws.com, it sets an internal limit for the number of pluggable databases that overrides the MAX_PDBS setting. Ok, I don&#8217;t need this metadata and I&#8217;m root on EC2 so my simple workaround is to block this metadata API:<\/p>\n<pre><code>\n[root@ora-cdb-1 ~]# iptables -A OUTPUT -d 169.254.169.254  -j REJECT\n[root@ora-cdb-1 ~]# iptables -L\nChain OUTPUT (policy ACCEPT)\ntarget     prot opt source               destination\nREJECT     udp  --  anywhere             10.0.0.2             udp dpt:domain reject-with icmp-port-unreachable\nREJECT     all  --  anywhere             10.0.0.2             reject-with icmp-port-unreachable\n<\/code><\/pre>\n<p>Then restart the instance and it works: I can set or reset MAX_PDBS and create more pluggable databases.<\/p>\n<p>I can remove the rule<\/p>\n<pre><code>\n[root@ora-cdb-1 ~]# iptables -D OUTPUT -d 169.254.169.254  -j REJECT\n<\/code><\/pre>\n<p>If, for watever reason I want to revert back.<\/p>\n<p>Finally, because they had <a href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocContentDisplay?id=2538172.1\" rel=\"noopener noreferrer\" target=\"_blank\">many bugs<\/a> with the MAX_PDBS soft limit, there&#8217;s a parameter to disable it and this disables also the hard limit:<\/p>\n<pre><code>\nSQL&gt; alter system set \"_cdb_disable_pdb_limit\"=true scope=spfile;\nSystem altered.\n<\/code><\/pre>\n<p>Thanks to Mauricio Melnik for the heads-up on that:<\/p>\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\">\n<p lang=\"en\" dir=\"ltr\">MOS 2538172.1  _cdb_disable_pdb_limit=true &#8230;. maybe?<\/p>\n<p>&mdash; MM (@maurimelnik) <a href=\"https:\/\/twitter.com\/maurimelnik\/status\/1243298784764932097?ref_src=twsrc%5Etfw\">March 26, 2020<\/a><\/p><\/blockquote>\n<p><script async src=\"https:\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"><\/script><\/p>\n<p>However, with this parameter you cannot control anymore the maximum number of PDBs so don&#8217;t forget to monitor your AUX_COUNT in DBA_FEATURE_USAGE_STATISTICS. <\/p>\n<p>Here was my discovery when preparing the multitenant workshop lab environment. Note that given the current situation where everybody works from home when possible, we are ready to give this training full of hands-on exercises though Microsoft Teams and AWS EC2 virtual machines. Two days to be comfortable when moving to CDB architecture, which is what should be done this year when you plan to stay with Oracle Database for the future versions.<\/p>\n<h3>Update 27-MAR-2020<\/h3>\n<p>In order not to sound too negative here, this limit on AWS platforms has been removed in the past and this may be a bug re-introduced with the change from 1 to 3 PDBs in Standard Edition.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have installed Oracle 19.6 on an EC2 for our Multitenant Workshop training. And of course, during the workshop we create a lot of PDBs. If you don&#8217;t have paid for the Enterprise Edition plus the Multitenant Option you can create at most 3 pluggable database. But with this option you can create up to [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":13817,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[955,59],"tags":[220,1883,1884,64,96,875,66,223],"type_dbi":[],"class_list":["post-13815","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","category-oracle","tag-cdb","tag-ec2","tag-max_pdbs","tag-multitenant","tag-oracle","tag-oracle-multitenant","tag-pdb","tag-pluggable-databases"],"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>Oracle disables your multitenant option when you run on EC2 - 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\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle disables your multitenant option when you run on EC2\" \/>\n<meta property=\"og:description\" content=\"I have installed Oracle 19.6 on an EC2 for our Multitenant Workshop training. And of course, during the workshop we create a lot of PDBs. If you don&#8217;t have paid for the Enterprise Edition plus the Multitenant Option you can create at most 3 pluggable database. But with this option you can create up to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-26T21:56:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1121\" \/>\n\t<meta property=\"og:image:height\" content=\"931\" \/>\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=\"5 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\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Oracle disables your multitenant option when you run on EC2\",\"datePublished\":\"2020-03-26T21:56:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\"},\"wordCount\":799,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png\",\"keywords\":[\"CDB\",\"EC2\",\"max_pdbs\",\"multitenant\",\"Oracle\",\"Oracle Multitenant\",\"PDB\",\"Pluggable Databases\"],\"articleSection\":[\"Cloud\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\",\"name\":\"Oracle disables your multitenant option when you run on EC2 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png\",\"datePublished\":\"2020-03-26T21:56:41+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png\",\"width\":1121,\"height\":931},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle disables your multitenant option when you run on EC2\"}]},{\"@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":"Oracle disables your multitenant option when you run on EC2 - 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\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/","og_locale":"en_US","og_type":"article","og_title":"Oracle disables your multitenant option when you run on EC2","og_description":"I have installed Oracle 19.6 on an EC2 for our Multitenant Workshop training. And of course, during the workshop we create a lot of PDBs. If you don&#8217;t have paid for the Enterprise Edition plus the Multitenant Option you can create at most 3 pluggable database. But with this option you can create up to [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/","og_site_name":"dbi Blog","article_published_time":"2020-03-26T21:56:41+00:00","og_image":[{"width":1121,"height":931,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Oracle disables your multitenant option when you run on EC2","datePublished":"2020-03-26T21:56:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/"},"wordCount":799,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png","keywords":["CDB","EC2","max_pdbs","multitenant","Oracle","Oracle Multitenant","PDB","Pluggable Databases"],"articleSection":["Cloud","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/","url":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/","name":"Oracle disables your multitenant option when you run on EC2 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png","datePublished":"2020-03-26T21:56:41+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Annotation-2020-03-26-222846.png","width":1121,"height":931},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-disables-your-multitenant-option-when-you-run-on-ec2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Oracle disables your multitenant option when you run on EC2"}]},{"@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\/13815","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=13815"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/13815\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/13817"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=13815"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=13815"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=13815"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=13815"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}