{"id":16695,"date":"2021-09-20T07:09:41","date_gmt":"2021-09-20T05:09:41","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/"},"modified":"2023-01-06T11:36:18","modified_gmt":"2023-01-06T10:36:18","slug":"magic-upgrade-to-21c-with-replay-upgrade-feature","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/","title":{"rendered":"Magic Upgrade to 21c with Replay Upgrade Feature"},"content":{"rendered":"<p>Last week I did some upgrade tests from 19c to 21c. The plan was to copy a 19c PDB to a CDB 21c using Online Clone and then upgrade it to 21c. I have done this many times for 19c as well and just wanted to verify that it still worked with 21c.<\/p>\n<p><strong>Clone PDB to 21c CDB<\/strong><br \/>\nSince it is a LAB, I gave the user SYSTEM in the CDB19c the appropriate duplicate permissions and then I created from the CDB 21c the appropriate DB link for the clone<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">SQL*Plus: Release 19.0.0.0.0 - Production on Fri Sep 17 13:17:06 2021\nVersion 19.3.0.0.0\nCopyright (c) 1982, 2019, Oracle.&nbsp; All rights reserved.\nConnected to:\nOracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production\nVersion 19.3.0.0.0\nSQL&gt; grant sysoper, create pluggable database to system container=all;\nGrant succeeded.\n-- create db link for clone\noracle@ora21:\/home\/oracle\/ [cdb01] sqh\nSQL*Plus: Release 21.0.0.0.0 - Production on Fri Sep 17 13:18:31 2021\nVersion 21.3.0.0.0\nCopyright (c) 1982, 2021, Oracle.&nbsp; All rights reserved.\nConnected to:\nOracle Database 21c Enterprise Edition Release 21.0.0.0.0 - Production\nVersion 21.3.0.0.0\nSQL&gt; create database link cdb19c2 connect to system identified by manager using 'cdb19c2';\nDatabase link created.<\/pre>\n<p class=\"brush: sql; gutter: true; first-line: 1\">Now I clone the 19c pdb into the 21c CDB over the dblink<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">SQL&gt; create pluggable database pdb19c_copy from pdb19c@cdb19c2;\nPluggable database created.<\/pre>\n<p><strong>Upgrade PDB to 21c<\/strong><br \/>\nSo the next step is to open the PDB and afterwards execute the upgrade script for upgrading the catalog of the pdb to 21c.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">SQL&gt; alter pluggable database pdb19c_copy open;<\/pre>\n<p>And now with Oracle 21c the magic part happens, or i would say, that a autonoumous Feature found the way to the on prem word.<br \/>\nAfter a few seconds the opening of the PDB was still not finished, but no error was displayed on the prompt, I looked into the alert log of the database to see what exactly the problem was. When I looked through the entries, I was quite surprised to see that my PDB was in the middle of an upgrade to 21c without Oracle giving me a choice.<br \/>\nA look on the pdb state confirmed what oracle tells me in the alert.log<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">SQL&gt; show pdbs<\/pre>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">CON_ID     CON_NAME                       OPEN MODE  RESTRICTED\n---------- ------------------------------ ---------- ----------\n2          PDB$SEED                       READ ONLY NO\n3          PDB19c_COPY                    MIGRATE   YES<\/pre>\n<p>Here you can see a very interesting snipped of the alert.log<\/p>\n<pre class=\"brush: bash; gutter: false; first-line: 1\">PDB19C_COPY(6):Starting Upgrade on PDB Open\n2021-09-17T13:21:09.305411+02:00\nPDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG begin install '19.0.0.0.0' on error capture\nPDB19C_COPY(6):ORA-65229 signalled during: alter pluggable database application APP$CDB$CATALOG begin install '19.0.0.0.0' on error capture...\nPDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG end install '19.0.0.0.0'\nPDB19C_COPY(6):Completed: alter pluggable database application APP$CDB$CATALOG end install '19.0.0.0.0'\nPDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG begin upgrade\n'19.0.0.0.0' to '21.0.0.0.0.partial' on error capture\nPDB19C_COPY(6):Completed: alter pluggable database application APP$CDB$CATALOG begin upgrade\n'19.0.0.0.0' to '21.0.0.0.0.partial' on error capture<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\">On the first line you can see, that oracle has started to upgrade my pdb immediate after i issued the open command.<br \/>\nThe next lines are very interesting. If you look at the statements beginning with &#8220;alter pluggable database application &#8230; &#8221; you can see, that oracle uses Multitenant application container functionality to upgrade the pdb to the new version. It seams, that they manage different versions of the cdb catalog as applications.<\/p>\n<p class=\"brush: bash; gutter: false; first-line: 1\">With the next command oracle tries to upgrade the application <em>APP$CDB$CATALOG&nbsp;<\/em>to 19.0.0.0.0 what&#8217;s in fact the data dictionary version. This gives an error. I can&#8217;t confirm it, but in context of application containers the begin install command always install the newest application version in the pdb. In this context i would expect, that oracle tries to apply the newest 19c patches to my pdb but this failed for some reason.<\/p>\n<pre class=\"brush: bash; gutter: false; first-line: 1\">DB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG begin install '19.0.0.0.0' on error capture \nPDB19C_COPY(6):ORA-65229 signalled during: alter pluggable database application APP$CDB$CATALOG begin install '19.0.0.0.0' on error capture...<\/pre>\n<p>Then the next stage is upgrade of the catalog from version 19.0.0.0.0 to 21.0.0.0.0.partial. The syntax is exactly the same if you upgrade an application pdb to a new version.<\/p>\n<pre class=\"brush: bash; gutter: false; first-line: 1\">PDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG begin upgrade \n'19.0.0.0.0' to '21.0.0.0.0.partial' on error capture \nPDB19C_COPY(6):Completed: alter pluggable database application APP$CDB$CATALOG begin upgrade '19.0.0.0.0' to '21.0.0.0.0.partial' on error capture<\/pre>\n<p>And in the last step oracle performs the upgrade from the version 21.0.0.0.0.partial to 21.0.0.0.0. I have no idea why this additional step to 21.0.0.0.0.partial is necessary.<\/p>\n<pre class=\"brush: bash; gutter: false; first-line: 1\">PDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG begin upgrade '21.0.0.0.0.partial' to '21.0.0.0.0' on error capture\nPDB19C_COPY(6):Completed: alter pluggable database application APP$CDB$CATALOG begin upgrade '21.0.0.0.0.partial' to '21.0.0.0.0' on error capture<\/pre>\n<p>Finally the Upgrade of the Application APP$CDB$CATALOG is done and oracle open the pdb with the new version 21c<\/p>\n<pre class=\"brush: bash; gutter: false; first-line: 1\">PDB19C_COPY(6):alter pluggable database application APP$CDB$CATALOG end upgrade\nPluggable database PDB19C_COPY opened read write<\/pre>\n<p class=\"brush: bash; gutter: false; first-line: 1\"><strong>Reverse Engineering<\/strong><br \/>\nTo see if my assumptions are correct, we can query the most important app container views in the CDB and the PDB and see what is in there.<br \/>\nLet&#8217;s check the applications that are registered in the cdb$root<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">SQL&gt; select app_name, app_id, app_version, app_capture_module from dba_applications;\n\nAPP_NAME                           APP_ID APP_VERSION                    APP_CAPTURE_MODULE\n------------------------------ ---------- ------------------------------ ----------------------------------------------------------------\nAPP$CDB$SYSTEM                          2 1.0                            catcon(pid=26657)\nAPP$CDB$PDBONLY$NCDBTOPDB              21 1.0                            catcon(pid=26657)\nAPP$CDB$CATALOG                4294967293 21.0.0.0.0                     catcon(pid=24698)\nAPP$CDB$CATALOG                4294967292 21.0.0.0.0                     catcon(pid=8832)\nAPP$CDB$CATALOG                4294967291 21.0.0.0.0                     catcon(pid=1120)<\/pre>\n<p class=\"brush: sql; gutter: true; first-line: 1\">We can see that we have an application <em>APP$CDB$CATALOG <\/em>that holds the upgrade scripts to upgrade a pdb to 21c and also we have a application<em> APP$CDB$PDBONLY$NCDBTOPDB&nbsp;<\/em>which is responsible auto upgrading a non cdb to 21c and additionally including the scripts for the conversion from noncdb to pdb<br \/>\nAnd if we have a look at the app versions, we can see, that oracle stores the catalog upgrade scripts from 12.2 onwards. This allows to auto upgrade the pdb to 21c for all versions beginning with 12.2<\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">SQL&gt; select app_name, app_version from dba_app_versions;\n\nAPP_NAME                                 APP_VERSION\n---------------------------------------- ------------------------------\nAPP$CDB$SYSTEM                           1.0\nAPP$CDB$PDBONLY$NCDBTOPDB                1.0.upgmode\nAPP$CDB$PDBONLY$NCDBTOPDB                1.0\nAPP$CDB$CATALOG                          12.2.0.1.0\nAPP$CDB$CATALOG                          21.0.0.0.0.partial\nAPP$CDB$CATALOG                          21.0.0.0.0\nAPP$CDB$CATALOG                          18.0.0.0.0\nAPP$CDB$CATALOG                          21.0.0.0.0.partial\nAPP$CDB$CATALOG                          21.0.0.0.0\nAPP$CDB$CATALOG                          19.0.0.0.0\nAPP$CDB$CATALOG                          21.0.0.0.0.partial\nAPP$CDB$CATALOG                          21.0.0.0.0<\/pre>\n<p><strong>Replay Upgrade Feature<br \/>\n<\/strong>To learn a bit more about what exactly Oracle is doing here, I talked to Mike Dietrich. He confirmed my experience and told me that the feature implemented with 21c is called &#8220;Replay Upgrade&#8221;. The process to upgrade a PDB is stored in the CDB from 21c on and as soon as a PDB with a lower version is opened, this recorded process is automatically replayed to upgrade the PDB. This new feature is even rudimentarily documented <a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/upgrd\/adopting-non-cdb-pbs-using-capture-upgrade.html#GUID-77BA4A1D-447F-46FB-B3EE-C58B8546FEB0\">here.<\/a><br \/>\nA big disadvantage with this automatic upgrade process is that no single upgrade log is created for it. In my lab, which consists of an empty PDB, it worked without problems, but for real databases, this is not recommended, since no analysis can be done in case of an error. Also, the replay upgrade does not update the Timezone file to the latest version. This must be done manually afterwards. This was also confirmed by Mike Dietrich and therefore for an upgrade you should always work with the &#8220;autoupgrade tool&#8221;, which is officially recommended by Oracle.<br \/>\nBased on the documentation, the replay feature in the CDB can also be disabled. I would recommend this, because you have back the full control over upgrades afterwards.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">ALTER DATABASE UPGRADE SYNC OFF<\/pre>\n<p>To be complete, the feature can be reactivated with the following command.<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">ALTER DATABASE UPGRADE SYNC ON<\/pre>\n<p><strong>Container Compatibility<br \/>\n<\/strong>The Replay Upgrade feature only applies if exactly the same components are installed in the Source CDB and the Target CDB. If this is not the case, the PDB clone cannot be created at all and terminates with an error.<strong><br \/>\n<\/strong><\/p>\n<pre class=\"brush: sql; gutter: false; first-line: 1\">SQL&gt; create pluggable database pdb19_copy from pdb19@cdb19c;\ncreate pluggable database pdb19_copy from pdb19@cdb19c\n*\nERROR at line 1:\nORA-65346: The PDB version is lower and components (APS, CONTEXT, DV, OLS,\nORDIM, SDO, XOQ) are missing in CDB.<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Last week I did some upgrade tests from 19c to 21c. The plan was to copy a 19c PDB to a CDB 21c using Online Clone and then upgrade it to 21c. I have done this many times for 19c as well and just wanted to verify that it still worked with 21c. Clone PDB [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[220,137,875,219],"type_dbi":[],"class_list":["post-16695","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","tag-cdb","tag-oracle-21c","tag-oracle-multitenant","tag-upgrade"],"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>Magic Upgrade to 21c with Replay Upgrade Feature - 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\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magic Upgrade to 21c with Replay Upgrade Feature\" \/>\n<meta property=\"og:description\" content=\"Last week I did some upgrade tests from 19c to 21c. The plan was to copy a 19c PDB to a CDB 21c using Online Clone and then upgrade it to 21c. I have done this many times for 19c as well and just wanted to verify that it still worked with 21c. Clone PDB [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-20T05:09:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-06T10:36:18+00:00\" \/>\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=\"6 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\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Magic Upgrade to 21c with Replay Upgrade Feature\",\"datePublished\":\"2021-09-20T05:09:41+00:00\",\"dateModified\":\"2023-01-06T10:36:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\"},\"wordCount\":873,\"commentCount\":0,\"keywords\":[\"CDB\",\"Oracle 21C\",\"Oracle Multitenant\",\"Upgrade\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\",\"name\":\"Magic Upgrade to 21c with Replay Upgrade Feature - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2021-09-20T05:09:41+00:00\",\"dateModified\":\"2023-01-06T10:36:18+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magic Upgrade to 21c with Replay Upgrade Feature\"}]},{\"@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":"Magic Upgrade to 21c with Replay Upgrade Feature - 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\/magic-upgrade-to-21c-with-replay-upgrade-feature\/","og_locale":"en_US","og_type":"article","og_title":"Magic Upgrade to 21c with Replay Upgrade Feature","og_description":"Last week I did some upgrade tests from 19c to 21c. The plan was to copy a 19c PDB to a CDB 21c using Online Clone and then upgrade it to 21c. I have done this many times for 19c as well and just wanted to verify that it still worked with 21c. Clone PDB [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/","og_site_name":"dbi Blog","article_published_time":"2021-09-20T05:09:41+00:00","article_modified_time":"2023-01-06T10:36:18+00:00","author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Magic Upgrade to 21c with Replay Upgrade Feature","datePublished":"2021-09-20T05:09:41+00:00","dateModified":"2023-01-06T10:36:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/"},"wordCount":873,"commentCount":0,"keywords":["CDB","Oracle 21C","Oracle Multitenant","Upgrade"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/","url":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/","name":"Magic Upgrade to 21c with Replay Upgrade Feature - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2021-09-20T05:09:41+00:00","dateModified":"2023-01-06T10:36:18+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/magic-upgrade-to-21c-with-replay-upgrade-feature\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magic Upgrade to 21c with Replay Upgrade Feature"}]},{"@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\/16695","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=16695"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/16695\/revisions"}],"predecessor-version":[{"id":21462,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/16695\/revisions\/21462"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=16695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=16695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=16695"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=16695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}