{"id":11475,"date":"2018-07-24T10:57:55","date_gmt":"2018-07-24T08:57:55","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/"},"modified":"2018-07-24T10:57:55","modified_gmt":"2018-07-24T08:57:55","slug":"release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/","title":{"rendered":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nGood news, the latest Patchset for Oracle 12cR2 (which is not named patchset anymore, is actually called release 18c and numbered 18.0.0.0.0) is available for download on <a href=\"https:\/\/www.oracle.com\/technetwork\/database\/enterprise-edition\/downloads\/index.html\" target=\"_blank\" rel=\"noopener noreferrer\">OTN<\/a>. It is great because OTN download does not require access to Support and Software Updates. It is available to anybody under the Free Developer License Terms (basically development, testing, prototyping, and demonstrating for an application that is not in production and for non-commercial use). We all complained about the &#8216;Cloud First&#8217; strategy because we were are eager to download the latest version. But the positive aspect of it is that we have now on OTN a release that has been stabilized after a few release updates. In the past, only the first version of the latest release was available there. Now we have one with many bug fixed.<\/p>\n<p>Of course, I didn&#8217;t wait and I have tested 18c as soon as it was available on the Oracle Cloud thanks to the ACE Director program that provided me with some Cloud Credits. In this post, I&#8217;ll update my Cloud database to run it with the on-premises binary. Because that&#8217;s the big strength of Oracle: we can run the same software, 100% compatible, on the Cloud and on our own servers. There are some limitations in the features available, but technically it is the same software.<\/p>\n<h3>Oracle Cloud First<\/h3>\n<p>Here is my Cloud version of Oracle 18c installed on February (18.1) updated on April (18.2) and July (18.3):<\/p>\n<pre><code>\nSQLcl: Release 18.2 Production on Tue Jul 24 11:02:56 2018\n&nbsp;\nCopyright (c) 1982, 2018, Oracle.  All rights reserved.\n&nbsp;\nConnected to:\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\nVersion 18.3.0.0.0\n&nbsp;\nSQL&gt; host $ORACLE_HOME\/OPatch\/opatch lspatches\n28090523;Database Release Update : 18.3.0.0.180717 (28090523)\nOPatch succeeded.\n&nbsp;\nSQL&gt; select banner from v$version;\n&nbsp;\nBANNER\n--------------------------------------------------------------------------------\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\n&nbsp;\nSQL&gt; select banner_full from v$version;\n&nbsp;\nBANNER_FULL\n----------------------------------------------------------------------------------------------------\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\nVersion 18.3.0.0.0\n&nbsp;\nSQL&gt; select banner_legacy from v$version;\n&nbsp;\nBANNER_LEGACY\n--------------------------------------------------------------------------------\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\n&nbsp;\nSQL&gt; exec dbms_qopatch.get_sqlpatch_status;\n&nbsp;\nPatch Id : 27676517\n        Action : APPLY\n        Action Time : 18-APR-2018 20:44:50\n        Description : Database Release Update : 18.2.0.0.180417 (27676517)\n        Logfile : \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27676517\/22097537\/27676517_apply_CDB1_CDBROOT_2018Apr18_20_43_27.log\n        Status : SUCCESS\n&nbsp;\nPatch Id : 28090523\n        Action : APPLY\n        Action Time : 18-JUL-2018 11:38:20\n        Description : Database Release Update : 18.3.0.0.180717 (28090523)\n        Logfile : \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/28090523\/22329768\/28090523_apply_CDB1_CDBROOT_2018Jul18_11_36_38.log\n        Status : SUCCESS\n&nbsp;\nPL\/SQL procedure successfully completed.\n<\/code><\/pre>\n<h3>LINUX.X64_180000_db_home.zip<\/h3>\n<p>I have installed the on-premises 18c available on OTN. The good things with the new releases are:<\/p>\n<ul>\n<li>No need to extract installer files. Just unzip the Oracle Home and link the executable<\/li>\n<li>This Oracle Home image already includes the latest Release Updates<\/li>\n<\/ul>\n<pre><code>\nSQLcl: Release 18.2 Production on Tue Jul 24 11:02:56 2018\n&nbsp;\nCopyright (c) 1982, 2018, Oracle.  All rights reserved.\n&nbsp;\nConnected to:\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\nVersion 18.3.0.0.0\n&nbsp;\nSQL&gt; host $ORACLE_HOME\/OPatch\/opatch lspatches\n27908644;UPDATE 18.3 DATABASE CLIENT JDK IN ORACLE HOME TO JDK8U171\n27923415;OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)\n28090553;OCW RELEASE UPDATE 18.3.0.0.0 (28090553)\n28090523;Database Release Update : 18.3.0.0.180717 (28090523)\nOPatch succeeded.\n&nbsp;\n<\/code><\/pre>\n<p>We have 4 updates from July here for the following components:<\/p>\n<ul>\n<li>The Database (28090523)<\/li>\n<li>The Java in the Oracle Home, aka JDK (27908644)<\/li>\n<li>The Java in the database, aka OJVM (27923415)<\/li>\n<li>The clusterware component for the database to match the CRS, aka OCW (28090553)<\/li>\n<\/ul>\n<p>So, now we have an image of the Oracle Home which already contains all the latest updates&#8230; except one:<\/p>\n<pre><code>\n$ cat $ORACLE_HOME\/sqldeveloper\/sqldeveloper\/bin\/version.properties\n&nbsp;\nCOMPANY=Oracle\nPRODUCT=SQL Developer\nVERSION=17.30003410937f\nVER=17.3.2\nVER_FULL=17.3.2.341.0937\nBUILD_LABEL=341.0937\nBUILD_NUM=341.0937\nEDITION=\n<\/code><\/pre>\n<p>Unfortunately, that&#8217;s an old version of SQL Developer here, and with no SQLcl. Then just download this additional one and unzip it in the Oracle Home.<\/p>\n<h3>DataPatch<\/h3>\n<p>So, what happens when I open the database that I have created on 18.1 and patched with 18.2 and 18.3 RUs on the Oracle Cloud? There are two updates for the database (DBRU and OJVM). The DBRU is already there then DataPatch has only to apply the OJVM:<\/p>\n<pre><code>\n[oracle@VM183x dbhome_1]$ $ORACLE_HOME\/OPatch\/datapatch\nSQL Patching tool version 18.0.0.0.0 Production on Tue Jul 24 10:57:55 2018\nCopyright (c) 2012, 2018, Oracle.  All rights reserved.\n&nbsp;\nLog file for this invocation: \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/sqlpatch_11104_2018_07_24_10_57_5                             5\/sqlpatch_invocation.log\n&nbsp;\nConnecting to database...OK\nGathering database info...done\n&nbsp;\nNote:  Datapatch will only apply or rollback SQL fixes for PDBs\n       that are in an open state, no patches will be applied to closed PDBs.\n       Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation\n       (Doc ID 1585822.1)\n&nbsp;\nBootstrapping registry and package to current versions...done\nDetermining current state...done\n&nbsp;\nCurrent state of interim SQL patches:\nInterim patch 27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)):\n  Binary registry: Installed\n  PDB CDB$ROOT: Not installed\n  PDB PDB$SEED: Not installed\n  PDB PDB1: Not installed\n&nbsp;\nCurrent state of release update SQL patches:\n  Binary registry:\n    18.3.0.0.0 Release_Update 1806280943: Installed\n  PDB CDB$ROOT:\n    Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 18-JUL-18 11.38.20.321353 AM\n  PDB PDB$SEED:\n    Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 18-JUL-18 11.38.21.802495 AM\n  PDB PDB1:\n    Applied 18.3.0.0.0 Release_Update 1806280943 successfully on 18-JUL-18 11.38.23.230513 AM\n&nbsp;\nAdding patches to installation queue and performing prereq checks...done\nInstallation queue:\n  For the following PDBs: CDB$ROOT PDB$SEED PDB1\n    No interim patches need to be rolled back\n    No release update patches need to be installed\n    The following interim patches will be applied:\n      27923415 (OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415))\n&nbsp;\nInstalling patches...\nPatch installation complete.  Total patches installed: 3\n&nbsp;\nValidating logfiles...done\nPatch 27923415 apply (pdb CDB$ROOT): SUCCESS\n  logfile: \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27923415\/22239273\/27923415_apply_CDB1_CDBROOT_2018Jul24_10_58_08.                log (no errors)\nPatch 27923415 apply (pdb PDB$SEED): SUCCESS\n  logfile: \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27923415\/22239273\/27923415_apply_CDB1_PDBSEED_2018Jul24_10_58_56.                log (no errors)\nPatch 27923415 apply (pdb PDB1): SUCCESS\n  logfile: \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27923415\/22239273\/27923415_apply_CDB1_PDB1_2018Jul24_10_58_56.log                 (no errors)\nSQL Patching tool complete on Tue Jul 24 10:59:21 2018\n<\/code><\/pre>\n<p>Now here is the history of patches:<\/p>\n<pre><code>\nSQL&gt; exec dbms_qopatch.get_sqlpatch_status;\n&nbsp;\nPatch Id : 27676517\n        Action : APPLY\n        Action Time : 18-APR-2018 20:44:50\n        Description : Database Release Update : 18.2.0.0.180417 (27676517)\n        Logfile : \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27676517\/22097537\/27676517_apply_CDB1_CDBROOT_2018Apr18_20_43_27.log\n        Status : SUCCESS\n&nbsp;\nPatch Id : 28090523\n        Action : APPLY\n        Action Time : 18-JUL-2018 11:38:20\n        Description : Database Release Update : 18.3.0.0.180717 (28090523)\n        Logfile : \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/28090523\/22329768\/28090523_apply_CDB1_CDBROOT_2018Jul18_11_36_38.log\n        Status : SUCCESS\n&nbsp;\nPatch Id : 27923415\n        Action : APPLY\n        Action Time : 24-JUL-2018 10:59:19\n        Description : OJVM RELEASE UPDATE: 18.3.0.0.180717 (27923415)\n        Logfile : \/u01\/app\/oracle\/cfgtoollogs\/sqlpatch\/27923415\/22239273\/27923415_apply_CDB1_CDBROOT_2018Jul24_10_58_08.log\n        Status : SUCCESS\n&nbsp;\nPL\/SQL procedure successfully completed.\n<\/code><\/pre>\n<p>This is all good. Despite the different release schedules, the level of software is exactly the same. And we can start on-premises on a release with low regression risk (18c like a patchset) but many fixes (several release updates). For the moment only the Linux port is there. The other platforms should come this summer.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . Good news, the latest Patchset for Oracle 12cR2 (which is not named patchset anymore, is actually called release 18c and numbered 18.0.0.0.0) is available for download on OTN. It is great because OTN download does not require access to Support and Software Updates. It is available to anybody under the Free [&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":[59],"tags":[61,96],"type_dbi":[],"class_list":["post-11475","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-18c","tag-oracle"],"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>Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries - 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\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries\" \/>\n<meta property=\"og:description\" content=\"By Franck Pachot . Good news, the latest Patchset for Oracle 12cR2 (which is not named patchset anymore, is actually called release 18c and numbered 18.0.0.0.0) is available for download on OTN. It is great because OTN download does not require access to Support and Software Updates. It is available to anybody under the Free [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-24T08:57:55+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\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries\",\"datePublished\":\"2018-07-24T08:57:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\"},\"wordCount\":489,\"commentCount\":0,\"keywords\":[\"18c\",\"Oracle\"],\"articleSection\":[\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\",\"name\":\"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2018-07-24T08:57:55+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries\"}]},{\"@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":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries - 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\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/","og_locale":"en_US","og_type":"article","og_title":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries","og_description":"By Franck Pachot . Good news, the latest Patchset for Oracle 12cR2 (which is not named patchset anymore, is actually called release 18c and numbered 18.0.0.0.0) is available for download on OTN. It is great because OTN download does not require access to Support and Software Updates. It is available to anybody under the Free [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/","og_site_name":"dbi Blog","article_published_time":"2018-07-24T08:57:55+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\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries","datePublished":"2018-07-24T08:57:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/"},"wordCount":489,"commentCount":0,"keywords":["18c","Oracle"],"articleSection":["Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/","url":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/","name":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2018-07-24T08:57:55+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/release-18-0-0-0-0-version-18-3-0-0-0-on-premises-binaries\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Release 18.0.0.0.0 Version 18.3.0.0.0 On-Premises binaries"}]},{"@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\/11475","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=11475"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11475\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11475"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11475"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11475"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11475"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}