{"id":14545,"date":"2021-07-09T16:45:32","date_gmt":"2021-07-09T19:45:32","guid":{"rendered":"https:\/\/www.dbarj.com.br\/?p=14545"},"modified":"2021-07-12T10:12:43","modified_gmt":"2021-07-12T13:12:43","slug":"creating-a-19c-database-with-a-lower-compatible-parameter","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/","title":{"rendered":"Creating a 19c database with a lower COMPATIBLE parameter"},"content":{"rendered":"<p>Those days, I was trying to create a 19c database with a lower COMPATIBLE, so I could have a fallback plan after plugin a PDB from a lower release.<\/p>\n<p>However, when trying to create it using DBCA command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\" data-enlighter-highlight=\"3\">dbca -silent -createDatabase \\\r\n-gdbName cdb19c \\\r\n-templateName General_Purpose.dbc \\\r\n-characterSet AL32UTF8 \\\r\n-createAsContainerDatabase true \\\r\n-numberOfPDBs 1 \\\r\n-pdbAdminPassword \"Rodrigo.123\" \\\r\n-pdbName PDB01 \\\r\n-useLocalUndoForPDBs false \\\r\n-databaseConfigType SINGLE \\\r\n-databaseType MULTIPURPOSE \\\r\n-datafileDestination \/u01\/app\/oradata \\\r\n-dvConfiguration false \\\r\n-emConfiguration NONE \\\r\n-enableArchive false \\\r\n-memoryMgmtType AUTO_SGA \\\r\n-totalMemory 4000 \\\r\n-nationalCharacterSet AL16UTF16 \\\r\n-olsConfiguration false \\\r\n-recoveryAreaDestination \/u01\/app\/fra \\\r\n-sampleSchema false \\\r\n-sid cdb19c \\\r\n-storageType FS \\\r\n-useOMF false \\\r\n-sysPassword \"Rodrigo.123\" \\\r\n-systemPassword \"Rodrigo.123\" \\\r\n-initParams compatible=12.1.0.2.0<\/pre>\n<p>I got the following error:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">Prepare for db operation\r\n8% complete\r\nCopying database files\r\n9% complete\r\n[WARNING] ORA-00201: control file version 19.0.0.0.0 incompatible with ORACLE version 12.1.0.2.0\r\nORA-00202: control file: '\/u01\/app\/oracle\/cfgtoollogs\/dbca\/orcl\/tempControl.ctl'\r\n\r\n[WARNING] ORA-01507: database not mounted\r\nORA-06512: at \"SYS.X$DBMS_BACKUP_RESTORE\", line 8418\r\nORA-06512: at \"SYS.X$DBMS_BACKUP_RESTORE\", line 8412\r\nORA-06512: at line 1\r\n\r\n10% complete\r\n[WARNING] ORA-01507: database not mounted\r\nORA-06512: at \"SYS.X$DBMS_BACKUP_RESTORE\", line 8418\r\nORA-06512: at \"SYS.X$DBMS_BACKUP_RESTORE\", line 8412\r\nORA-06512: at line 1\r\n\r\n[WARNING] ORA-01507: database not mounted\r\n\r\n[WARNING] ORA-01507: database not mounted\r\n\r\n[WARNING] ORA-01507: database not mounted\r\n\r\n[WARNING] ORA-01507: database not mounted\r\n\r\n31% complete\r\nCreating and starting Oracle instance\r\n[FATAL] ORA-01503: CREATE CONTROLFILE failed\r\nORA-01565: error in identifying file '\/u01\/app\/oradata\/ORCL\/sysaux01.dbf'\r\nORA-27037: unable to obtain file status\r\n\r\n46% complete\r\n100% complete\r\n[FATAL] ORA-01503: CREATE CONTROLFILE failed\r\nORA-01565: error in identifying file '\/u01\/app\/oradata\/ORCL\/sysaux01.dbf'\r\nORA-27037: unable to obtain file status\r\n\r\n31% complete\r\n8% complete\r\n0% complete\r\nLook at the log file \"\/u01\/app\/oracle\/cfgtoollogs\/dbca\/orcl\/orcl2.log\" for further details.<\/pre>\n<p>So, the issue is that when I&#8217;ve selected <strong>&#8220;General Purpose&#8221;<\/strong> template in DBCA, it will actually restore the control files and data files from a pre-built database template, not create it from scratch.\u00a0 And the control file version there is 19.0.0.0, <strong>so there is no chance to select a template with pre-built data files and control files and also define the COMPATIBLE parameter.<\/strong><\/p>\n<p>To fix the issue, you have to use the DBCA GUI and select the <strong>&#8220;Custom Database&#8221;<\/strong> option. Later, on the last screen where you can check and alter the init file, change the COMPATIBLE parameter to the desired version:<\/p>\n<p id=\"aKEXbvw\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" class=\"alignnone size-full wp-image-14551 \" src=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png\" alt=\"\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png 802w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952-300x236.png 300w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><\/p>\n<p id=\"iGbeSUA\"><img loading=\"lazy\" decoding=\"async\" width=\"702\" height=\"577\" class=\"alignnone size-full wp-image-14549 \" src=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3a70ca00.png\" alt=\"\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3a70ca00.png 702w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3a70ca00-300x247.png 300w\" sizes=\"auto, (max-width: 702px) 100vw, 702px\" \/><\/p>\n<p>Just pay attention to avoid compatible issues, like:<\/p>\n<ul>\n<li>Selecting CDB model and &lt;12.1 COMPATIBLE (containers didn&#8217;t even exist before 12c). If you try it, you will get:<\/li>\n<\/ul>\n<p><strong>[WARNING] ORA-00406: COMPATIBLE parameter needs to be 12.0.0.0.0 or greater<\/strong><br \/>\n<strong>ORA-00722: Feature &#8220;Consolidated Database&#8221;<\/strong><\/p>\n<ul>\n<li>Selecting Local Undo and &lt;12.2 COMPATIBLE.<\/li>\n<\/ul>\n<p>Actually, I was surprised to see that I could create it. I will blog about it in another post.<\/p>\n<h3>I don&#8217;t have DISPLAY on my server!<\/h3>\n<p>You can also do it using DBCA with silent mode, however, you will need to create a customized template before starting. To build a template, it&#8217;s much easier with the UI. Deadlock detected.<\/p>\n<p>So, to make your life easier, just use the one I have below. It was created from the &#8220;Custom Template&#8221;. Don&#8217;t forget to replace the entries (dbname, paths, etc) using case sensitivity!<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">cat &gt; $ORACLE_HOME\/assistants\/dbca\/templates\/My_Template.dbt &lt;&lt; 'EOF'\r\n&lt;DatabaseTemplate name=\"My Template\" description=\"\" version=\"19.0.0.0.0\"&gt;\r\n   &lt;CommonAttributes&gt;\r\n      &lt;option name=\"OMS\" value=\"false\" includeInPDBs=\"false\"\/&gt;\r\n      &lt;option name=\"JSERVER\" value=\"true\" includeInPDBs=\"true\"\/&gt;\r\n      &lt;option name=\"SPATIAL\" value=\"true\" includeInPDBs=\"true\"\/&gt;\r\n      &lt;option name=\"IMEDIA\" value=\"true\" includeInPDBs=\"true\"\/&gt;\r\n      &lt;option name=\"ORACLE_TEXT\" value=\"true\" includeInPDBs=\"true\"&gt;\r\n         &lt;tablespace id=\"SYSAUX\"\/&gt;\r\n      &lt;\/option&gt;\r\n      &lt;option name=\"SAMPLE_SCHEMA\" value=\"false\" includeInPDBs=\"false\"\/&gt;\r\n      &lt;option name=\"CWMLITE\" value=\"true\" includeInPDBs=\"true\"&gt;\r\n         &lt;tablespace id=\"SYSAUX\"\/&gt;\r\n      &lt;\/option&gt;\r\n      &lt;option name=\"APEX\" value=\"false\" includeInPDBs=\"false\"\/&gt;\r\n      &lt;option name=\"DV\" value=\"false\" includeInPDBs=\"false\"\/&gt;\r\n   &lt;\/CommonAttributes&gt;\r\n   &lt;Variables\/&gt;\r\n   &lt;CustomScripts Execute=\"false\"\/&gt;\r\n   &lt;PluggableDatabases&gt;\r\n      &lt;PluggableDatabase pdb_name=\"PDB$SEED\" con_id=\"2\" pdb_dbid=\"0\"\/&gt;\r\n   &lt;\/PluggableDatabases&gt;\r\n   &lt;InitParamAttributes&gt;\r\n      &lt;InitParams&gt;\r\n         &lt;initParam name=\"db_name\" value=\"cdb19c\"\/&gt;\r\n         &lt;initParam name=\"dispatchers\" value=\"(PROTOCOL=TCP) (SERVICE=orclXDB)\"\/&gt;\r\n         &lt;initParam name=\"audit_file_dest\" value=\"\/u01\/app\/oracle\/admin\/cdb19c\/adump\"\/&gt;\r\n         &lt;initParam name=\"compatible\" value=\"11.2.0.4.0\"\/&gt;\r\n         &lt;initParam name=\"remote_login_passwordfile\" value=\"EXCLUSIVE\"\/&gt;\r\n         &lt;initParam name=\"sga_target\" value=\"3000\" unit=\"MB\"\/&gt;\r\n         &lt;initParam name=\"processes\" value=\"300\"\/&gt;\r\n         &lt;initParam name=\"undo_tablespace\" value=\"UNDOTBS1\"\/&gt;\r\n         &lt;initParam name=\"control_files\" value=\"(&amp;quot;\/u01\/app\/oracle\/oradata\/CDB19C\/control01.ctl&amp;quot;, &amp;quot;\/u01\/app\/oracle\/fra\/CDB19C\/control02.ctl&amp;quot;)\"\/&gt;\r\n         &lt;initParam name=\"diagnostic_dest\" value=\"\/u01\/app\/oracle\"\/&gt;\r\n         &lt;initParam name=\"enable_pluggable_database\" value=\"true\"\/&gt;\r\n         &lt;initParam name=\"db_recovery_file_dest\" value=\"\/u01\/app\/oracle\/fra\"\/&gt;\r\n         &lt;initParam name=\"audit_trail\" value=\"db\"\/&gt;\r\n         &lt;initParam name=\"nls_territory\" value=\"AMERICA\"\/&gt;\r\n         &lt;initParam name=\"db_block_size\" value=\"8192\"\/&gt;\r\n         &lt;initParam name=\"open_cursors\" value=\"300\"\/&gt;\r\n         &lt;initParam name=\"nls_language\" value=\"AMERICAN\"\/&gt;\r\n         &lt;initParam name=\"db_recovery_file_dest_size\" value=\"5000\" unit=\"MB\"\/&gt;\r\n         &lt;initParam name=\"pga_aggregate_target\" value=\"1000\" unit=\"MB\"\/&gt;\r\n      &lt;\/InitParams&gt;\r\n      &lt;MiscParams&gt;\r\n         &lt;databaseType&gt;MULTIPURPOSE&lt;\/databaseType&gt;\r\n         &lt;maxUserConn&gt;20&lt;\/maxUserConn&gt;\r\n         &lt;percentageMemTOSGA&gt;40&lt;\/percentageMemTOSGA&gt;\r\n         &lt;customSGA&gt;false&lt;\/customSGA&gt;\r\n         &lt;characterSet&gt;AL32UTF8&lt;\/characterSet&gt;\r\n         &lt;nationalCharacterSet&gt;AL16UTF16&lt;\/nationalCharacterSet&gt;\r\n         &lt;archiveLogMode&gt;false&lt;\/archiveLogMode&gt;\r\n         &lt;initParamFileName&gt;{ORACLE_BASE}\/admin\/{DB_UNIQUE_NAME}\/pfile\/init.ora&lt;\/initParamFileName&gt;\r\n      &lt;\/MiscParams&gt;\r\n      &lt;SPfile useSPFile=\"true\"&gt;{ORACLE_HOME}\/dbs\/spfile{SID}.ora&lt;\/SPfile&gt;\r\n   &lt;\/InitParamAttributes&gt;\r\n   &lt;StorageAttributes&gt;\r\n      &lt;ControlfileAttributes id=\"Controlfile\"&gt;\r\n         &lt;maxDatafiles&gt;1024&lt;\/maxDatafiles&gt;\r\n         &lt;maxLogfiles&gt;16&lt;\/maxLogfiles&gt;\r\n         &lt;maxLogMembers&gt;3&lt;\/maxLogMembers&gt;\r\n         &lt;maxLogHistory&gt;1&lt;\/maxLogHistory&gt;\r\n         &lt;maxInstances&gt;8&lt;\/maxInstances&gt;\r\n         &lt;image name=\"control01.ctl\" filepath=\"\/u01\/app\/oracle\/oradata\/CDB19C\/\"\/&gt;\r\n         &lt;image name=\"control02.ctl\" filepath=\"\/u01\/app\/oracle\/fra\/CDB19C\/\"\/&gt;\r\n      &lt;\/ControlfileAttributes&gt;\r\n      &lt;DatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/sysaux01.dbf\" con_id=\"1\"&gt;\r\n         &lt;tablespace&gt;SYSAUX&lt;\/tablespace&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;online&gt;true&lt;\/online&gt;\r\n         &lt;status&gt;0&lt;\/status&gt;\r\n         &lt;size unit=\"MB\"&gt;550&lt;\/size&gt;\r\n         &lt;reuse&gt;true&lt;\/reuse&gt;\r\n         &lt;autoExtend&gt;true&lt;\/autoExtend&gt;\r\n         &lt;increment unit=\"KB\"&gt;10240&lt;\/increment&gt;\r\n         &lt;maxSize unit=\"MB\"&gt;-1&lt;\/maxSize&gt;\r\n      &lt;\/DatafileAttributes&gt;\r\n      &lt;DatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/system01.dbf\" con_id=\"1\"&gt;\r\n         &lt;tablespace&gt;SYSTEM&lt;\/tablespace&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;online&gt;true&lt;\/online&gt;\r\n         &lt;status&gt;0&lt;\/status&gt;\r\n         &lt;size unit=\"MB\"&gt;700&lt;\/size&gt;\r\n         &lt;reuse&gt;true&lt;\/reuse&gt;\r\n         &lt;autoExtend&gt;true&lt;\/autoExtend&gt;\r\n         &lt;increment unit=\"KB\"&gt;10240&lt;\/increment&gt;\r\n         &lt;maxSize unit=\"MB\"&gt;-1&lt;\/maxSize&gt;\r\n      &lt;\/DatafileAttributes&gt;\r\n      &lt;DatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/temp01.dbf\" con_id=\"1\"&gt;\r\n         &lt;tablespace&gt;TEMP&lt;\/tablespace&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;online&gt;true&lt;\/online&gt;\r\n         &lt;status&gt;0&lt;\/status&gt;\r\n         &lt;size unit=\"MB\"&gt;20&lt;\/size&gt;\r\n         &lt;reuse&gt;true&lt;\/reuse&gt;\r\n         &lt;autoExtend&gt;true&lt;\/autoExtend&gt;\r\n         &lt;increment unit=\"KB\"&gt;640&lt;\/increment&gt;\r\n         &lt;maxSize unit=\"MB\"&gt;-1&lt;\/maxSize&gt;\r\n      &lt;\/DatafileAttributes&gt;\r\n      &lt;DatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/undotbs01.dbf\" con_id=\"1\"&gt;\r\n         &lt;tablespace&gt;UNDOTBS1&lt;\/tablespace&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;online&gt;true&lt;\/online&gt;\r\n         &lt;status&gt;0&lt;\/status&gt;\r\n         &lt;size unit=\"MB\"&gt;200&lt;\/size&gt;\r\n         &lt;reuse&gt;true&lt;\/reuse&gt;\r\n         &lt;autoExtend&gt;true&lt;\/autoExtend&gt;\r\n         &lt;increment unit=\"KB\"&gt;5120&lt;\/increment&gt;\r\n         &lt;maxSize unit=\"MB\"&gt;-1&lt;\/maxSize&gt;\r\n      &lt;\/DatafileAttributes&gt;\r\n      &lt;DatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/users01.dbf\" con_id=\"1\"&gt;\r\n         &lt;tablespace&gt;USERS&lt;\/tablespace&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;online&gt;true&lt;\/online&gt;\r\n         &lt;status&gt;0&lt;\/status&gt;\r\n         &lt;size unit=\"MB\"&gt;5&lt;\/size&gt;\r\n         &lt;reuse&gt;true&lt;\/reuse&gt;\r\n         &lt;autoExtend&gt;true&lt;\/autoExtend&gt;\r\n         &lt;increment unit=\"KB\"&gt;1280&lt;\/increment&gt;\r\n         &lt;maxSize unit=\"MB\"&gt;-1&lt;\/maxSize&gt;\r\n      &lt;\/DatafileAttributes&gt;\r\n      &lt;TablespaceAttributes id=\"SYSAUX\" con_id=\"1\"&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;defaultTemp&gt;false&lt;\/defaultTemp&gt;\r\n         &lt;undo&gt;false&lt;\/undo&gt;\r\n         &lt;local&gt;true&lt;\/local&gt;\r\n         &lt;blockSize&gt;-1&lt;\/blockSize&gt;\r\n         &lt;allocation&gt;1&lt;\/allocation&gt;\r\n         &lt;uniAllocSize unit=\"KB\"&gt;-1&lt;\/uniAllocSize&gt;\r\n         &lt;initSize unit=\"KB\"&gt;64&lt;\/initSize&gt;\r\n         &lt;increment unit=\"KB\"&gt;64&lt;\/increment&gt;\r\n         &lt;incrementPercent&gt;50&lt;\/incrementPercent&gt;\r\n         &lt;minExtends&gt;1&lt;\/minExtends&gt;\r\n         &lt;maxExtends&gt;4096&lt;\/maxExtends&gt;\r\n         &lt;minExtendsSize unit=\"KB\"&gt;64&lt;\/minExtendsSize&gt;\r\n         &lt;logging&gt;true&lt;\/logging&gt;\r\n         &lt;recoverable&gt;false&lt;\/recoverable&gt;\r\n         &lt;maxFreeSpace&gt;0&lt;\/maxFreeSpace&gt;\r\n         &lt;autoSegmentMgmt&gt;true&lt;\/autoSegmentMgmt&gt;\r\n         &lt;bigfile&gt;false&lt;\/bigfile&gt;\r\n         &lt;datafilesList&gt;\r\n            &lt;TablespaceDatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/sysaux01.dbf\"\/&gt;\r\n         &lt;\/datafilesList&gt;\r\n      &lt;\/TablespaceAttributes&gt;\r\n      &lt;TablespaceAttributes id=\"SYSTEM\" con_id=\"1\"&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;defaultTemp&gt;false&lt;\/defaultTemp&gt;\r\n         &lt;undo&gt;false&lt;\/undo&gt;\r\n         &lt;local&gt;true&lt;\/local&gt;\r\n         &lt;blockSize&gt;-1&lt;\/blockSize&gt;\r\n         &lt;allocation&gt;3&lt;\/allocation&gt;\r\n         &lt;uniAllocSize unit=\"KB\"&gt;-1&lt;\/uniAllocSize&gt;\r\n         &lt;initSize unit=\"KB\"&gt;64&lt;\/initSize&gt;\r\n         &lt;increment unit=\"KB\"&gt;64&lt;\/increment&gt;\r\n         &lt;incrementPercent&gt;50&lt;\/incrementPercent&gt;\r\n         &lt;minExtends&gt;1&lt;\/minExtends&gt;\r\n         &lt;maxExtends&gt;-1&lt;\/maxExtends&gt;\r\n         &lt;minExtendsSize unit=\"KB\"&gt;64&lt;\/minExtendsSize&gt;\r\n         &lt;logging&gt;true&lt;\/logging&gt;\r\n         &lt;recoverable&gt;false&lt;\/recoverable&gt;\r\n         &lt;maxFreeSpace&gt;0&lt;\/maxFreeSpace&gt;\r\n         &lt;autoSegmentMgmt&gt;true&lt;\/autoSegmentMgmt&gt;\r\n         &lt;bigfile&gt;false&lt;\/bigfile&gt;\r\n         &lt;datafilesList&gt;\r\n            &lt;TablespaceDatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/system01.dbf\"\/&gt;\r\n         &lt;\/datafilesList&gt;\r\n      &lt;\/TablespaceAttributes&gt;\r\n      &lt;TablespaceAttributes id=\"TEMP\" con_id=\"1\"&gt;\r\n         &lt;temporary&gt;true&lt;\/temporary&gt;\r\n         &lt;defaultTemp&gt;true&lt;\/defaultTemp&gt;\r\n         &lt;undo&gt;false&lt;\/undo&gt;\r\n         &lt;local&gt;true&lt;\/local&gt;\r\n         &lt;blockSize&gt;-1&lt;\/blockSize&gt;\r\n         &lt;allocation&gt;1&lt;\/allocation&gt;\r\n         &lt;uniAllocSize unit=\"MB\"&gt;1&lt;\/uniAllocSize&gt;\r\n         &lt;initSize unit=\"KB\"&gt;64&lt;\/initSize&gt;\r\n         &lt;increment unit=\"KB\"&gt;64&lt;\/increment&gt;\r\n         &lt;incrementPercent&gt;0&lt;\/incrementPercent&gt;\r\n         &lt;minExtends&gt;1&lt;\/minExtends&gt;\r\n         &lt;maxExtends&gt;0&lt;\/maxExtends&gt;\r\n         &lt;minExtendsSize unit=\"KB\"&gt;64&lt;\/minExtendsSize&gt;\r\n         &lt;logging&gt;true&lt;\/logging&gt;\r\n         &lt;recoverable&gt;false&lt;\/recoverable&gt;\r\n         &lt;maxFreeSpace&gt;0&lt;\/maxFreeSpace&gt;\r\n         &lt;autoSegmentMgmt&gt;true&lt;\/autoSegmentMgmt&gt;\r\n         &lt;bigfile&gt;false&lt;\/bigfile&gt;\r\n         &lt;datafilesList&gt;\r\n            &lt;TablespaceDatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/temp01.dbf\"\/&gt;\r\n         &lt;\/datafilesList&gt;\r\n      &lt;\/TablespaceAttributes&gt;\r\n      &lt;TablespaceAttributes id=\"UNDOTBS1\" con_id=\"1\"&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;defaultTemp&gt;false&lt;\/defaultTemp&gt;\r\n         &lt;undo&gt;true&lt;\/undo&gt;\r\n         &lt;local&gt;true&lt;\/local&gt;\r\n         &lt;blockSize&gt;-1&lt;\/blockSize&gt;\r\n         &lt;allocation&gt;1&lt;\/allocation&gt;\r\n         &lt;uniAllocSize unit=\"KB\"&gt;-1&lt;\/uniAllocSize&gt;\r\n         &lt;initSize unit=\"KB\"&gt;512&lt;\/initSize&gt;\r\n         &lt;increment unit=\"KB\"&gt;512&lt;\/increment&gt;\r\n         &lt;incrementPercent&gt;50&lt;\/incrementPercent&gt;\r\n         &lt;minExtends&gt;8&lt;\/minExtends&gt;\r\n         &lt;maxExtends&gt;4096&lt;\/maxExtends&gt;\r\n         &lt;minExtendsSize unit=\"KB\"&gt;512&lt;\/minExtendsSize&gt;\r\n         &lt;logging&gt;true&lt;\/logging&gt;\r\n         &lt;recoverable&gt;false&lt;\/recoverable&gt;\r\n         &lt;maxFreeSpace&gt;0&lt;\/maxFreeSpace&gt;\r\n         &lt;autoSegmentMgmt&gt;true&lt;\/autoSegmentMgmt&gt;\r\n         &lt;bigfile&gt;false&lt;\/bigfile&gt;\r\n         &lt;datafilesList&gt;\r\n            &lt;TablespaceDatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/undotbs01.dbf\"\/&gt;\r\n         &lt;\/datafilesList&gt;\r\n      &lt;\/TablespaceAttributes&gt;\r\n      &lt;TablespaceAttributes id=\"USERS\" con_id=\"1\"&gt;\r\n         &lt;temporary&gt;false&lt;\/temporary&gt;\r\n         &lt;defaultTemp&gt;false&lt;\/defaultTemp&gt;\r\n         &lt;undo&gt;false&lt;\/undo&gt;\r\n         &lt;local&gt;true&lt;\/local&gt;\r\n         &lt;blockSize&gt;-1&lt;\/blockSize&gt;\r\n         &lt;allocation&gt;1&lt;\/allocation&gt;\r\n         &lt;uniAllocSize unit=\"KB\"&gt;-1&lt;\/uniAllocSize&gt;\r\n         &lt;initSize unit=\"KB\"&gt;128&lt;\/initSize&gt;\r\n         &lt;increment unit=\"KB\"&gt;128&lt;\/increment&gt;\r\n         &lt;incrementPercent&gt;0&lt;\/incrementPercent&gt;\r\n         &lt;minExtends&gt;1&lt;\/minExtends&gt;\r\n         &lt;maxExtends&gt;4096&lt;\/maxExtends&gt;\r\n         &lt;minExtendsSize unit=\"KB\"&gt;128&lt;\/minExtendsSize&gt;\r\n         &lt;logging&gt;true&lt;\/logging&gt;\r\n         &lt;recoverable&gt;false&lt;\/recoverable&gt;\r\n         &lt;maxFreeSpace&gt;0&lt;\/maxFreeSpace&gt;\r\n         &lt;autoSegmentMgmt&gt;true&lt;\/autoSegmentMgmt&gt;\r\n         &lt;bigfile&gt;false&lt;\/bigfile&gt;\r\n         &lt;datafilesList&gt;\r\n            &lt;TablespaceDatafileAttributes id=\"\/u01\/app\/oracle\/oradata\/CDB19C\/users01.dbf\"\/&gt;\r\n         &lt;\/datafilesList&gt;\r\n      &lt;\/TablespaceAttributes&gt;\r\n      &lt;RedoLogGroupAttributes id=\"1\"&gt;\r\n         &lt;reuse&gt;false&lt;\/reuse&gt;\r\n         &lt;fileSize unit=\"KB\"&gt;204800&lt;\/fileSize&gt;\r\n         &lt;Thread&gt;1&lt;\/Thread&gt;\r\n         &lt;member ordinal=\"0\" memberName=\"redo01.log\" filepath=\"\/u01\/app\/oracle\/oradata\/CDB19C\/\"\/&gt;\r\n      &lt;\/RedoLogGroupAttributes&gt;\r\n      &lt;RedoLogGroupAttributes id=\"2\"&gt;\r\n         &lt;reuse&gt;false&lt;\/reuse&gt;\r\n         &lt;fileSize unit=\"KB\"&gt;204800&lt;\/fileSize&gt;\r\n         &lt;Thread&gt;1&lt;\/Thread&gt;\r\n         &lt;member ordinal=\"0\" memberName=\"redo02.log\" filepath=\"\/u01\/app\/oracle\/oradata\/CDB19C\/\"\/&gt;\r\n      &lt;\/RedoLogGroupAttributes&gt;\r\n      &lt;RedoLogGroupAttributes id=\"3\"&gt;\r\n         &lt;reuse&gt;false&lt;\/reuse&gt;\r\n         &lt;fileSize unit=\"KB\"&gt;204800&lt;\/fileSize&gt;\r\n         &lt;Thread&gt;1&lt;\/Thread&gt;\r\n         &lt;member ordinal=\"0\" memberName=\"redo03.log\" filepath=\"\/u01\/app\/oracle\/oradata\/CDB19C\/\"\/&gt;\r\n      &lt;\/RedoLogGroupAttributes&gt;\r\n   &lt;\/StorageAttributes&gt;\r\n&lt;\/DatabaseTemplate&gt;\r\nEOF<\/pre>\n<p>And now you can create it with the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">dbca -silent -createDatabase \\\r\n-gdbName cdb19c \\\r\n-templateName My_Template.dbt \\\r\n-characterSet AL32UTF8 \\\r\n-createAsContainerDatabase true \\\r\n-numberOfPDBs 1 \\\r\n-pdbAdminPassword \"Rodrigo.123\" \\\r\n-pdbName PDB01 \\\r\n-useLocalUndoForPDBs true \\\r\n-databaseConfigType SINGLE \\\r\n-databaseType MULTIPURPOSE \\\r\n-datafileDestination \/u01\/app\/oracle\/oradata \\\r\n-dvConfiguration false \\\r\n-emConfiguration NONE \\\r\n-enableArchive false \\\r\n-memoryMgmtType AUTO_SGA \\\r\n-totalMemory 4000 \\\r\n-nationalCharacterSet AL16UTF16 \\\r\n-olsConfiguration false \\\r\n-recoveryAreaDestination \/u01\/app\/oracle\/fra \\\r\n-sampleSchema false \\\r\n-sid cdb19c \\\r\n-storageType FS \\\r\n-useOMF false \\\r\n-sysPassword \"Rodrigo.123\" \\\r\n-systemPassword \"Rodrigo.123\" \\\r\n-initParams compatible=12.1.0.2.0<\/pre>\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-14545 jlk' href='javascript:void(0)' data-task='like' data-post_id='14545' 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-14545 lc'>+8<\/span><\/a><\/div><\/div> <div class='status-14545 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>Those days, I was trying to create a 19c database with a lower COMPATIBLE, so I could have a fallback plan after plugin a PDB from a lower release. However, when trying to create it using DBCA command: dbca -silent -createDatabase \\ -gdbName cdb19c \\ -templateName General_Purpose.dbc \\ -characterSet AL32UTF8 \\ -createAsContainerDatabase true \\ -numberOfPDBs &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/\">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":[15],"tags":[],"class_list":["post-14545","post","type-post","status-publish","format-standard","hentry","category-database-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>Creating a 19c database with a lower COMPATIBLE parameter - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"description\" content=\"In this post, I will show what steps you need to perform to create a database using DBCA with a lower COMPATIBLE parameter.\" \/>\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\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/\" \/>\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\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Creating a 19c database with a lower COMPATIBLE parameter\",\"datePublished\":\"2021-07-09T19:45:32+00:00\",\"dateModified\":\"2021-07-12T13:12:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/\"},\"wordCount\":309,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/img_60e8c3bf70952.png\",\"articleSection\":[\"Oracle Database General\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/\",\"name\":\"Creating a 19c database with a lower COMPATIBLE parameter - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/img_60e8c3bf70952.png\",\"datePublished\":\"2021-07-09T19:45:32+00:00\",\"dateModified\":\"2021-07-12T13:12:43+00:00\",\"description\":\"In this post, I will show what steps you need to perform to create a database using DBCA with a lower COMPATIBLE parameter.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/img_60e8c3bf70952.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/img_60e8c3bf70952.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/2021\\\/07\\\/creating-a-19c-database-with-a-lower-compatible-parameter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating a 19c database with a lower COMPATIBLE parameter\"}]},{\"@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":"Creating a 19c database with a lower COMPATIBLE parameter - DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"In this post, I will show what steps you need to perform to create a database using DBCA with a lower COMPATIBLE parameter.","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\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/","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\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Creating a 19c database with a lower COMPATIBLE parameter","datePublished":"2021-07-09T19:45:32+00:00","dateModified":"2021-07-12T13:12:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/"},"wordCount":309,"commentCount":3,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/en\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"image":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png","articleSection":["Oracle Database General"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/","url":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/","name":"Creating a 19c database with a lower COMPATIBLE parameter - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#primaryimage"},"image":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png","datePublished":"2021-07-09T19:45:32+00:00","dateModified":"2021-07-12T13:12:43+00:00","description":"In this post, I will show what steps you need to perform to create a database using DBCA with a lower COMPATIBLE parameter.","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#primaryimage","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2021\/07\/img_60e8c3bf70952.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/en\/2021\/07\/creating-a-19c-database-with-a-lower-compatible-parameter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Creating a 19c database with a lower COMPATIBLE parameter"}]},{"@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\/14545","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=14545"}],"version-history":[{"count":5,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/14545\/revisions"}],"predecessor-version":[{"id":14557,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/posts\/14545\/revisions\/14557"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/media?parent=14545"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/categories?post=14545"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/en\/wp-json\/wp\/v2\/tags?post=14545"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}