Using the dbaascli Utility on
Exadata Cloud Infrastructure
Learn to use the dbaascli utility on Exadata Cloud Infrastructure.
About Using the dbaascli Utility on Exadata Cloud Infrastructure You can use the dbaascli utility to perform various database lifecycle and administration operations on Exadata Cloud Infrastructure such as changing the password of a database user, starting a database, managing pluggable databases (PDBs), and more.
Creating Databases Using dbaascli Using dbaascli, you can create an Oracle Database by first creating an Oracle Database home of desired version, followed by creating a database in that Oracle Database home
Collect Cloud Tooling Logs and Perform a Cloud Tooling Health Check Using dbaascli Using the dbaascli diag command allows you to collect Guest VM dbaas tooling logs for Exadata Database Service on Dedicated Infrastructure and Exadata Database Service on Cloud@Customer systems. You can use these logs to troubleshoot issues related to dbaas tooling.
Updating Cloud Tooling Using dbaascli To update the cloud tooling release for Oracle Exadata Database Service on Dedicated Infrastructure, complete this procedure.
About Using the dbaascli Utility
on Exadata Cloud Infrastructure π
You can use the dbaascli utility to perform various database lifecycle and
administration operations on Exadata Cloud Infrastructure
such as changing the password of a database user, starting a database, managing pluggable
databases (PDBs), and more.
You must use the Oracle Cloud Infrastructure console or
command-line interface to scale resources. The capabilities of the
dbaascli utility are in addition to, and separate from, the
Console, API, or command-line interface (CLI). Unless specified differently, you need
root access to dbaascli to run all administration
commands.
To use the utility, you must be connected to an Exadata Cloud Infrastructure virtual machine. For
detailed instructions, see Connecting to an Exadata Cloud Infrastructure Instance .
To get possible commands available with
dbaascli, run dbaascli --help.
To get command-specific help, run dbaascli
command --help. For example, dbaascli database create
--help.
See dbasscli Command Reference in the document for
commands and command specific information.
Using dbaascli, you can create an Oracle Database by first
creating an Oracle Database home of desired version, followed by creating a database in that
Oracle Database home
Listing Available Software Images and Versions
for Database and Grid Infrastructure π
To produce a list of available supported versions for patching, use the
dbaascli cswlib showImages command.
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following
command:
dbaascli cswlib showImages --product database
The command output lists the available database software
images.
dbaascli cswlib showImages --product grid
The command output lists the available grid software
images.
Exit the root user command
shell:
exit
For more details on advanced
supported options, see dbaascli cswlib showImages.
Example 6-1 dbaascli cswlib showImages
[root@dg11lrg1 dbhome_1]# dbaascli cswlib showImages
DBAAS CLI version <version>
Executing command cswlib
showImagesJob id: 00e89b1a-1607-422c-a920-22f44bec1953Log file location:
/var/opt/oracle/log/cswLib/showImages/dbaastools_2022-05-11_08-49-12-AM_46941.log
############
List of Available Database Images
#############
17.IMAGE_TAG=18.17.0.0.0
VERSION=18.17.0.0.0
DESCRIPTION=18c JAN 2022 DB Image
18.IMAGE_TAG=19.10.0.0.0
VERSION=19.10.0.0.0
DESCRIPTION=19c JAN 2021 DB Image
19.IMAGE_TAG=19.11.0.0.0
VERSION=19.11.0.0.0
DESCRIPTION=19c APR 2021 DB Image
20.IMAGE_TAG=19.12.0.0.0
VERSION=19.12.0.0.0
DESCRIPTION=19c JUL 2021 DB Image
21.IMAGE_TAG=19.13.0.0.0
VERSION=19.13.0.0.0
DESCRIPTION=19c OCT 2021 DB Image
Images can be downloaded using their image tags. For details, see help using 'dbaascli cswlib download --help'.
dbaascli execution completed
To create an Oracle Database home of desired version, use the
dbaascli dbhome create command.
Note
You can create an Oracle Database
home with a specified Oracle home name. If you do not specify, then this is computed
automatically (recommended).
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following command:
dbaascli dbhome create --version Oracle Home Version --imageTag image Tag Value
Where:
--version specifies the Oracle
Database version
--imageTag specifies the Image Tag of
the image to be used
For
example:
dbaascli dbhome create --version 19.9.0.0.0
Note
Specifying
imageTag is optional. To view the Image Tags, refer to
command dbaascli cswlib showImages. Image Tags are
typically same as the version of the database. However, it is kept as a
provision for cases where multiple images may need to be released for the
same version - each catering to a specific customer requirement.
Exit the root user command
shell:
exit
For more
details on advanced supported options, see dbaascli dbhome
create.
Creating Oracle Database In the Specified
Oracle Database Home π
To create an Oracle Database in the specified Oracle Database home of
desired version, use the dbaascli database create command.
You can use the dbaascli database create command
to:
Create a Container Database (CDB) or non-Container Database
Create a CDB with pluggable databases (PDBs)
Create an Oracle Database with the specified Character Set
Create Oracle Databases on a subset of cluster nodes
Note
Databases
created on a subset of nodes will not be displayed in the OCI
console.
Create Oracle Database version 12.1.0.2 or higher with the release update JAN
2021 or higher. For databases with lower versions, it is recommended to use the
OCI Console based API.
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following
command:
dbaascli database create --dbName database name --oracleHome Oracle Home Path
Where:
--dbName specifies the name of the
database
--oracleHome specifies Oracle home
location
To create a CDB, run the following
command:
dbaascli database create --dbName database name --oracleHome Oracle Home Path
To
create a non-CDB, run the following
command:
dbaascli database create --dbName database name --oracleHome Oracle Home Path --createAsCDB false
When
prompted, enter the sys and tde
passwords.
Exit the root user command
shell:
exit
For more
details on advanced supported options, see dbaascli database
create.
Running Prerequisite Checks Prior to Creating
Oracle Database π
To run prerequisites checks, use the --executePrereqs
command option. This will perform only the prerequisite checks without performing the actual
Oracle Database creation.
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following
command:
dbaascli database create --dbName database name --oracleHome Oracle Home Path --executePrereqs
Where:
--dbName specifies the name of the
database
--oracleHome specifies the Oracle home
location
Exit the root user command
shell:
exit
For more
details on advanced supported options, see dbaascli database
create.
Resuming or Reverting Oracle Database Creation
Operation π
To resume or revert a failed database creation operation, use the
--resume or --revert command option.
For
example:
dbaascli database create --dbName database name --oracleHome Oracle Home Path --resume
Note
While using the --resume or --revert
command options, ensure that you use the same command from the same node
that was used for actual create operation flow.
You can resume database creation only if there is a failure in the post
database creation step.
To change the SYS password, or to change the TDE wallet password, use this
procedure.
The password that you specify in the Database Admin
Password field when you create a new Exadata Cloud Infrastructure instance or database is set as the password for the
SYS, SYSTEM, TDE wallet, and PDB administrator credentials. Use the following
procedures if you need to change passwords for an existing database.
Note
if you are enabling Data Guard for a database, then the SYS password and the TDE
wallet password of the primary and standby databases must all be the same.
Note
Using the dbaascli
to change the SYS password will ensure the backup/restore automation can parallelize
channels across all nodes in the
cluster.
Managing Exadata Cloud Infrastructure Software Images Using the Dbaascli
Utility
π
You can list and download the Oracle database software images on an Exadata Cloud Infrastructure instance, which can
then be used for provisioning a database home.
Note
You can create custom database
software images for your Exadata Cloud Infrastructure instances using the Console or API. These images
are stored in Object Storage, and can be used to provision a Database Home
in your Exadata instance. See Oracle Database Software
Images more information.
You can control the version of Oracle binaries that is installed when you provision a
new database on an Exadata Cloud Infrastructure instance by maintaining the software images on
the system. Oracle provides a library of cloud software images that you can
view and download onto your instance by using the dbaascli
utility.
To download a software image You can download available software images onto your Exadata Cloud Infrastructure instance by using the cswlib download subcommand of the dbaascli utility.
Listing Available Software Images and Versions
for Database and Grid Infrastructure π
To produce a list of available supported versions for patching, use the
dbaascli cswlib showImages command.
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following
command:
dbaascli cswlib showImages --product database
The command output lists the available database software
images.
dbaascli cswlib showImages --product grid
The command output lists the available grid software
images.
Exit the root user command
shell:
exit
For more details on advanced
supported options, see dbaascli cswlib showImages.
Example 6-2 dbaascli cswlib showImages
[root@dg11lrg1 dbhome_1]# dbaascli cswlib showImages
DBAAS CLI version <version>
Executing command cswlib
showImagesJob id: 00e89b1a-1607-422c-a920-22f44bec1953Log file location:
/var/opt/oracle/log/cswLib/showImages/dbaastools_2022-05-11_08-49-12-AM_46941.log
############
List of Available Database Images
#############
17.IMAGE_TAG=18.17.0.0.0
VERSION=18.17.0.0.0
DESCRIPTION=18c JAN 2022 DB Image
18.IMAGE_TAG=19.10.0.0.0
VERSION=19.10.0.0.0
DESCRIPTION=19c JAN 2021 DB Image
19.IMAGE_TAG=19.11.0.0.0
VERSION=19.11.0.0.0
DESCRIPTION=19c APR 2021 DB Image
20.IMAGE_TAG=19.12.0.0.0
VERSION=19.12.0.0.0
DESCRIPTION=19c JUL 2021 DB Image
21.IMAGE_TAG=19.13.0.0.0
VERSION=19.13.0.0.0
DESCRIPTION=19c OCT 2021 DB Image
Images can be downloaded using their image tags. For details, see help using 'dbaascli cswlib download --help'.
dbaascli execution completed
You can download available software images onto your Exadata Cloud Infrastructure instance by using the
cswlib download subcommand of the dbaascli
utility.
Connect to a compute node as the opc user.For detailed
instructions, see Connecting to a Virtual Machine with SSH.
Start a root-user command shell:
$ sudo -s
#
Execute the dbaascli command with the cswlib
download subcommand:
# dbaascli cswlib download [--version <software_version>] [--imageTag <image tag
value>]
The command displays the location of software images that
are downloaded to your Exadata Cloud Infrastructure environment.
The optional parameters
are:
version: specifies an Oracle Database software
version. For example, 19.14.0.0.0.
Patching Oracle Grid
Infrastructure and Oracle Databases Using dbaascli π
Learn to use the dbaascli utility to perform patching
operations for Oracle Grid Infrastructure and Oracle Database on an
Exadata Cloud Infrastructure
system.
Patching Databases using dbaascli Using dbaascli, you can choose to patch a database by patching Oracle home, or by moving the database to an Oracle home with the desired patch level.
Patching a Database Home (In-Place Database
Patching) π
To patch an Oracle home, use the dbaascli dbHome patch
command.
This will patch all databases running in the specified home, and the
databases will remain in the home after the patching is complete. The following
apply to using the dbHome patch command for in-place patching
operations:
You can patch all of your database nodes or a subset of
nodes.
Multi-node patching takes place in a rolling fashion.
Optionally, you can perform a software-only patch operation.
Then, when you are ready, you can run datapatch to perform
post-patch SQL actions.
You can patch an Oracle home containing one or more
databases.
To patch an Oracle Home (dbhome):
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
--oracleHome identifies the path of the
Oracle home to be patched.
--targetVersion specifies the target
Oracle Database version to use for patching, specified as five
numeric segments separated by periods (e.g. 19.12.0.0.0).
--oracleHome identifies the path of the
target Oracle home that uses the desired Oracle Database software
version. Note that the target Oracle home must exist in your system
prior to using the database move command.
--dbname specifies the name of the
database that is being moved.
Patching Oracle Grid Infrastructure (GI) Using
GI Software Image π
To patch Oracle Grid Infrastructure (GI) using GI software image, use this
procedure.
Oracle Grid Infrastructure can also be patched by first creating a
patched software image, and then using that image to perform the patching operation.
This provides the advantage that an image can be created ahead of time outside of
the patching window. It also helps in conflict resolution as any conflicts among the
patches are highlighted during the image creation process without impacting the
patching window.
Listing Available Software Images and Versions
for Database and Grid Infrastructure π
To produce a list of available supported versions for patching, use the
dbaascli cswlib showImages command.
Connect to the virtual machine as the opc user.
For detailed
instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
Run the following
command:
dbaascli cswlib showImages --product database
The command output lists the available database software
images.
dbaascli cswlib showImages --product grid
The command output lists the available grid software
images.
Exit the root user command
shell:
exit
For more details on advanced
supported options, see dbaascli cswlib showImages.
Example 6-3 dbaascli cswlib showImages
[root@dg11lrg1 dbhome_1]# dbaascli cswlib showImages
DBAAS CLI version <version>
Executing command cswlib
showImagesJob id: 00e89b1a-1607-422c-a920-22f44bec1953Log file location:
/var/opt/oracle/log/cswLib/showImages/dbaastools_2022-05-11_08-49-12-AM_46941.log
############
List of Available Database Images
#############
17.IMAGE_TAG=18.17.0.0.0
VERSION=18.17.0.0.0
DESCRIPTION=18c JAN 2022 DB Image
18.IMAGE_TAG=19.10.0.0.0
VERSION=19.10.0.0.0
DESCRIPTION=19c JAN 2021 DB Image
19.IMAGE_TAG=19.11.0.0.0
VERSION=19.11.0.0.0
DESCRIPTION=19c APR 2021 DB Image
20.IMAGE_TAG=19.12.0.0.0
VERSION=19.12.0.0.0
DESCRIPTION=19c JUL 2021 DB Image
21.IMAGE_TAG=19.13.0.0.0
VERSION=19.13.0.0.0
DESCRIPTION=19c OCT 2021 DB Image
Images can be downloaded using their image tags. For details, see help using 'dbaascli cswlib download --help'.
dbaascli execution completed
Performing a Precheck Before
Patching Databases and Grid Infrastructure π
You can perform a prerequisites-checking operation (also called a
"precheck") for the commands in this topic using the applicable precheck flag.
Running prechecks allows you to run only the precheck portion of the patching operation
without performing actual patching. Oracle recommends running prechecks to discover
software issues that could prevent successful patching.
To perform patching prechecks, first, connect to a virtual machine in your
Exadata Cloud Infrastructure instance as the
root user.
--oracleHome identifies the path of the
Oracle home to be prechecked.
--targetVersion specifies the target
Oracle Database version to be patched to, specified as five numeric
segments separated by periods (e.g. 19.12.0.0.0).
--oracleHome identifies the path of the
target Oracle Home that uses the desired Oracle Database software
version. Note that the target Oracle Home must exist in your system
prior to using the database move command.
--dbname specifies the name of the
database that is being moved
Where --targetVersion identifies target
software version that the Oracle Grid Infrastructure will be patched to,
specified as five numeric segments separated by periods, for example,
19.12.0.0.0
Resume and Rollback operations are supported for Oracle
Home patching, Oracle Grid Infrastructure patching, and database
move operations.
When resuming or rolling back a patching operation, you must run the
resume or rollback command from the same node that was used to run
the original patching command, and you must run the original command
with the addition of the --resume or
--rollback flag.
Collect Cloud Tooling Logs and
Perform a Cloud Tooling Health Check Using dbaascli π
Using the dbaascli diag command allows you to collect Guest
VM dbaas tooling logs for Exadata Database Service on Dedicated
Infrastructure and Exadata Database Service on Cloud@Customer systems. You can use these
logs to troubleshoot issues related to dbaas tooling.
You can use the diag command to collect dbaastools logs and
perform a health check on all nodes in an Exadata cluster. Note that the
--waitForCompletion options is supported starting in version
22.4.1
Note
dbaascli diag commands must be run as the
root user
Running the dbaascli diag collect command on a
single node will collect log data for all nodes
We recommend running the commands documented in this topic using
the --waitForCompletion option for long-running commands.
Refer to the examples for sample
usage.
For information on updating Exadata Cloud Tooling, see dbaascli admin
updateStack.
To update the cloud tooling release for Oracle Exadata Database Service on Dedicated
Infrastructure,
complete this procedure.
Cloud-specific tooling is used on the Exadata Cloud Infrastructure Guest VMs
for local operations, including dbaascli
commands.
The cloud tooling is automatically updated by Oracle when
new releases are made available. If needed, you can follow the steps
below to ensure you have the latest version of the cloud-specific
tooling on all of the virtual machines in the VM cluster.
Note
You can
update the cloud-specific tooling by downloading and
applying a software package containing the updated
tools.
Connect to a virtual machine as the
opc user.
For
detailed instructions, see Connecting to a Virtual Machine with
SSH.
Start a root user command
shell:
sudo -s
To update to the latest available cloud tooling release, run the following command:
dbaascli admin updateStack
The command takes care of updating the cloud tooling
release on all the nodes of the cluster.
For
more details and other available options, refer to
dbaascli admin updateStack
--help.
You can create a duplicate database using dbaascli. This new database
can be in the same cloud region as the source region or across the regions. The
following steps describe how to create a duplicate database on cloud.
Note
If a database is configured with OCI Vault for TDE encryption and you want to
duplicate a database, then refer to the following sections.
Prepare for duplication
Ensure that the following prerequisites are ment:
Make sure that there is a network path setup to access the source database
through the EZConnect string.
Copy the TDE wallet file (ewallet.p12 ) to the target
database node. The node where you decide to run the dbaascli
command.
Create an Oracle home on the target node if required. Oracle home version must
be the same version as the source or of higher RU version.
Run prerequisite checks
To run prerequisites checks, use the --executePrereqs command
option. This will perform only the prerequisite checks without performing the actual
Oracle Database duplication.
Considerations When Using OCI
Vault for the Key Management π
This section is applicable only in the case of database is
configured with OCI Vault for TDE encryption and you
want to duplicate a database.
Duplicating a database within the same
region
Additional prerequisite steps
Make sure to
setup OCI Vault access policies for target
database nodes. Target database nodes should be
able to access both source database's OCI key
vault along with its new key vault (if it is
decided to use separate key vault).
Using dbaascli, you can duplicate an on-prem database onto the cloud. This can be done with the dbaascli database duplicate command. This command creates a new database on the cloud, which is a duplicate of an on-prem database along with its data. While this process is going on, the on-prem database remains still operational. You can migrate your applications to the duplicated database on the cloud after due verification.
Prepare for duplication
The migration process includes the following prerequisites to be met.
Make sure that there is a network path setup to access an on-prem database from the OCI node through the EZConnect string.
If an on-prem database is configured with TDE, copy the TDE wallet file (ewallet.p12 ) to the OCI node, where you decide to run the dbaascli command.
Create an Oracle home on the OCI node if required. The Oracle home version must be the same as the source or of a higher RU version.
Verify the necessary RPMs
This process requires a minimum dbaastools RPM version of 23.3.2.0.0 but updating to the latest dbaastools rpm is always recommended.
To check the currently installed version, run:
dbaascli --version
DBAAS CLI version 23.3.2.0.0
To apply the latest tools RPM, as the root user, run:
# dbaascli admin updateStack
Run the prerequisite checks
To run the prerequisite checks, use the --executePrereqs command option. This will perform only the prerequisite checks without performing the actual Oracle Database duplication.
Upon successful completion of this command, the database is duplicated to Cloud and ready for sanity checks for application usage. Once verification is done, application connections can be migrated to the Cloud database.
Refer to dbaascli database duplicate βhelp for additional configuration options.
Few considerations for migration
If you prefer to allocate multiple channels for RMAN duplicate, you could do so by specifying the --rmanParallelism argument.
Exadata Cloud Service configures database memory as Automatic Shared Memory Management (ASMM). If your on-prem database is configured with different memory management, make sure to adjust memory parameter values accordingly on the OCI side by providing values for --sgaSizeInMB and --pgaSizeInMB.
Verify that the on-prem database does not contain any deprecated or invalid initialization parameters.
Database initialization parameters related to database storage (datafile location, redo location, recovery area destination, control file multiplexing) may be changed using the --initParams argument.
For example, to override db_create_online_log_dest value for the duplicate database: --initParams db_create_online_log_dest_1=+DATAC1,db_create_online_log_dest_2=+RECOC1
Troubleshooting the database duplication
dbaascli operation log file can be found under /var/opt/oracle/log/<dbname>/database/duplicate
One of the jobs of the duplicate is to run dbca. Its log file can be found under /u02/app/oracle/cfgtoollogs/dbca and /u02/app/oracle/cfgtoollogs/dbca/<dbuniquename>.
If the operation fails, you will have an option to resume the operation by providing the --resume argument to the same command. Alternatively, clean up the database using dbaascli database delete βdbname <dbname> βforce, and then rerun the database duplicate command.
Backup and Recovery: Minimum Backup recovery window has been changed to 7 days. While obsoleting backup pieces automation considers recovery window as 7 days if it discovers any value less than 7 from the system.
Added support to set custom key version OCID (Bring Your Own Key - BYOK) of
OCI Vault during create and clone operations. For details, see respective
PDB commands help.
Grid Infrastructure (GI) Patching
Enhanced the patching workflow to improve patching time, especially in
environments having high number of databases.
A new option --patchInParallel is introduced that can be used to perform patching remote nodes in parallel.
Database Patching
Provided option to run datapatch on a specific node of cluster.
dbaascli gridHome create - This command can be used to
create a Grid Infrastructure home of a supported version. For details, see
dbaascli gridHome create --help.
dbaascli system getGridHomes - This command gives details
on the available Grid Infrastructure homes on the system. For details, see
dbaascli system getGridHomes --help.
dbaascli admin updateAHF - This command can be used to
update the AHF to a specified cloud certified version of AHF release. It is
however recommended that AHF updates be implicitly handled by cloud
automation. For details, see dbaascli admin updateAHF
--help.
Pluggable Database Operations
Improvements in the area of refreshable pluggagble database lifecycle.
Database Backup and Recovery
Added support to configure backups on standby sites in case of dataguard
configurations. The backups configuration are Data Guard site-specific, that
is, the change of roles (for example, with Data Guard switchover operation)
will not impact the backup operations of the database on primary or standby
sites. Backups, if configured on primary site or stand-by site, will
continue regardless of the role-change.
Introduced dbaascli grid removeTCPSCert to remove expired
TCPS certificates. For details, see dbaascli grid removeTCPSCert
--help.
Added option to exclude specific PDBs during database duplicate. For
details, see skipPDBs argument in dbaascli database
duplicate --help.
Database Backup and Recovery
Changed the default for FILES_PER_SET to 64
for OSS backups. This can be changed with dbaascli database backup
--configure. For details, see dbaascli database backup
--help.
Archive log backups continue from the standby site after the role switchover
in data guard environments.
For backups that are not managed by Oracle, the schedules for L0
and L1 backups are not created by default. They must be be created
explicitly by using dbaascli database backup --configure
command.
sysLens
A framework that collects, analyzes, and reports
system resource data for ExaDB-D fleets is included in 23.2.1.0.0 (235503). For
more information, see Manage sysLens.
Added option to create database templates (DBCA temapltes) to object store.
DBCA templates can subsequently be used to create databases. For details,
see dbaascli database createTemplate --help.
Pluggable Database Operations
Introduced dbaascli pdb refresh to refresh a pluggable
database that was created using manual refresh option. For details, see
dbaascli pdb refresh --help.
Added option to convert refreshable pluggable database to a regular
pluggable database. For details, see dbaascli pdb open
--help.
Creation of a refreshable pluggable database now requires existing source
database user for creation of database link to the source pluggable
database. For details, see dblinkUserName argument in
dbaascli pdb remoteClone --help.
Added option to not open the PDB at the end of relocate. For details, see
skipOpenPDB argument in dbaascli pdb relocate
--help. After using this option, the pdb relocate can be
completed by running the command using completePDBRelocate
argument.
Added option to clean up the relocated PDB metadata/services at the source
location. For details, see cleanupRelocatedPDB argument in
dbaascli pdb delete --help
New dbaascli commands
dbaascli database createTemplate - This command
can be used to create database templates (DBCA templates) that can
subsequently be used to create databases. DBCA templates are widely used for
creating a clone database with DBCA - a tool that is shipped with Oracle
Database server software. For details, see dbaascli database
createTemplate --help
Introduced dbaascli tde rotateMasterKey to
rotate the master key for database encryption. For details, see
dbaascli tde rotateMasterKey --help. The command
dbaascli tde rotate masterkey is now deprecated.
Database Lifecycle related improvements
Added support to use dbca templates in database creation workflows. For
details, see dbcaTemplateFilePath argument in
dbaascli database create --help
Improved performance for duplicate database creation. For details on how to
create duplicate database, see dbaascli database duplicate
--help
Added support to create a duplicate database from a source database which is
not TDE-encrypted.
TDE management
Introduced dbaascli tde rotateMasterKey to rotate the
master key for database encryption. For details, see dbaascli tde
rotateMasterKey --help. The command dbaascli tde rotate
masterkey is now deprecated.
Revamped workflow for all TDE operations. For details, see dbaascli
tde --help
Grid Infrastructure (GI) Patching
Added support to allow parallel execution of patching operation on nodes.
This option needs to be carefully exercised as it results into reduced
database availability.
Database Backup and Recovery
Revamped workflow for creating database from standalone backups
dbaascli database getDetails - This command
shows the detailed information of a given database, for example, dbname,
node information, pluggable databases information, and so on. For details,
see dbaascli database getDetails --help.
Pluggable Database Operations
Added support for creating pluggable databases as refreshable
clone using refreshablePDB argument. For details, see
dbaascli pdb remoteClone --help
dbaascli database addInstance - This command can be used to
add a database instance to one of the nodes of the cluster where database is
not already configured. For details, see dbaascli database
addInstance --help.
dbaascli database deleteInstance - This command can be used
to delete a database instance from one of the nodes of the cluster where
database is configured. For details, see dbaascli database
deleteInstance --help.
dbaascli database duplicate - This command can be used to
create a new database from an already existing database within a cluster, or
across clusters, provided network connection exists between the clusters.
For details, see dbaascli database duplicate --help.
Cloud Software Library
Introduced dbaascli cswlib listLocal command to
list images that are downloaded from software library locally on the system.
For details, see dbaascli cswlib listLocal --help The
command dbaascli dbimage list is now deprecated.
Introduced dbaascli cswlib deleteLocal command
to delete images that are downloaded from cloud software library. For
details, see dbaascli cswlib deleteLocal --help The command
dbaascli dbImage purge is now deprecated.
The log location for the command dbaascli admin
updateStack has been changed to follow the convention of other
dbaascli commands. The logs can be conveniently found under
/var/opt/oracle/log/admin/updateStack directory. The
earlier location was /var/opt/oracle/log/tooling/Update.
dbaascli help is now cloud platform aware in that it will list help
output for commands applicable for the cloud environment it is operating on.
Added support for changing TDE password in dataguard environments. For details, see
dbaascli tde changePassword --help. This support is currently not available for
11.2.0.4 release.
Included AHF version 22.1.5.
Revamped workflow for database upgrade operation.
Revamped workflow for database home create operation.
dbaascli dbHome getDatabases - This command
lists all the databases running from a given database Oracle home. The
output is returned in JSON format to facilitate automation. For details, see
dbaascli dbHome getDatabases --help.
dbaascli database getPDBs - This command lists
all the pluggable databases of a given container database. The output is
returned in JSON format to facilitate automation. For details, see
dbaascli database getPDBs --help.
dbaascli dbHome delete - This command deletes
a given database Oracle home. For details, see dbaascli dbHome
delete --help.
dbaascli dataguard prepareStandbyBlob - This
command generates a blob file containing various files that are required on
the standby site for a Data Guard environment. For details, see
dbaascli dataguard prepareStandbyBlob --help.
Grid Infrastructure (GI) Patching:
New optimized workflow
Introduced a way to create the Grid Infrastructure (GI)
software image prior to patching. This GI image can be subsequently used for
performing the GI patching operation. The advantage of this approach is that
it results in reduced patching window as the image is already prepared. The
GI stack on the node is not brought down to create the image. For details,
see createImage option in dbaascli grid patch
--help
Introduced a way to perform the Grid Infrastructure patching
through the use of user specified GI software image, created using
createImage option of the dbaascli grid
patch command. For details, see imageLocation
option in dbaascli grid patch --help.
Change Password support in Data Guard environment:
Added support to change password in Data Guard environments.
For details, see dbaascli database changePassword --help
and dbaascli dataguard prepareStandbyBlob --help
Data Guard configuration:
Added support to update Data Guard Automation Attributes (in the
/var/opt/oracle/dg/dg.conf file). For details, see
dbaascli dataguard --help.
Introduced dbaascli admin showLatestStackVersion to show the latest
dbaastools version available for customers to download and install. The
installation of dbaastools rpm can be performed by using the command
dbaascli admin updateStack. For details see βdbaascli Command
Referenceβ section.
Cloud Software Library
Deprecated the support for BP activation (dbaascli cswlib activateBP)
as BPs (Bundle Patches) are now replaced with RUs (βRelease Updatesβ). Cloud
deployment consumes RUs in the form of software images, identified with
βImage Tagsβ. It is therefore recommended to use image tags while
interfacing with Cloud Software Library (cswlib) commands. For details, see
dbaasscli cswlib download βhelp.
Eliminated the need to download Non-CDB images to create nonCDB
databases. Now users can create the nonCDB database using regular images.
For details, see createAsCDB option in dbaascli database create
βhelp.
Non-CDB Database Creation
Enhanced database creation workflow to create a nonCDB database using
standard database software image. For details, see createAsCDB option
in dbaascli database create βhelp.
Database Home Patching
New optimized workflow
Grid Infrastructure Upgrade
New optimized workflow
Pluggable Database (PDB) Operations
Deletion of PDB in DataGuard environments requires explicit acknowledgement
to indicate that operations necessary on standby site are completed, by
passing of additional argument βallStandByPrepared. For details, see
dbaascli pdb delete --help
Provided rolling capability for database bounce operation. For details, see
dbaascli database bounce βhelp.
Introduced dbaascli system getDBHomes to get all the
database Oracle homes on the cluster. The output is returned in JSON format
to facilitate automation.
Introduced dbaascli dbhome getDetails to get detailed
information on a specific Oracle home. The output is returned in JSON format
to facilitate automation.
Cloud Software Library (cswlib):
Deprecated the support for dbaascli cswlib list command for
cloud software library listing operations. The new command is
dbaascli cswlib showImages that lists the images along
with its of ImageTag. It is recommended to use
Image tags to download the images from the cloud
software library. For details on downloads using image tags, see
dbaascli cswlib download βhelp.
Internal update to metadata repository for backup metadata
Introduced deprecation messages for bkup_api commands as they are now
replaced with dbaascli commands. For details, see βdbaascli database backup
--helpβ and βdbaascli database recover βhelpβ
Pluggable Database (PDB) Operations
Relocate operation of PDB is now supported. For details, see βdbaascli pdb
relocate βhelpβ.
Revamped workflow for nonCDB to PDB conversion. For details, see βdbaascli
database convertToPDB βhelpβ.
Encryption Key Management
Transparent Data Encryption (TDE) heartbeat specific initialization
parameters are set to the cloud recommended values for databases with
'Customer Managed Keys'.
Cloud Software Library Management
Revamped software library download of artifacts through imageTags. It is
recommended to use imageTags to download the database and grid software
images. For details, see βdbaascli cswlib showimagesβ and βdbaascli cswlib
download βhelpβ
Enabled encryption of the system level tablespaces
(SYSTEM, SYSAUX, UNDO, and
TEMP) for databases that will get created with this version of
dbaastools onwards. This feature is enabled for Oracle Database version 19.6.0.0.0
and above.
Grid Patching:
Prerequisite condition added to check for following file
ownership to be owned by grid user.
Simultaneous database move operation is
disallowed by default. A new option βallowParallelDBMove is
introduced that can be used to override the default behavior for Oracle
Database releases 12.2 and above.
Fixed issues related to move of standby databases being in
MOUNT mode.
Database Backup and Recovery:
Added new command-line options for database backup. For more
details, refer to dbaascli database backup command
reference.
Added new command-line options for database recovery. For more
details, refer to dbaascli database recover command
reference.
bkup_api usage for backup and recovery
operations will be deprecated in future.
To align with the Oracle recommended practice of using
SYSBACKUP administrative privilege for Backup and
Recovery operations, cloud automation creates a common administrative user
C##DBLCMUSER with SYSBACKUP role at
the CDB$ROOT container level. Backup and Recovery
operations are therefore performed with the user having the least required
privileges. Credentials for this user are randomly generated and securely
managed by cloud automation. If the user is not found or is
LOCKED and EXPIRED, then cloud
automation will recreate or unlock this user during the backup or recovery
operation. This change in the cloud automation is made starting with
dbaastools version 21.4.1.1.0.
Enhanced dbaascli resume functionality to resume any
previous session by specifying the βsessionID <value> argument to the resume command. The session ID
is shared in the dbaascli output as well as in the logs.
Enhanced dbaascli help output to show the command
usage.
Deprecated the usage of dbaascli shell (interactive
session). This will be completely unsupported after March 2022. It is recommended to
execute complete dbaascli commands on command prompt as suggested
in all document examples.
Included Autonomous Health Framework (AHF) version 21.2.8.
Improved the timing of dbaascli operations with
enhanced Control Plane metadata synchronization logic.
Enhanced dbaascli logs to have millisecond-level
information along with the associated thread.
Introduced more prerequisite checks in database home patching and
database move operations to catch potential failures scenarios with suggestions to
corrective action.
Database patching operations now retain the state of the databases to
be same as it was prior to patching. For pluggable databases, pdb saved state is
honored.
Added support to unlock PDB Admin user account as part of PDB creation,
localClone, or remoteClone operation. For
details, see option --lockPDBAdminAccount in dbaascli pdb
create --help.
Fixed an issue that updates the database resource registered with Oracle
Grid Infrastructure in existing environments with the correct value of database
name.
Support for the following dbaascli commands to be run
as oracle user.
dbaascli pdb bounce
dbaascli pdb close
dbaascli pdb connectString
dbaascli pdb create
dbaascli pdb delete
dbaascli pdb getDetails
dbaascli pdb list
dbaascli pdb localClone
dbaascli pdb open
dbaascli pdb remoteClone
Revamped out-of-place patching of database. For details, see
dbaascli database move βhelp.
Timing related enhancements in Oracle Grid Infrastructure patching
workflow. For details, see dbaascli grid patch βhelp.
Deprecated the support for exadbcpatchmulti /
dbaascli patch for patching operations. The dbaascli
dbhome patch and dbaascli grid patch commands are
provided for patching operation for database homes and Oracle Grid Infrastructure.
Refer to the Patching Oracle Grid Infrastructure and Oracle Database Using dbaascli section for details. Also see,
dbaascli Command Reference section.
Deprecated the support for dbaascli tools patch command
to bring consistency in the dbaascli command conventions. The new
command is dbaascli admin updateStack. For details, see section
Updating Cloud Tooling using dbaascli.
Ability to run dbaascli in disconnected mode for long
running operations. Executing dbaascli command with
--waitForCompletion false gets you a job ID that can be queried
later to get the status of the operation, using dbaascli job getStatus
βjobid job_id. This is useful for long
running operations where users may want to get the control back immediately after
command execution. In this release, this option is available only for
dbaascli database create command. More commands will be added
in subsequent releases to have this support. The help output for those commands will
reflect the support of --waitForCompletion option.
Deprecated the support for dbaascli shell. It is
recommended that users run the complete dbaascli commands on the
command prompt as suggested in all the document examples. Execution of just
dbaascli will show the output of its usage help instead of
entering into a dbaascli shell.
Redesigned Oracle Grid Infrastructure patching operation and added
ability to resume from failed point, patch on subset of nodes, instance draining,
and other enhancements. For details, see dbaascli grid patch
--help. Also refer to the Patching Oracle Grid
Infrastructure and Oracle Database Using dbaascli section.
Deprecated the support for exadbcpatchmulti /
dbaascli patch for patching operations. dbaascli dbhome
patch and dbaascli grid patch commands are provided
for patching operation for database homes and Oracle Grid Infrastructure. Refer to
the Patching Oracle Grid Infrastructure and Oracle Database Using
dbaascli section for details. Also see, dbaascli
Command Reference section.
Deprecated the support for dbaascli tools patch command
to bring consistency in the command conventions. The new command is dbaascli
admin updateStack.
Redesigned PDB management APIs for create, local clone, and remote clone
operations. For details, see dbaascli pdb --help.
Redesigned database delete API. For details, see dbaascli
database delete --help.
Revamped dbhome creation (support for custom software image, scale-out
operation). For details, see dbaascli dbhome create --help.
Support for database creation on subset of cluster nodes. For details,
see dbaascli database create --help.
Ability to run dbaascli in disconnected mode for long
running operations. Executing dbaascli command with
--waitForCompletion false gets you a job ID that can be queried
later to get the status of the operation, using dbaascli job getStatus
βjobid job_id. This is useful for long
running operations where users may want to get the control back immediately after
command execution. In this release, this option is available only for
dbaascli database create command. More commands will be added
in subsequent releases to have this support. The help output for those commands will
reflect the support of --waitForCompletion option.
Enhanced dbhome patching experience with introduction of multiple
options like skipPDBs, continueWithDowntime, and
so on. For details, see dbaascli dbhome patch --help.
Support for better diagnostic collection. For details, see
dbaascli diag collect --help.
Minor improvements in the area of database upgrade automation.
You
must use dbaascli to create databases and integrate them with the
cloud automation framework.
dbaascli is a cloud native interface that can take DBCA
templates as inputs, calls the functionality of DBCA to create databases,
and then calls OCI APIs to integrate the database into the cloud automation
framework. Customers using DBCA in scripts today can update their existing
scripts to call dbaascli instead of DBCA. If
dbaascli cannot be used due to a particular feature
of DBCA being unavailable in dbaascl, then customers should open a My Oracle
Support (MOS) request to add that functionality to
dbaascli.
Some dbaascli commands can be run as the
oracle or the opc user, but many commands
require root administrator privileges. Refer to each command for
specific requirements.
dbaascli admin updateAHF To install or update Autonomous Health Framework (AHF), use the dbaascli admin updateAHF command.
dbaascli admin updateStack To install or update a dbaastools RPM, use the dbaascli admin updateStack command.
dbaascli cswlib download To download available software images and make them available in your Exadata Cloud Infrastructure environment, use the dbaascli cswlib download command.
dbaascli cswlib listLocal To view the list of locally available Database and Grid Infrastructure images, use the dbaascli cswlib listLocal command.
dbaascli cswlib showImages To view the list of available Database and Grid Infrastructure images, use the dbaascli cswlib showImages command.
dbaascli database addInstance To add the database instance on the specified node, use the dbaascli database addInstance command.
dbaascli database backup To configure Oracle Database with a backup storage destination, take database backups, query backups, and delete a backup, use the dbaascli database backup command.
dbaascli database bounce To shut down and restart a specified Exadata Cloud Infrastructure database, use the dbaascli database bounce command.
dbaascli database changepassword To change the password of a specified Oracle Database user, use the dbaascli database changePassword command. When prompted enter the user name for which you want to change the password and then enter the password.
dbaascli database convertToPDB To convert the specified non-CDB database to PDB, use the dbaascli database convertToPDB command.
dbaascli database create To create Oracle Database, use the dbaascli database create command. When prompted, enter the sys and tde passwords.
dbaascli database delete To delete an Oracle Database, use the dbaascli database delete command.
dbaascli database deleteInstance To delete the database instance on the specified node, use the dbaascli database deleteInstance command.
dbaascli database duplicate To create a database from an active database, use the dbaascli database duplicate command.
dbaascli database getDetails This command shows the detailed information of a given database e.g. dbname, node information, pluggable databases information etc.
dbaascli database getPDBs To view the list of all pluggable databases in a container database, use the dbaascli database getPDBs command.
dbaascli database modifyParameters To modify or reset initialization parameters for an Oracle Database, use the dbaascli database modifyParameters command.
dbaascli database move To move the database from one home to another, use the dbaascli database move command.
dbaascli dataguard prepareStandbyBlob To generate a blob file containing various files that are required on the standby site in case of a dataguard environment, use the dbaascli dataguard prepareStandbyBlob command.
dbaascli dataguard updateDGConfigAttributes To update Data Guard automation attributes across all the cluster nodes, use the dbaascli dataguard updateDGConfigAttributes command.
dbaascli dbhome create To create an Oracle Database home of desired version, use the dbaascli dbhome create command.
dbaascli dbHome delete To delete a given Oracle Database home, use the dbaascli dbHome delete command.
dbaascli dbhome getDatabases To view information about all Oracle Databases running from a given database Oracle home, use the dbaascli dbHome getDatabases command. Specify either the Oracle home location or Oracle home name.
dbaascli dbHome getDetails To view information about a specific Oracle home, use the dbaascli dbHome getDetails command. Specify either the Oracle home location or Oracle home name.
dbaascli dbHome patch To patch Oracle home from one patch level to another, use the dbaascli dbHome patch command.
dbaascli dbimage purge The dbimage purge command removes the specified software image from your Exadata Cloud Infrastructure environment.
dbaascli diag collect To collect diagnostics, use the dbaascli diag collect command.
dbaascli diag healthCheck To run diagnostic health checks, use the dbaascli diag healthCheck command.
dbaascli gridHome create To configure Grid Infrastructure home, use the dbaascli gridHome create command.
dbaascli grid configureTCPS To configure TCPS for the existing cluster, use the dbaascli grid configureTCPS command.
dbaascli grid patch To patch Oracle Grid Infrastructure to the specified minor version, use the dbaascli grid patch command.
dbaascli grid removeTCPSCert To remove existing TCPS certificates from Grid Infrastructure wallet, use the dbaascli grid removeTCPSCert command.
dbaascli pdb backup To backup a pluggable database (PDB), query PDB backups, and delete a PDB backup, use the dbaascli pdb backup command.
dbaascli pdb bounce To bounce a pluggable database (PDB), use the dbaascli pdb bounce command.
dbaascli pdb close To close a pluggable database (PDB), use the dbaascli pdb close command.
dbaascli pdb getConnectString To display Oracle Net connect string information for a pluggable database (PDB) run the dbaascli pdb getConnectString command.
dbaascli pdb create To create a new pluggable database (PDB), use the dbaascli pdb create command.
dbaascli pdb delete To delete a pluggable database (PDB) run the dbaascli pdb delete command.
dbaascli pdb getDetails To view details of a pluggable database (PDB), use the dbaascli pdb getDetails command.
dbaascli pdb list To view the list of pluggable databases (PDB) in a container database, use the dbaascli pdb list command.
dbaascli pdb localClone To create a new pluggable database (PDB) as a clone of an existing PDB in the same container database (CDB), use the dbaascli pdb localClone command.
dbaascli pdb open To open a pluggable database (PDB), use the dbaascli pdb open command.
dbaascli pdb recover To recover a pluggable database (PDB), use the dbaascli pdb recover command.
dbaascli pdb refresh To refresh a specified pluggable database (PDB), use the dbaascli pdb refresh command.
dbaascli pdb relocate To relocate the specified PDB from the remote database into local database, use the dbaascli pdb relocate command.
dbaascli pdb remoteClone To create a new pluggable database (PDB) as a clone of an existing PDB in another container database (CDB), use the dbaascli pdb remoteClone command.
dbaascli system getDBHomes To view information about all the Oracle homes, use the dbaascli system getDBHomes command.
dbaascli system getGridHomes To list the details of all Grid homes, use the dbaascli system getGridHomes command.
dbaascli tde changePassword To change TDE keystore password as well as DB wallet password for the alias tde_ks_passwd, use the dbaascli tde changePassword command.
dbaascli tde addSecondaryHsmKey To add a secondary HSM (KMS) key to the existing HSM (KMS) configuration, use the dbaascli tde addSecondaryHsmKey command.
dbaascli tde enableWalletRoot To enable wallet_root spfile parameter for the existing database, use the dbaascli tde enableWalletRoot command.
dbaascli tde fileToHsm To convert FILE based TDE to HSM (KMS/OKV) based TDE, use the dbaascli tde fileToHsm command.
dbaascli tde getHsmKeys To get TDE active key details, use the dbaascli tde getHsmKeys command.
dbaascli tde getMkidForKeyVersionOCID To get Master Key ID associated with the KMS key version OCID, use the dbaascli tde getMkidForKeyVersionOCID command.
dbaascli tde getPrimaryHsmKey To get primary HSM (KMS) key from the existing HSM (KMS) configuration, use the dbaascli tde getPrimaryHsmKey command.
dbaascli tde hsmToFile To convert HSM (KMS/OKV) based TDE to FILE based TDE, use the dbaascli tde hsmToFile command.
dbaascli tde listKeys To list TDE master keys, use the dbaascli tde listKeys command.
dbaascli tde removeSecondaryHsmKey To remove secondary HSM (KMS) key from the existing HSM (KMS) configuration, use the dbaascli tde removeSecondaryHsmKey command.
dbaascli tde setKeyVersion To set the version of the primary key to be used in DB/CDB or PDB, use the dbaascli tde setKeyVersion command.
dbaascli tde setPrimaryHsmKey To change the primary HSM (KMS) key for the existing HSM (KMS) configuration, use the dbaascli tde setPrimaryHsmKey command.
dbaascli tde status To display information about the keystore for the specified database, use the dbaascli tde status command.
--prechecksOnly runs only the prechecks for
this operation
--nodes specifies a comma-delimited list of
nodes to install the RPM on. If you do not pass this argument, then the RPM
will be installed on all of the cluster nodes
To download available software images and make them available in your
Exadata Cloud Infrastructure environment, use the
dbaascli cswlib download command.
Prerequisites
Run the command as the root user.
To use the utility, you must connect to an Exadata Cloud Infrastructure virtual machine.
To configure Oracle Database with a backup storage destination, take database
backups, query backups, and delete a backup, use the dbaascli database
backup command.
--rolling specifies true or
false to bounce the database in a rolling manner.
Default value is false.
The command performs a database shutdown in immediate mode. The database
is then restarted and opened. In Oracle Database 12c or later, all of the PDBs are
also opened.
To
change the password of a specified Oracle Database user, use the dbaascli database
changePassword command. When prompted enter the user name for which you want to
change the password and then enter the password.
--dbname specifies the name of the Oracle
Database that you want to act on
--user specifies the user name whose password
change is required
--prepareStandbyBlob specifies
true to generate a blob file containing the artifacts
needed to change the password in a Data Guard environment. Valid values:
true|false
--blobLocation specifies the custom path where
blob file will be generated
--standbyBlobFromPrimary specifies the standby
blob file, which is prepared from the primary database
--resume specifies to resume the previous
execution
--sessionID specifies to resume a specific session
ID
--cdbName specifies the name of the target CDB
in which the PDB will be created. If the CDB does not exist, then it will be
created in the same Oracle home as the source non-CDB
--executePrereqs specifies to run only the
pre-conversion checks
--copyDatafiles specifies to create a new copy
of the data files instead of using the ones from the source database
--keepSourceDB - to preserve the source database after
completing the operation.
--backupPrepared - flag to acknowledge that a proper
database backup is in place for the non CDB prior to performing the
conversion to PDB.
--backupPrepared flag to acknowledge that a proper database
backup is in place for the non-CDB prior to performing the conversion to
PDB
--targetPDBName specifies the name of the PDB
that will be created as part of the operation
--waitForCompletion specifies
false to run the operation in the background. Valid
values: true|false
--resume specifies to resume the previous
execution
--sessionID specifies to resume a
specific session ID
To create Oracle Database, use the dbaascli database
create command. When prompted, enter the sys and
tde passwords.
Use this command to create Oracle Database version 12.1.0.2 or higher
with the release update JAN 2021 or higher. For databases with lower versions, it is
recommended to use the OCI Console based API.
--sourceDBConnectionString specifies source
database connection string in the format of <scan_name>:<scan_port>/<database_service_name>
--oracleHome specifies Oracle home
location
--oracleHomeName specifies Oracle home
name
--dbSID specifies database SID
--dbUniqueName specifies database unique
name
--sgaSizeInMB specifies
sga_target value in mega byte unit
--pgaSizeInMB specifies
pga_aggregate_target value in mega byte unit
--datafileDestination specifies ASM disk group
name to use for database datafiles
--fraDestination specifies ASM disk group name
to use for database fast recovery area
--fraSizeInMB specifies fast recovery area
size value in mega byte unit
--sourceDBWalletLocation specifies source
database TDE wallet file location. This is required to duplicate database
from active database
--nodeList specifies a comma-delimited list of
nodes for the database
--resume specifies to resume the previous
execution
--sessionID specifies to resume a
specific session ID
--revert specifies to rollback the previous
execution
--sessionID specifies to rollback a
specific session ID
--rmanParallelism specifies parallelsim
value
--rmanSectionSizeInGB specifies RMAN section
size in GB
--tdeConfigMethod specifies TDE configuration method.
Allowed values are FILE and KMS.
--kmsKeyOCID specifies KMS key OCID to use for TDE. This is
applicable only if KMS is selected for TDE.
--sourceDBTdeConfigMethod specifies source database TDE
configuration method. Allowed values are FILE and
KMS.
--sourceDBKmsKeyOCID specifies source database KMS key OCID
to use for TDE. This is applicable only if KMS is selected for TDE.
--executePrereqs specifies yes
to run only the prereqs for this operation. Valid values:
yes|no
--waitForCompletion specifies
false to run the operation in background. Valid values:
true|false
--skipPDBs specifies a comma-delimited list of source
database PDB names, which needs to be excluded for the duplicate database
operation. Example: pdb1,pdb2...
--setParameters specifies a comma-delimited
list of parameters to modify with new values. For example:
parameter1=valueA,parameter2=valueB, and so on. For blank values use
parameter1=valueA,parameter2='',etc.
--resetParameters specifies a comma-delimited
list of parameters to be reset to their corresponding default values. For
example, parameter1,parameter2, and so
on.
--responseFile specifies the absolute location of the
response JSON file to modify the database parameters
--backupPrepared acknowledges that a proper
database backup is in place prior to modifying critical or sensitive
parameters.
--instance specifies the name of the instance
on which the parameters will be processed. If not specified, then the
operation will be performed at the database level.
--allowBounce grants permission to bounce the
database in order to reflect the changes on applicable static
parameters.
To check the status of an Oracle Database, use the dbaascli
database status command.
Prerequisites
Run the command as the root user.
Syntax
dbaascli database status
[--service][--dbname]
[--user]
[--password]
Where:
--service specifies the name of the service
--dbname specifies the name of the database
--user specifies the user name of the service
--password specifies the password of the user
Output from the command includes the open mode of the database, the
software release and edition of the database, and release version of other software
components.
--dbname specifies the name of the database that you want
to stop
--mode specifies the mode of the database. Valid values:
abort, immediate,
normal, transactional
The command performs a database shutdown in immediate mode. No new
connections or new transactions are permitted. Active transactions are rolled back,
and all connected users are disconnected.
--dbname (mandatory) specifies the name of the
database.
--targetHome specifies the target Oracle home
location
--targetHomeName specifies the name of the target Oracle
Database home
--standBy use this option to upgrade standby
databases in Data Guard configurations
--allStandbyPrepared required for Data Guard
configured primary databases. Flags to acknowledge that all the required
operations are performed on the standby databases prior to upgrading primary
database
--removeGRP automatically removes the
Guaranteed Restore Point (GRP) backup only if the database upgrade was
successful
--increaseCompatibleParameter automatically
increases the compatible parameter as part of the database upgrade. The
parameter will get increased only if the database upgrade was
successful
--executePrereqs runs only the preupgrade
checks
--postUpgrade use this option if postupgrade
fails and needs to rerun the postupgrade steps
--rollback reverts an Oracle Database to its
original Oracle home
--upgradeOptions use this option to pass
DBUA-specific arguments to perform the Oracle Database upgrade. Refer to the
corresponding Oracle documentation for the supported arguments and
options.
--standby
--resume to resume the previous execution
--sessionID to resume a specific session id.
--waitForCompletion specify false to run the operation in
background. Valid values : true|false.
Example 6-23 dbaascli database upgrade pre-upgrade requisite checks
To generate a blob file containing various files that are required on the
standby site in case of a dataguard environment, use the dbaascli dataguard
prepareStandbyBlob command.
--attributes contains the
Data Guard automation attributes that are to be
modified. Accepts comma-delimited values in the
format <attribute=value>.
Attributes must be predefined in the Data Guard
configuration file.
To view information about all Oracle Databases running from a given database
Oracle home, use the dbaascli dbHome getDatabases command. Specify either
the Oracle home location or Oracle home name.
Run the command as the root user.
Syntax
dbaascli dbHome getDatabases
{ --oracleHomeName value | --oracleHome value }
Where:
--oracleHomeName specifies user-defined Oracle
home name
--oracleHome specifies the location (path) of
Oracle home
Example 6-25 dbaascli dbHome getDatabases --oracleHome
To view information about a specific Oracle home, use the
dbaascli dbHome getDetails command. Specify either the Oracle home
location or Oracle home name.
Prerequisite
Run the command as the root user.
Syntax
dbaascli dbHome getDetails
{ --oracleHomeName value | --oracleHome value }
Where:
--oracleHomeName specifies user-defined Oracle
home name
--oracleHome specifies the location of Oracle home
Example 6-26 dbaascli dbHome getDetails - using
Oracle home location
--oracleHomeName specifies the name of Oracle
home
--targetVersion specifies the target version of
Oracle Home specified as five numeric segments separated by periods, for
example, 19.12.0.0.0.
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--continueWithDbDowntime continues patching
with database downtime. This option can be used in environments wherein
there is only one active instance up and the patching operation can be
continued even with a downtime.
--skipUnreachableNodes skips operation on
unreachable nodes
--nodes specifies a comma-delimited list of
nodes if patching has to be performed on a subset of nodes
--executePrereqs runs prereqs
--skipDatapatch skips running
datapatch on the databases
--imageFilePath specifies the absolute path of
the image file to be used
--skipPDBs skips running the datapatch on a specified
comma-delimited list of PDBs. For example:
cdb1:pdb1,cdb2:pdb2, and so
on
--skipClosedPdbs skips running
datapatch on closed PDBs
--rollback rolls back patched Oracle
home.
--waitForCompletion specifies false to run the operation in background. Valid values : true|false
--drainTimeoutInSeconds specifies time (in seconds) to complete the resource draining while stopping the database
--skipUnreachableNodes skips operation on unreachable nodes
software_version β specifies the Oracle Database
software version. For example, 11204,
12102, 12201,
18000, 19000.
software_bp β identifies the bundle patch release.
For example, APR2018, JAN2019,
OCT2019, and so on.
--cdb β optionally specifies whether to remove the
software image that supports the Oracle multitenant architecture. Default is
yes. If you specify --cdb no, then
the software image that contains binaries to support non-container databases
(non-CDB) is removed.
If the command will remove a software image that is not currently available in the
software image library, and therefore cannot be downloaded again, then the command
pauses and prompts for confirmation.
You cannot remove the current default software image for any software version. To avoid
this restriction, you must make another software image the current default.
--components specifies a list of components for
log collection.
Valid values:
db
gi
os
dbaastools
all
--startTime specifies the start time for log
collection. Valid date and time format:
YYYY-MM-DDTHH24:MM:SS
--endTime specifies the end time for log
collection. Valid date and time format:
YYYY-MM-DDTHH24:MM:SS
--nodes specifies a comma-delimited list of
nodes to collect logs
--dbNames specifies the database name for
which to collect logs. You can specify only one database name.
--objectStoreBucketURI specifies an Object
Storage service pre-authenticated request (PAR) URL used to upload collected
logs. Logs are collected from Guest VM. For more information, see
Using Pre-Authenticated Requests.
--destLocation specifies the location on Guest
VM to collect logs. Default:
/var/opt/oracle/dbaas_acfs
--waitForCompletion Values:
true|false. Default
true. Specify false to run in the
background.
--destLocation specifies the location on Guest
VM to collect logs. Default:
/var/opt/oracle/dbaas_acfs
--nodes specifies a comma-delimited list of nodes to
collect logs
--objectStoreBucketURI specifies an Object
Storage service pre-authenticated request (PAR) URL used to upload collected
logs. Logs are collected from Guest VM. For more information, see
Using Pre-Authenticated Requests.
To configure TCPS for the existing cluster, use the dbaascli
grid configureTCPS command.
Prerequisite
Run the command as the root user.
Syntax
Note
By default, TCPS is enabled for
databases on Oracle Exadata Database Service on Dedicated Infrastructure
systems.
Note
TCPS is not enabled for databases on Exadata Database Service on Cloud@Customer
systems. To enable TCPS for a given database, update the database specific
sqlnet.ora file with WALLET_LOCATION =
(SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=/var/opt/oracle/dbaas_acfs/grid/tcps_wallets)))
on all database nodes and then bounce the database. This will enable TCPS usage for
the database. However, enabling TCPS will cause ZDLRA connection to fail. On Exadata
Database Service on Cloud@Customer systems, you can enable either ZDLRA or TCPS
configuration. Enabling both ZDLRA and TCPS simultaneously will not work.
--pkcs12WalletPath specifies the path of the
certificate, which is in pkcs12 wallet format
--caCertChain concatenated list of certs,
containing intermediate CA's and root CA certs
--precheckOnly specifies yes
to run only the prechecks for this operation. Valid values:
yes or no.
--serverCert specifies the path of PEM
certificate to use or rotate for TCPS configuration.
--privateKey specifies the path of the private
key file of the certificate.
--certType type of the cert to be added to the
Grid Infrastructure wallet. Accepted values are:
SELF_SIGNED_CERT, CA_SIGNED_CERT, or
PKCS12_CERT. Default:
SELF_SIGNED_CERT
--privateKeyPasswordProtected specifies if the
private key is password protected or not. Valid values:
true or false. Default:
true.
--targetVersion specifies the target version of
Oracle Home specified as five numeric segments separated by periods (e.g.
19.12.0.0.0)
--targetHome specifies the fully qualified path of the target Grid Infrastructure home for the out of place patching
--containerURL specifies custom URL for fetching
Grid Infrastructure image
--executePrereqs option to run prereqs
--nodeList specifies a comma-delimited list of
nodes if patching has to be performed on a subset of nodes
--patchInParallel specifies to perform patching remote nodes in parallel
--rollback specifies to roll back patched Oracle
home
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--continueWithDbDowntime continues patching with database
downtime. This option can be used in environments wherein there is only 1 active
instance up and the patching operation can be continued even with a
downtime.
--drainTimeoutInSeconds specifies the time (in seconds) to complete the resource draining while stopping the database
--createImage creates an image from a copy of the
active Grid home, patched to the specified target version
--createImageDir specifies fully qualified path of the
directory where the image is to be created
--imageFile specifies fully qualified path of the image to be
used
--patchInParallel performs the patching of the remote nodes in parallel
--waitForCompletion specifies false to run the
operation in background. Valid values:
true|false
--pkcs12WalletPath specifies the path of the certificate,
which is in pkcs12 wallet format
--caCertChain concatenated list of certs, containing
intermediate CA's and root CA certs
--precheckOnly specifies yes to run only
the prechecks for this operation. Valid values: yes or
no.
--serverCert specifies the path of PEM certificate to use
or rotate for TCPS configuration.
--privateKey specifies the path of the private key file of
the certificate.
--certType type of the cert to be added to the Grid
Infrastructure wallet. Accepted values are:
SELF_SIGNED_CERT, CA_SIGNED_CERT, or
PKCS12_CERT. Default:
SELF_SIGNED_CERT
--privateKeyPasswordProtected specifies if the private key
is password protected or not. Valid values: true or
false. Default: true.
Example 6-31 dbaascli grid
rotateTCPSCert
To rotate cert using self-signed certificate (default
option):
dbaascli patch db
prereq and dbaascli patch db apply commands have been
deprecated in dbaascli release 21.2.1.2.0, and replaced with
dbaascli grid patch, dbaascli dbhome patch,
and dbaascli database move commands.
For more
information, see:
dbaascli grid patch
dbaascli dbhome patch
dbaascli database move
Patching Oracle Grid Infrastructure and
Oracle Databases Using dbaascli
dbaascli patch db prereq and dbaascli patch db
apply commands have been deprecated in dbaascli
release 21.2.1.2.0, and replaced with dbaascli grid patch,
dbaascli dbhome patch, and dbaascli database
move commands.
For more information, see:
dbaascli grid patch
dbaascli dbhome patch
dbaascli database move
Patching Oracle Grid Infrastructure and Oracle Databases Using
dbaascli
--pdbName specifies the name of the new PDB
that you want to create
--dbName specifies the name of the container database that
hosts the new PDB
--maxCPU optionally specifies the maximum number
of CPUs that are available to the PDB. Setting this option is effectively
the same as setting the CPU_COUNT parameter in the PDB
--maxSize optionally specifies the maximum
total size of data files and temporary files for tablespaces belonging to
the PDB. Setting this option is effectively the same as setting the
MAXSIZE PDB storage clause in the CREATE
PLUGGABLE DATABASE SQL command. You can impose a limit by
specifying an integer followed by a size unit (K,
M, G, or T), or you
can specify UNLIMITED to explicitly enforce no limit
--pdbAdminUserName specifies the new PDB admin
user name
--lockPDBAdminAccount specifies true or
false to lock the PDB admin user account. Default value
is true.
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--executePrereqs specifies
yes to run only the prereqs for this operation. Valid
values: yes or no
--waitForCompletion specifies false to run
the operation in the background. Valid values: true or
false
--blobLocation custom directory location where the standby
blob file will be generated in a DG environment.
--standbyBlobFromPrimary specifies the
location of the standby blob file, which is prepared from the primary
database. This is required only for standby database PDB
operations.
Note
the parametersblobLocation and
standbyBlobFromPrimary are mutually exclusive.
During the PDB creation process, you are prompted to specify the
administration password for the new PDB.
Example 6-38 dbaascli pdb create
To create a PDB from seed in a standard database in a non-Data Guard
environment:
--pdbName specifies the name of the new PDB
that you want to clone
--dbName specifies the name of the database
--targetPDBName specifies the name for the
target PDB (new cloned PDB)
--powerLimit specifies the degree of
parallelism to be used for the clone operation. Valid value is between 1 and
128
--maxCPU specifies the maximum number of CPUs
to be allocated for the PDB
--maxSize specifies the maximum storage size
in GB for the new PDB
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--executePrereqs specifies
yes to run only the prereqs for this operation. Valid
values: yes or no
--waitForCompletion specifies false to run
the operation in the background. Valid values: true or
false
--blobLocation custom directory location where the standby
blob file will be generated in a DG environment.
--standbyBlobFromPrimary specifies the location
of the standby blob file which is prepared from the primary database. This
is required only for standby database PDB operations.
Note
The parameters
--blobLocation and
--standbyBlobFromPrimary are mutually
exclusive.
--excludeUserTablespaces option to skip user table spaces,
example t1,t2,t3.
--excludePDBData specify true/yes to skip user data from
source pdb.
--pdbAdminUserName specify new PDB admin user name.
--lockPDBAdminAccount specify true or false to lock the PDB
admin user account. Default value is true.
--sourcePDBServiceConvertList specify comma separated list
of source to target service names which need to be converted. Syntax is
source_srv1:new_srv1,source_srv2:new_srv2.
The newly cloned PDB inherits administration passwords from the source
PDB.
--pdbName specifies the name of the PDB that
you want to open
--pdbUID specifies the identifier of the PDB
--dbname specifies the name of the container
database that hosts the PDB.
--openMode specifies the target OPEN MODE of PDB
--startServices: specifies to start all or list all services
corresponding to a PDB. Accepted values are all or a
comma-delimited list of PDB services.
--waitForCompletion: specify
false to run the operation in the background. Valid
values: true|false
--setPDBRefreshModeNone: specifies to convert a refreshable
PDB to non-refreshable PDB
--skipPDBRefresh: specifies to skip refreshable PDB
refresh
--pdbAdminUserName: specifies new PDB admin user
name
Upon successful completion, the PDB is opened on all of the container
database instances.
Example 6-42 dbaascli pdb open
dbaascli pdb open --dbname cdb name --pdbName pdb name associated with the CDB
dbaascli pdb open --dbname cdb name --pdbUID con_uid of that pdb
--pdbName specifies the source PDB name to
relocate
--dbName specifies the target database
name
--sourceDBConnectionString specifies the
source database connection string in the format <scan_name>:<scan_port>/<database_service_name>
--targetPDBName specifies a name for the target
PDB (new relocated PDB)
--powerLimit specifies the degree of
parallelism to be used for the relocate operation
--maxCpu specifies the maximum number of CPUs
to be allocated for the PDB
--maxSize specifies the maximum storage size
in GB for the new PDB
--resume specifies to resume the previous
execution
--sessionID specifies to resume a
specific session ID
--executePrereqs specifies yes
to run only the prereqs for this operation. Valid values:
yes|no
--sourcePDBServices specifies a list of
comma-delimited source PDB services
--sourcePDBReadOnlyServices specifies a
comma-delimited list of source PDB read-only services
--waitForCompletion specifies false to run the
operation in the background. Valid values:
true|false
--blobLocation custom directory location where
the standby blob file will be generated in a DG environment.
--standbyBlobFromPrimary specify the location of the
standby blob file which is prepared from the primary database. This is
required only for standby operations.
Note
The parameters
--blobLocation and mutually exclusive.
--upgradePDB specify true to upgrade the
PDB as part of this operation. Valid values : true |
false.
--updateDBBlockCachesize option to enable application to
set db block cache size initialization parameters in order to support data
copy with different block size.
--skipOpenPDB - to indicate that the PDB should not be
opened at the end of the current operation.
--completePDBRelocate - complete the PDB relocation if done
as a two-step operation.
--pdbName specifies the name of the source PDB
that you want to clone
--dbname specifies the name
(DB_NAME) of the CDB that hosts the newly cloned
PDB
--sourceDBConnectionString specifies the source
database connection string in the format scan_name:scan_port/database_service_name
--targetPDBName specifies the name for the
target PDB (new cloned PDB)
--powerLimit specifies the degree of
parallelism to be used for the clone operation. Valid value is between 1 and
128
--maxCPU specifies the maximum number of CPUs
to be allocated for the PDB
--maxSize specifies the maximum storage size in
GB for the new PDB
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--executePrereqs specifies yes
to run only the prereqs for this operation. Valid values:
yes or no
--waitForCompletion specifies
false to run the operation in the background. Valid
values: true or false
--sourcePDBExportedTDEKeyFile specifies the
source PDB exported key file. This variable is applicable to only 12.1
database.
--blobLocation specifies the custom path where
the standby blob file will be generated in a Data Guard environment
--standbyBlobFromPrimary specify the location
of the standby blob file, which is prepared from the primary database. This
is required only for standby database PDB operations
Note
The parameters
--blobLocation and
--standbyBlobFromPrimary are mutually
exclusive.
--excludeUserTablespaces option to skip user
table spaces, example
t1,t2,t3.
--excludePDBData specify
true/yes to skip user data from source
PDB.
--pdbAdminUserName specifies new PDB admin
user name
--lockPDBAdminAccount specify
true or false to lock the PDB admin
user account. Default value is true.
--sourcePDBServiceConvertList specify a
comma-delimited list of source to target service names, which need to be
converted. Syntax is source_srv1:new_srv1,
source_srv2:new_srv2.
--refreshablePDB specifies to create refreshable PDB
--refreshMode specifies refresh mode for
refreshable PDB. Valid values:
AUTO|MANUAL
--refreshIntervalInMinutes
specifies refresh interval for
refreshablePDB in minutes
--dblinkUsername specifies common user
of a remote database used for database link to connect to the remote
database
--honorCaseSensitiveUserName
indicates specified username is case sensitive
--updateDBBlockCacheSize: specifies to enable application
to set db block cache size initialization parameters to
support data copy with a different block size
When promoted, you must supply the SYS user password for the source PDB.
The newly cloned PDB inherits administration passwords from the source PDB. The
cloned PDB is named using the following format:
dbname_sourcepdbname. This command is supported only for
databases that are not in a Data Guard configuration and use Oracle Database version
12.2.0.1, or later.
--prepareStandbyBlob - specify true to generate a blob file
containing the artifacts needed to perform the operation in a DG
environment.
--blobLocation - custom path where the standby blob file
will be generated in a DG environment.
--standbyBlobFromPrimary - specify the location of the
standby blob file which is prepared from the primary database. This is
required only for standby operations.
--resume - to resume the previous execution
--sessionID - to resume a specific session id.
To change the TDE password in a
non-Data Guard
environment
dbaascli tde changepassword --dbname
<dbname>
To change the TDE password in a Data Guard environment
Change the TDE password in primary
database.
dbaascli tde changepassword --dbname
<dbname> --prepareStandbyBlob true --blobLocation
<Location where blob file has to be generated>
Copy the created standby blob to standby database environment.
Change the TDE password in standby
database
dbaascli tde changepassword --dbname
<dbname> --standbyBlobFromPrimary <Location of blob generated from
primary>
--prepareStandbyBlob specify
true to generate a blob file containing the artifacts
needed to perform the operation in a DG environment.
--blobLocation custom directory location where the standby
blob file will be generated in a DG environment.
--standbyBlobFromPrimary specify the location
of the standby blob file which is prepared from the primary database. This
is required only for standby operations. ]
--skipPatchCheck skips validation check for
required patches if the value passed for this argument is
true. Valid values: true or
false
--executePrereqs execute the prerequisites
checks and report the results.
--primarySuc specify this property in the
standby database of the Data Guard environment once the command is
successfully run on the primary database
--resume resumes the previous run
--sessionID specifies to resume a specific session
ID
--revert specifies to roll back the previous
run
--sessionID specifies to rollback a specific
session ID
--waitForCompletion specifies false to run
the operation in background. Valid values:
true|false
--rotateMasterKeyOnAllPDBs - specify true to rotate master
key of all PDBs in CDB. Valid values: true|false
--pdbName - specify PDB name.
--executePrereqs - execute the prerequisites checks and
report the results.
--resume - to resume the previous execution
--sessionID - to resume a specific session id.
--prepareStandbyBlob |
--standbyBlobFromPrimary]
--prepareStandbyBlob - specify true to generate a blob file
containing the artifacts needed to perform the operation in a DG
environment.
--blobLocation - custom directory location where the
standby blob file will be generated in a DG environment.
--standbyBlobFromPrimary - specify the location of the
standby blob file which is prepared from the primary database. This is
required only for standby operations
To display information about the keystore for the specified database,
use the dbaascli tde status command.
Prerequisite
Note
dbaascli tde status command has been deprecated in dbaascli release 24.4.1.0.0. Oracle recommends using the dbaascli database getDetails command instead.
Run the command as the oracle user.
Syntax
dbaascli tde status --dbname dbname
Where:
--dbname specifies the name of the database that you want to check.
Output from the command includes the type of keystore, and the status of
the keystore.