{"id":11259,"date":"2018-05-15T21:24:35","date_gmt":"2018-05-15T19:24:35","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/"},"modified":"2018-05-15T21:24:35","modified_gmt":"2018-05-15T19:24:35","slug":"12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/","title":{"rendered":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nMike Dietrich has blogged recently about <a href=\"https:\/\/mikedietrichde.com\/upuserxt-lst-lists-oracle-supplied-user-schemas\" target=\"_blank\" rel=\"noopener noreferrer\">upuserxt.lst<\/a> and <a href=\"https:\/\/mikedietrichde.com\/upobjxt-lst-lists-oracle-supplied-objects-and-users\" target=\"_blank\" rel=\"noopener noreferrer\">upobjxt.lst<\/a> and how to query them with external table. The first time I&#8217;ve seen those &#8216;.lst&#8217; files, the default extension for sqlplus spool files, I wondered whether they were provided in ?\/rdbms\/admin on purpose, or if they were just some leftovers from some tests Oracle did before packaging the Oracle Home. Finally, I realized that they were there on purpose and that those &#8216;.lst&#8217; are important files when upgrading to 12c.<br \/>\n<!--more--><br \/>\nI&#8217;ll look at an 18c Oracle Home (\/rdbms\/admin) in the Oracle Cloud but that applies to all 12c (and 18c is a 12cR2 patchset). One of the most important little feature of 12c is the tagging of Oracle Supplied objects and users. Before 12c it was a nightmare to distinguish system users from application ones. I detailed that in a <a href=\"https:\/\/www.dbi-services.com\/blog\/oracle-system-schemas-vs-created-users\/\" target=\"_blank\" rel=\"noopener noreferrer\">previous post<\/a>.<\/p>\n<h3>At database creation: _oracle_script<\/h3>\n<p>In a newly created 12c database, all the objects and users belonging to the system are flagged with ORACLE_MAINTAINED=Y<\/p>\n<p>Here is an example listing system users and roles:<\/p>\n<pre><code>\nSQL&gt; select listagg(username,',' on overflow truncate) within group (order by username) from dba_users where oracle_maintained='Y';LISTAGG(USERNAME,','ONOVERFLOWTRUNCATE)WITHINGROUP(ORDERBYUSERNAME)                                      \n&nbsp; \nANONYMOUS,APPQOSSYS,AUDSYS,CTXSYS,DBSFWUSER,DBSNMP,DIP,DVF,DVSYS,GGSYS,GSMADMIN_INTERNAL,GSMCATUSER,GSMUSER,LBACSYS,MDDATA,MDSYS,OJVMSYS,OLAPSYS,ORACLE_OCM,ORDDATA,ORDPLUGINS,ORDSYS,OUTLN,REMOTE_SCHEDULER_AGENT,SI_INFORMTN_SCHEMA,SYS,SYS$UMF,SYSBACKUP,SYSDG,SYSKM,SYSRAC,SYSTEM,WMSYS,XDB,XS$NULL\n&nbsp;\nSQL&gt; select listagg(role,',' on overflow truncate) within group (order by role) from dba_roles where oracle_maintained='Y';\nLISTAGG(ROLE,','ONOVERFLOWTRUNCATE)WITHINGROUP(ORDERBYROLE)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n&nbsp;\nADM_PARALLEL_EXECUTE_TASK,APPLICATION_TRACE_VIEWER,AQ_ADMINISTRATOR_ROLE,AQ_USER_ROLE,AUDIT_ADMIN,AUDIT_VIEWER,AUTHENTICATEDUSER,CAPTURE_ADMIN,CDB_DBA,CONNECT,CTXAPP,DATAPATCH_ROLE,DATAPUMP_EXP_FULL_DATABASE,DATAPUMP_IMP_FULL_DATABASE,DBA,DBFS_ROLE,DBJAVASCRIPT,DBMS_MDX_INTERNAL,DV_ACCTMGR,DV_ADMIN,DV_AUDIT_CLEANUP,DV_DATAPUMP_NETWORK_LINK,DV_GOLDENGATE_ADMIN,DV_GOLDENGATE_REDO_ACCESS,DV_MONITOR,DV_OWNER,DV_PATCH_ADMIN,DV_POLICY_OWNER,DV_PUBLIC,DV_REALM_OWNER,DV_REALM_RESOURCE,DV_SECANALYST,DV_STREAMS_ADMIN,DV_XSTREAM_ADMIN,EJBCLIENT,EM_EXPRESS_ALL,EM_EXPRESS_BASIC,EXECUTE_CATALOG_ROLE,EXP_FULL_DATABASE,GATHER_SYSTEM_STATISTICS,GDS_CATALOG_SELECT,GGSYS_ROLE,GLOBAL_AQ_USER_ROLE,GSMADMIN_ROLE,GSMUSER_ROLE,GSM_POOLADMIN_ROLE,HS_ADMIN_EXECUTE_ROLE,HS_ADMIN_ROLE,HS_ADMIN_SELECT_ROLE,IMP_FULL_DATABASE,JAVADEBUGPRIV,JAVAIDPRIV,JAVASYSPRIV,JAVAUSERPRIV,JAVA_ADMIN,JMXSERVER,LBAC_DBA,LOGSTDBY_ADMINISTRATOR,OEM_ADVISOR,OEM_MONITOR,OLAP_DBA,OLAP_USER,OLAP_XS_ADMIN,OPTIMIZER_PROCESSING_RATE,ORDADMIN,PDB_DBA,PROVISIONER,RDFCTX_ADMIN,RECOVERY_CATALOG_OWNER,RECOVERY_CATALOG_OWNER_VPD,RECOVERY_CATALOG_USER,RESOURCE,SCHEDULER_ADMIN,SELECT_CATALOG_ROLE,SODA_APP,SYSUMF_ROLE,WM_ADMIN_ROLE,XDBADMIN,XDB_SET_INVOKER,XDB_WEBSERVICES,XDB_WEBSERVICES_OVER_HTTP,XDB_WEBSERVICES_WITH_PUBLIC,XS_CACHE_ADMIN,XS_CONNECT,XS_NAMESPACE_ADMIN,XS_SESSION_ADMIN\n<\/code><\/pre>\n<p>And here is an exemple listing the owners of system objects flagged with ORACLE_MAINTAINED=Y<\/p>\n<pre><code>\nSQL&gt; select listagg(num||' '||owner,',' on overflow truncate) within group (order by num) from (select owner,count(*) num from dba_objects where oracle_maintained='Y' group by owner);LISTAGG(NUM||''||OWNER,','ONOVERFLOWTRUNCATE)WITHINGROUP(ORDERBYNUM)                                                                                                                                                                                                                               \n&nbsp;\n6 APPQOSSYS,8 DBSFWUSER,8 ORACLE_OCM,8 SI_INFORMTN_SCHEMA,10 ORDPLUGINS,10 OUTLN,13 REMOTE_SCHEDULER_AGENT,22 DVF,24 OJVMSYS,25 OLAPSYS,35 AUDSYS,55 DBSNMP,209 GSMADMIN_INTERNAL,239 LBACSYS,292 ORDDATA,398 DVSYS,399 WMSYS,412 CTXSYS,466 SYSTEM,1029 XDB,2574 MDSYS,3171 ORDSYS,12173 PUBLIC,51069 SYS\n<\/code><\/pre>\n<p>How this is done? That&#8217;s easy. All system objects are created by Oracle scripts, such as those called by catalog.sql and catproc.sql during database creation. Those scripts set &#8220;_oracle_script&#8221;=true before running the DDL and all object created while &#8220;_oracle_script&#8221;=true is flagged as Oracle Maintained.<\/p>\n<p>If, in a lab (not in prod), you create your own object in the same way, they will also be flagged as Oracle Maintained:<\/p>\n<pre><code>\nSQL&gt; connect \/ as sysdba\nConnected.\nSQL&gt; alter session set \"_oracle_script\"=true;\nSession altered.\n&nbsp;\nSQL&gt; create user FRANCK identified by myself;\nUser FRANCK created.\nSQL&gt; alter user FRANCK quota unlimited on users;\nUser FRANCK altered.\n&nbsp;\nSQL&gt; create table FRANCK.DEMO(n primary key) as select 1 from dual;\nTable FRANCK.DEMO created.\nSQL&gt; alter session set \"_oracle_script\"=false;\nSession altered.\n&nbsp;\nSQL&gt; select username,oracle_maintained from dba_users where username='FRANCK';\n&nbsp;\nUSERNAME   ORACLE_MAINTAINED\n--------   -----------------\nFRANCK     Y\nSQL&gt; select owner,object_name,object_type,oracle_maintained from dba_objects where owner='FRANCK';\n&nbsp;\nOWNER    OBJECT_NAME   OBJECT_TYPE   ORACLE_MAINTAINED\n------   ----          -----         -\nFRANCK   DEMO          TABLE         Y\nFRANCK   SYS_C007409   INDEX         Y\n<\/code><\/pre>\n<p>So, this one is easy. Database creation runs with &#8220;_oracle_script&#8221;=true and objects and users created when this parameter is set to true are flagged as Oracle Supplied objects.<\/p>\n<h3>And during upgrades?<\/h3>\n<p>When you upgrade from 11g to 12c you don&#8217;t have this Oracle Maintained information. The catupgrd runs with &#8220;_oracle_script&#8221;=true but this script does not create all objects. However the upgraded database has all system objects flagged as Oracle Maintained. This is where upuserxt.lst upobjxt.lst are used.<\/p>\n<p>When Oracle developers build a new Oracle Home to be shipped, they create a database (including all options I suppose) and then run the utlupox.sql script. This script will list all Oracle Maintained users and objects, just relying on the flag that has been set during creation, and spool to the upuserxt.lst upobjxt.lst files. And those files will be shipped in the Oracle Home (all that under \/rdbms\/admin).<\/p>\n<p>These .lst files will be used when upgrading from pre-12c in order to set the flags for Oracle Maintained objects. The external tables SYS.USERXT on upuserxt.lst and SYS.OBJXT on upobjxt.lst are created by catupcox.sql and, finally, those tables are read by catuposb.sql to set Oracle Maintained in USER$ and OBJ$. The catuposb.sql is a bit more complex that that because there are objects that can have different name when a database is created. <\/p>\n<p>Note that this information about Oracle Maintained objects, in addition to being very useful for us, is crucial when you further convert the non-CDB to a PDB because those will become metadata links.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . Mike Dietrich has blogged recently about upuserxt.lst and upobjxt.lst and how to query them with external table. The first time I&#8217;ve seen those &#8216;.lst&#8217; files, the default extension for sqlplus spool files, I wondered whether they were provided in ?\/rdbms\/admin on purpose, or if they were just some leftovers from some [&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":[96,974],"type_dbi":[],"class_list":["post-11259","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-oracle","tag-oracle12c"],"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>12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users - 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\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users\" \/>\n<meta property=\"og:description\" content=\"By Franck Pachot . Mike Dietrich has blogged recently about upuserxt.lst and upobjxt.lst and how to query them with external table. The first time I&#8217;ve seen those &#8216;.lst&#8217; files, the default extension for sqlplus spool files, I wondered whether they were provided in ?\/rdbms\/admin on purpose, or if they were just some leftovers from some [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-15T19:24:35+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=\"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\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users\",\"datePublished\":\"2018-05-15T19:24:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\"},\"wordCount\":556,\"commentCount\":0,\"keywords\":[\"Oracle\",\"Oracle12c\"],\"articleSection\":[\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\",\"name\":\"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2018-05-15T19:24:35+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users\"}]},{\"@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":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users - 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\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/","og_locale":"en_US","og_type":"article","og_title":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users","og_description":"By Franck Pachot . Mike Dietrich has blogged recently about upuserxt.lst and upobjxt.lst and how to query them with external table. The first time I&#8217;ve seen those &#8216;.lst&#8217; files, the default extension for sqlplus spool files, I wondered whether they were provided in ?\/rdbms\/admin on purpose, or if they were just some leftovers from some [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/","og_site_name":"dbi Blog","article_published_time":"2018-05-15T19:24:35+00:00","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\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users","datePublished":"2018-05-15T19:24:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/"},"wordCount":556,"commentCount":0,"keywords":["Oracle","Oracle12c"],"articleSection":["Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/","url":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/","name":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2018-05-15T19:24:35+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/12c-upuserxt-lst-upobjxt-lst-oracle-maintained-objectsusers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"12c upuserxt.lst, upobjxt.lst &amp; Oracle Maintained objects\/users"}]},{"@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\/11259","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=11259"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11259\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11259"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11259"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11259"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11259"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}