{"id":847,"date":"2014-09-13T11:34:33","date_gmt":"2014-09-13T14:34:33","guid":{"rendered":"http:\/\/www.dbarj.com.br\/?p=847"},"modified":"2014-10-09T23:37:32","modified_gmt":"2014-10-10T02:37:32","slug":"ora-01917-recovery_catalog_user-error-upgrading-rman-catalog","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/","title":{"rendered":"ORA-01917 &#8220;RECOVERY_CATALOG_USER&#8221; error while upgrading RMAN catalog"},"content":{"rendered":"<p>These days, I needed to register a new database that was running at 12c on my RMAN catalog. The procedure that I tried was the same as I had done before hundreds of times with DBs in all versions. When I connected, RMAN complained that the version of the catalog was outdated, as expected:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\">[oracle@brocbddtrj001 ~]$ rman target \/\r\n\r\nRecovery Manager: Release 12.1.0.2.0 - Production on Tue Sep 2 15:36:06 2014\r\n\r\nCopyright (c) 1982, 2014, Oracle and\/or its affiliates.  All rights reserved.\r\n\r\nconnected to target database: BROCDB (DBID=2702110135)\r\n\r\nRMAN&gt; connect catalog 'rman\/xxx@rmanbkp';\r\n\r\nconnected to recovery catalog database\r\nPL\/SQL package RMAN.DBMS_RCVCAT version 11.02.00.04 in RCVCAT database is too old\r\n\r\nRMAN&gt; register database;\r\n\r\nPL\/SQL package RMAN.DBMS_RCVCAT version 11.02.00.04 in RCVCAT database is too old\r\nPL\/SQL package RMAN.DBMS_RCVCAT version 11.02.00.04 in RCVCAT database is too old\r\nRMAN-00571: ===========================================================\r\nRMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============\r\nRMAN-00571: ===========================================================\r\nRMAN-03002: failure of register command at 09\/03\/2014 17:15:15\r\nRMAN-06429: RCVCAT database is not compatible with this version of RMAN\r\n\r\nRMAN&gt;<\/pre>\n<p>I then decided to upgrade the version of the catalog, but I got the error <em>&#8220;RMAN-07539: insufficient privileges to create or upgrade the catalog schema&#8221;<\/em>:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\">RMAN&gt; upgrade catalog;\r\n\r\nRMAN-00571: ===========================================================\r\nRMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============\r\nRMAN-00571: ===========================================================\r\nRMAN-07539: insufficient privileges to create or upgrade the catalog schema\r\n\r\nRMAN&gt;<\/pre>\n<p>To solve the problem, I ended up screwing things when I temporarily gave the DBA grant (<span style=\"color: #ff0000;\"><strong>do not do it!<\/strong><\/span>) to the catalog owner (<strong>RMAN<\/strong> schema in my case) to see whether the upgrade would work. I got an even worse error: <em>&#8220;RMAN-06004: ORACLE error from recovery catalog database: ORA-01917: user or role &#8216;RECOVERY_CATALOG_USER&#8217; does not exist&#8221;<\/em>:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\">RMAN&gt; upgrade catalog;\r\n\r\nrecovery catalog owner is RMAN\r\nenter UPGRADE CATALOG command again to confirm catalog upgrade\r\n\r\nRMAN&gt; upgrade catalog;\r\n\r\nRMAN-00571: ===========================================================\r\nRMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============\r\nRMAN-00571: ===========================================================\r\nRMAN-06004: ORACLE error from recovery catalog database: ORA-01917: user or role 'RECOVERY_CATALOG_USER' does not exist\r\n\r\nRMAN&gt;<\/pre>\n<p>The damage was done. The catalog upgrade process stopped in the middle. Despite the backup connections in the catalog continue running without problems, the rman aborted in the middle of the upgrade process, leaving it possibly inconsistent for future updates.<\/p>\n<p>To resolve this problem, my first step was to restore the existing backup of the catalog schema from the previous day (done via expdp). Then I found out that this failure is a known bug and to avoid the initial privileges error (<strong>RMAN-07539<\/strong>), I should have run on my catalog DB the script <em>&#8220;$ORACLE_HOME\/rdbms\/admin\/dbmsrmansys.sql&#8221;<\/em>:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[oracle@brocbddtrj001 ~]$ cat $ORACLE_HOME\/rdbms\/admin\/dbmsrmansys.sql\r\nRem\r\nRem Copyright (c) 2013, 2014, Oracle and\/or its affiliates.\r\nRem All rights reserved.\r\nRem\r\nRem BEGIN SQL_FILE_METADATA\r\nRem SQL_SOURCE_FILE: rdbms\/admin\/dbmsrmansys.sql\r\nRem SQL_SHIPPED_FILE: rdbms\/admin\/dbmsrmansys.sql\r\nRem SQL_PHASE: DBMSRMANSYS\r\nRem SQL_STARTUP_MODE: NORMAL\r\nRem SQL_IGNORABLE_ERRORS: NONE\r\nRem SQL_CALLING_FILE: NONE\r\nRem END SQL_FILE_METADATA\r\nRem\r\nRem MODIFIED (MM\/DD\/YY)\r\nRem surman 02\/11\/14 - 13922626: Update SQL metadata\r\nRem vbegun 10\/29\/13 - Created\r\nRem\r\n\r\n@@?\/rdbms\/admin\/sqlsessstart.sql\r\n\r\n-- Do not drop this role recovery_catalog_owner.\r\n-- Drop this role will revoke this role from all rman users.\r\n-- If this role exists, ORA-1921 is expected.\r\ndeclare\r\nrole_exists exception;\r\npragma exception_init(role_exists, -1921);\r\nbegin\r\nexecute immediate 'create role recovery_catalog_owner';\r\nexception\r\nwhen role_exists then\r\nnull;\r\nend;\r\n\/\r\ndeclare\r\nrole_exists exception;\r\npragma exception_init(role_exists, -1921);\r\nbegin\r\nexecute immediate 'create role recovery_catalog_user';\r\nexception\r\nwhen role_exists then\r\nnull;\r\nend;\r\n\/\r\n\r\ngrant create session,alter session,create synonym,create view,\r\ncreate database link,create table,create cluster,create sequence,\r\ncreate trigger,create procedure, create type to recovery_catalog_owner;\r\n\r\n-- Following are added for VPD support\r\ngrant execute on dbms_rls to recovery_catalog_owner;\r\ngrant create any trigger to recovery_catalog_owner;\r\ngrant create any synonym to recovery_catalog_owner;\r\ngrant create public synonym to recovery_catalog_owner;\r\ngrant drop any synonym to recovery_catalog_owner;\r\ngrant administer database trigger to recovery_catalog_owner;\r\ngrant recovery_catalog_user to recovery_catalog_owner with admin option;\r\n\r\n@?\/rdbms\/admin\/sqlsessend.sql\r\n[oracle@brocbddtrj001 ~]$<\/pre>\n<p>After returning the catalog to the backup image, now back square one, I ran the script:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\">[oracle@brocbddtrj001 ~]$ sqlplus sys@rmanbkp as sysdba\r\n\r\nSQL*Plus: Release 12.1.0.2.0 Production on Wed Sep 3 17:20:51 2014\r\n\r\nCopyright (c) 1982, 2014, Oracle. All rights reserved.\r\n\r\nEnter password:\r\n\r\nConnected to:\r\nOracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production\r\nWith the Partitioning, Oracle Label Security, OLAP, Data Mining,\r\nOracle Database Vault and Real Application Testing options\r\n\r\nSQL&gt; @?\/rdbms\/admin\/dbmsrmansys.sql\r\nalter session set \"_ORACLE_SCRIPT\" = true\r\n*\r\nERROR at line 1:\r\nORA-02248: invalid option for ALTER SESSION\r\n\r\nPL\/SQL procedure successfully completed.\r\n\r\nPL\/SQL procedure successfully completed.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nGrant succeeded.\r\n\r\nalter session set \"_ORACLE_SCRIPT\" = false\r\n*\r\nERROR at line 1:\r\nORA-02248: invalid option for ALTER SESSION\r\n\r\nSQL&gt; exit\r\nDisconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production\r\nWith the Partitioning, Oracle Label Security, OLAP, Data Mining,\r\nOracle Database Vault and Real Application Testing options\r\n[oracle@brocbddtrj001 ~]$<\/pre>\n<p>After the execution, the above script repaired the privileges failure that I initially received. Finaly all I needed was to restart the upgrade process from scratch:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"oracledb\">RMAN&gt; connect catalog 'rman\/xxx@rmanbkp'\r\n\r\nconnected to recovery catalog database\r\nPL\/SQL package RMAN.DBMS_RCVCAT version 11.02.00.04 in RCVCAT database is too old\r\n\r\nRMAN&gt; upgrade catalog;\r\n\r\nrecovery catalog owner is RMAN\r\nenter UPGRADE CATALOG command again to confirm catalog upgrade\r\n\r\nRMAN&gt; upgrade catalog;\r\n\r\nrecovery catalog upgraded to version 12.01.00.02\r\nDBMS_RCVMAN package upgraded to version 12.01.00.02\r\nDBMS_RCVCAT package upgraded to version 12.01.00.02.\r\n\r\nRMAN&gt; register database;\r\n\r\ndatabase registered in recovery catalog\r\nstarting full resync of recovery catalog\r\nfull resync complete\r\n\r\nRMAN&gt;<\/pre>\n<p>Okay, now everything is working as I expected.<\/p>\n<p>Information about this bug can be found at MOS: <strong><a href=\"https:\/\/support.oracle.com\/epmos\/faces\/DocumentDisplay?id=1915561.1\" target=\"_blank\">Oracle Support Document 1915561.1<\/a> (Upgrade Recovery Catalog fails with RMAN-07539: insufficient privileges)<\/strong>.<\/p>\n<b>Have you enjoyed? Please leave a comment or give a \ud83d\udc4d!<\/b>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-847 jlk' href='javascript:void(0)' data-task='like' data-post_id='847' data-nonce='de4404f630' rel='nofollow'><img class='wti-pixel' src='https:\/\/www.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-847 lc'>+9<\/span><\/a><\/div><\/div> <div class='status-847 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>These days, I needed to register a new database that was running at 12c on my RMAN catalog. The procedure that I tried was the same as I had done before hundreds of times with DBs in all versions. When I connected, RMAN complained that the version of the catalog was outdated, as expected: [oracle@brocbddtrj001 &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/\">Continue reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[],"class_list":["post-847","post","type-post","status-publish","format-standard","hentry","category-rman-en","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ORA-01917 &quot;RECOVERY_CATALOG_USER&quot; error while upgrading RMAN catalog - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"How to solve when the catalog upgrade aborts with error &quot;ORA-01917: user or role &#039;RECOVERY_CATALOG_USER&#039; does not exist&quot;.\" \/>\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.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\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.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"ORA-01917 &#8220;RECOVERY_CATALOG_USER&#8221; error while upgrading RMAN catalog\",\"datePublished\":\"2014-09-13T14:34:33+00:00\",\"dateModified\":\"2014-10-10T02:37:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/\"},\"wordCount\":320,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"articleSection\":[\"Recovery Manager (RMAN)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/\",\"name\":\"ORA-01917 \\\"RECOVERY_CATALOG_USER\\\" error while upgrading RMAN catalog - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\"},\"datePublished\":\"2014-09-13T14:34:33+00:00\",\"dateModified\":\"2014-10-10T02:37:32+00:00\",\"description\":\"How to solve when the catalog upgrade aborts with error \\\"ORA-01917: user or role 'RECOVERY_CATALOG_USER' does not exist\\\".\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2014\\\/09\\\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ORA-01917 \\\"RECOVERY_CATALOG_USER\\\" error while upgrading RMAN catalog\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ORA-01917 \"RECOVERY_CATALOG_USER\" error while upgrading RMAN catalog - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"How to solve when the catalog upgrade aborts with error \"ORA-01917: user or role 'RECOVERY_CATALOG_USER' does not exist\".","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.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/","twitter_misc":{"Written by":"DBA RJ","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"ORA-01917 &#8220;RECOVERY_CATALOG_USER&#8221; error while upgrading RMAN catalog","datePublished":"2014-09-13T14:34:33+00:00","dateModified":"2014-10-10T02:37:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/"},"wordCount":320,"commentCount":1,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"articleSection":["Recovery Manager (RMAN)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/","url":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/","name":"ORA-01917 \"RECOVERY_CATALOG_USER\" error while upgrading RMAN catalog - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/#website"},"datePublished":"2014-09-13T14:34:33+00:00","dateModified":"2014-10-10T02:37:32+00:00","description":"How to solve when the catalog upgrade aborts with error \"ORA-01917: user or role 'RECOVERY_CATALOG_USER' does not exist\".","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/en\/2014\/09\/ora-01917-recovery_catalog_user-error-upgrading-rman-catalog\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"ORA-01917 \"RECOVERY_CATALOG_USER\" error while upgrading RMAN catalog"}]},{"@type":"WebSite","@id":"https:\/\/www.dbarj.com.br\/en\/#website","url":"https:\/\/www.dbarj.com.br\/en\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbarj.com.br\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/847","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/comments?post=847"}],"version-history":[{"count":0,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/847\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/media?parent=847"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/categories?post=847"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/tags?post=847"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}