Using Scripts to Downgrade Oracle Database 23ai
To automate downgrades, Oracle provides the dbdowngrade
utility script. When necessary, you can also continue to run catdwgrd.sql
manually, as in previous releases.
- Using Dbdowngrade to Downgrade Oracle Databases To an Earlier Release
To downgrade to a previous database release, Oracle recommends that you run the downgrade scriptdbdowngrade
. - Downgrading Oracle Databases Manually with catdwgrd.sql
When you prefer to downgrade Oracle Database manually, or if you are concerned about excessive thread issues, you can run the manualcatdwgrd.sql
script.
Parent topic: Downgrading Oracle Database to an Earlier Release
Using Dbdowngrade to Downgrade Oracle Databases To an Earlier Release
To downgrade to a previous database release, Oracle recommends that you run
the downgrade script dbdowngrade
.
Oracle provides the Downgrade Utility script dbdowngrade
. When you
use the dbdowngrade
utility, it sets appropriate values for the
downgrade, and simplifies how you start a downgrade. Specifically, it ensures that
the underlying calls to catcon.pl
use recommended values, so that
potential errors due to excessive threads being spawned are reduced. This feature is
especially of value for downgrades of multitenant architecture (CDB) databases. If
you prefer to be in control of the number of resources used for a downgrade, then
you can run the catdwgrd.sql
script manually, as in previous
releases. After you
downgrade to the earlier database release, you can then appy any release update to
that earlier release.
The dbdowngrade
shell command is located in the file path $ORACLE_HOME/bin
on Linux and Unix, and %ORACLE_HOME%\bin
on Microsoft Windows based systems. If you are downgrading a CDB, then you can provide the inclusion list as argument to the script.
When you downgrade multitenant architecture databases (CDBs), the dbdowngrade
script has two behaviors, depending on whether you use an inclusion list.
-
Without an inclusion list. The downgrade runs on all the containers that are open in the CDB (PDB and CDB).
Run the downgrade without an inclusion list when you want to downgrade the entire CDB. In this scenario, all open containers are downgraded. You must open all the PDBs in the CDB manually before you start the
dbdowngrade
script. -
With an inclusion list. The downgrade runs only on the PDBs within the inclusion list, and
CDB$ROOT
is not downgraded during the downgrade operation.Run the downgrade with an inclusion list when you want to downgrade only the set of PDBs listed in the inclusion list. In this scenario, where you want to use unplug and plug upgrades, only the set of PDBs that you list in the inclusion list are downgraded. The CDB and the PDBs that are not on the inclusion list remain upgraded to the later release.
Prerequisites:
- You can downgrade all databases in a multitenant container database (CDB), or one pluggable database (PDB) within a CDB.
- After the
COMPATIBLE
parameter is increased, database downgrade is not possible. - You can only downgrade to the release from which you upgraded.
- If you are downgrading without an inclusion list, then you must open all PDB containers before you run the
dbdowngrade
script.
As a result of running the dbdowngrade
script, the utility runs
catdwgrd
and catcon.pl
. These scripts perform
the downgrade, using the recommended values for the release to which you are
downgrading.
These scripts create log files. If you run dbdowngrade
with the -l filepath
, where
filepath
is the path where you want log
files created, then dbdowngrade
creates the directory you specify,
and places log files there. For example:
./dbdowngrade -l /databases/downgrade/logs
If you do not specify a directory for log files, then the log files produced by the downgrade scripts are placed under the first directory found of one of these three options, in order of precedence:
-
The Oracle base home identified by the
orabasehome
command -
The Oracle base home identified by the
orabase
command -
The Oracle home identified by the
oracle_home
command
$ $ORACLE_HOME/bin/orabasehome
/u01/app/oracle/product/23.0.0/dbhome_1
In
this example, the $ORACLE_BASE directory is
/u01/app/oracle/product/23.0.0/dbhome_1
, and the logs are located in
/u01/app/oracle/product/23.0.0/dbhome_1/cfgtoollogs/downgrade
.
In the directory, the log files are prefixed with the string
catdwgrd
.
To further manage how the dbdowngrade
script runs, you can specify
the following additional options:
-d directory-path
Specify the directory path, defined bydirectory-path
, where you want thecatdwgrd.sql
file placed-e
Specify that you want to turn echo off whilecatdwgrd.sql
runs (the default is set to on).-n number
Specify the number of parallel processes you want thedbdowngrade
command to use. By default, the number of processes is equal to the number of CPUs divided by 2 (cpu_count/2
).-b log-file-name-base
Specify a different base file name (the value you provide for the variablelog-file-name-base
) for log files generated by the manual downgrade scriptcatdwgrd
. If you do not specify a different base file name, then the default file base name iscatdwgrd
.-h
Specify that you want dbdowngrade to display a list of command options. The dbdowngade script then outputs command options to the screen, and exits.
Note:
-
Read-write Oracle homes: the commands
orabaseconfig
andorabasehome
both return the environment setting for ORACLE_HOME. -
Read-only Oracle homes: the command
orabaseconfig
returns the read-only path configuration for the Oracle base in the path$ORACLE_BASE/homes
.
Related Topics
Parent topic: Using Scripts to Downgrade Oracle Database 23ai
Downgrading Oracle Databases Manually with catdwgrd.sql
When you prefer to downgrade Oracle Database manually, or if you are
concerned about excessive thread issues, you can run the manual
catdwgrd.sql
script.
catdwgrd.sql
script to downgrade Oracle
Database to an earlier a supported major release, or an earlier release update.
If you are downgrading from Oracle Database 23ai to Oracle Database 21c then you can downgrade all databases in a multitenant container database (CDB), or one pluggable database (PDB) within a CDB. Oracle Database releases earlier than Oracle Database 12c did not use multitenant architecture.
Note:
Starting with Oracle Database 21c, non-CDB architecture is desupported. If you upgraded a non-CDB and converted to a PDB, you can only downgrade back to a PDB. It's not possible to revert the non-CDB to PDB conversion. Starting with Oracle Database 23ai, Oracle Label Security is desupported.
At the completion of this procedure, your database is downgraded.