{"id":10372,"date":"2017-07-20T15:44:59","date_gmt":"2017-07-20T13:44:59","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/"},"modified":"2017-07-20T15:44:59","modified_gmt":"2017-07-20T13:44:59","slug":"oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/","title":{"rendered":"OUD 11.1.2.3 &#8211; What are the minimum privileges for administering connect strings in OUD?"},"content":{"rendered":"<h2>By William Sescu<\/h2>\n<p>[vc_row][vc_column width=&#8221;1\/1&#8243;][vc_column_text]Security in OUD plays a very important role. Keeping your patch level up to date is just one of those topics, like explained in my recent blog.<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-patch-25840309-oud-bundle-patch-11-1-2-3-170718\/\">https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-patch-25840309-oud-bundle-patch-11-1-2-3-170718\/<\/a><\/p>\n<p>Another one are privileges. You don&#8217;t need to do all of your work with the cn=Directory Manager. The cn=Directory Manager is the most powerful user in an Oracle Unified Directory. You can see it as the root user. However, for just managing Connect strings via the netmgr it is kinda oversized.<br \/>\nOK. You could create another root user in cn=Root DNs,cn=config with less privileges, but this would have the disadvantage that it is not replicated.<\/p>\n<p>I would just like to have an user, e.g. cn=oud,ou=people,dc=dbi,dc=com which I can use only for creating\/deleting TNS Connect strings. But what are the minimum privileges for doing this job?<\/p>\n<p>First of all, we need to create the user. Specifying the Common Name, the Lastname and the password is enough.<\/p>\n<p>[\/vc_column_text][image_with_animation image_url=&#8221;17712&#8243; animation=&#8221;Fade In&#8221; img_link_target=&#8221;_self&#8221;][vc_column_text]If we try now to add a new connect string via the netmgr, we will get immediately the famous &#8220;TNS-04411: Directory service: permission denied&#8221; error.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">...\nat java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)\nat java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)\nat java.awt.EventDispatchThread.run(EventDispatchThread.java:82)\noracle.net.common.dataStore.DataStoreException: error writing ServiceAlias to: LDAPDataStore [svr: dbidg01:1389, type: OID, ctxt: cn=OracleContext,dc=dbi,dc=com, home: \/u01\/app\/oracle\/product\/12.2.0\/dbhome_1]\noriginal exception message: TNS-04411: Directory service: permission denied\n  caused by: oracle.net.config.DirectoryServiceException: TNS-04411: Directory service: permission denied\n  caused by: oracle.net.ldap.NNFLException\noriginal stack trace: oracle.net.config.ServiceAliasException: TNS-04411: Directory service: permission denied\n  caused by: oracle.net.config.DirectoryServiceException: TNS-04411: Directory service: permission denied\n  caused by: oracle.net.ldap.NNFLException\noracle.net.config.DirectoryServiceException: TNS-04411: Directory service: permission denied\n  caused by: oracle.net.ldap.NNFLException\noracle.net.ldap.NNFLException<\/pre>\n<p>To resolve this error, we need to make sure, that the user has the password reset privilege and any of the following the uniqueMember attribute:<\/p>\n<ul>\n<li>cn=oraclenetadmins,dc=oraclecontext,dc=dbi,dc=com<\/li>\n<li>cn=oraclecontextadmins,cn=groups,cn=oraclecontext,dc=dbi,dc=com<\/li>\n<\/ul>\n<p>To create net service names or net service aliases with the netmgr, you need to assign the OracleNetAdmins group (cn=OracleNetAdmins,cn=OracleContext&#8230;) to that user.<\/p>\n<p>The OracleContextAdmins group is a super-user group for the Oracle Context and members of the OracleContextAdmins group can add all supported types of entries to the Oracle Context. The directory user (in most cases the cn=Directory Manager) that created Oracle Context is automatically added to these groups. Other users can be added to these groups by the directory administrator.<\/p>\n<p>To add the cn=oud,ou=people,dc=dbi,dc=com user to the particular groups, run the following ldapmodify command:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">[dbafmw@dbidg01 bin]$ ldapmodify --hostname dbidg01 --port 1389 --bindDN cn=\"Directory Manager\" --bindPasswordFile ~\/.oudpwd\ndn: cn=oud,ou=people,dc=dbi,dc=com\nchangetype: modify\nadd: ds-privilege-name\nds-privilege-name: password-reset\nProcessing MODIFY request for cn=oud,ou=people,dc=dbi,dc=com\nMODIFY operation successful for DN cn=oud,ou=people,dc=dbi,dc=com\n\ndn: cn=oraclenetadmins,cn=oraclecontext,dc=dbi,dc=com\nchangetype: modify\nadd: uniquemember\nuniquemember:  cn=oud,ou=people,dc=dbi,dc=com\nProcessing MODIFY request for cn=oraclenetadmins,cn=oraclecontext,dc=dbi,dc=com\nMODIFY operation successful for DN cn=oraclenetadmins,cn=oraclecontext,dc=dbi,dc=com\n\ndn: cn=oraclecontextadmins,cn=groups,cn=oraclecontext,dc=dbi,dc=com\nchangetype: modify\nadd: uniquemember\nuniquemember:  cn=oud,ou=people,dc=dbi,dc=com\nProcessing MODIFY request for cn=oraclecontextadmins,cn=groups,cn=oraclecontext,dc=dbi,dc=com\nMODIFY operation successful for DN cn=oraclecontextadmins,cn=groups,cn=oraclecontext,dc=dbi,dc=com\n\n[dbafmw@dbidg01 bin]$<\/pre>\n<p>Now, let&#8217;s connect again via netmgr and add a new entry.[\/vc_column_text][image_with_animation image_url=&#8221;17713&#8243; animation=&#8221;Fade In&#8221; img_link_target=&#8221;_self&#8221;][image_with_animation image_url=&#8221;17714&#8243; animation=&#8221;Fade In&#8221; img_link_target=&#8221;_self&#8221;][image_with_animation image_url=&#8221;17715&#8243; animation=&#8221;Fade In&#8221; img_link_target=&#8221;_self&#8221;][vc_column_text]That&#8217;s it. \ud83d\ude42<\/p>\n<h3>Conclusion<\/h3>\n<p>Not only patching, but also a minimum set of privileges makes your OUD more secure.[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By William Sescu [vc_row][vc_column width=&#8221;1\/1&#8243;][vc_column_text]Security in OUD plays a very important role. Keeping your patch level up to date is just one of those topics, like explained in my recent blog. https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-patch-25840309-oud-bundle-patch-11-1-2-3-170718\/ Another one are privileges. You don&#8217;t need to do all of your work with the cn=Directory Manager. The cn=Directory Manager is the most [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":10373,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[1054],"type_dbi":[],"class_list":["post-10372","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","tag-oud"],"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>OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD? - 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\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD?\" \/>\n<meta property=\"og:description\" content=\"By William Sescu [vc_row][vc_column width=&#8221;1\/1&#8243;][vc_column_text]Security in OUD plays a very important role. Keeping your patch level up to date is just one of those topics, like explained in my recent blog. https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-patch-25840309-oud-bundle-patch-11-1-2-3-170718\/ Another one are privileges. You don&#8217;t need to do all of your work with the cn=Directory Manager. The cn=Directory Manager is the most [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-20T13:44:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1013\" \/>\n\t<meta property=\"og:image:height\" content=\"523\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"OUD 11.1.2.3 &#8211; What are the minimum privileges for administering connect strings in OUD?\",\"datePublished\":\"2017-07-20T13:44:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\"},\"wordCount\":480,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png\",\"keywords\":[\"OUD\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\",\"name\":\"OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png\",\"datePublished\":\"2017-07-20T13:44:59+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png\",\"width\":1013,\"height\":523},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OUD 11.1.2.3 &#8211; What are the minimum privileges for administering connect strings in OUD?\"}]},{\"@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":"OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD? - 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\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/","og_locale":"en_US","og_type":"article","og_title":"OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD?","og_description":"By William Sescu [vc_row][vc_column width=&#8221;1\/1&#8243;][vc_column_text]Security in OUD plays a very important role. Keeping your patch level up to date is just one of those topics, like explained in my recent blog. https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-patch-25840309-oud-bundle-patch-11-1-2-3-170718\/ Another one are privileges. You don&#8217;t need to do all of your work with the cn=Directory Manager. The cn=Directory Manager is the most [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/","og_site_name":"dbi Blog","article_published_time":"2017-07-20T13:44:59+00:00","og_image":[{"width":1013,"height":523,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"OUD 11.1.2.3 &#8211; What are the minimum privileges for administering connect strings in OUD?","datePublished":"2017-07-20T13:44:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/"},"wordCount":480,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png","keywords":["OUD"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/","url":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/","name":"OUD 11.1.2.3 - What are the minimum privileges for administering connect strings in OUD? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png","datePublished":"2017-07-20T13:44:59+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/2017-07-20_17h08_39.png","width":1013,"height":523},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-what-are-the-minimum-privileges-for-administering-connect-strings-in-oud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OUD 11.1.2.3 &#8211; What are the minimum privileges for administering connect strings in OUD?"}]},{"@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\/10372","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=10372"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10372\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/10373"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10372"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10372"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}