Shell Script to create a Physical Standby Server for a 19c Oracle Database In this post I am sharing a script which can use useful for automating the creation of a physical standby. Note: Both my server are OCI Compute and we will used opc key for connecting between opc user and then using oracle user for database. Database is CDB-PDB and having 19c Database. Script: Please change script accordingly for your needs. #!/bin/bash #set -x # Database details and configurations PRIMARY_DB_SID="EBSCDB" STANDBY_DB_SID="SEBSCDB" PRIMARY_DB_HOST="db.example.com" STANDBY_DB_HOST="ebs-server2.subnet09191039.vcn09191039.oraclevcn.com" DB_UNIQUE_NAME_PRIMARY="EBSCDB" DB_UNIQUE_NAME_STANDBY="SEBSCDB" PRIMARY_ORACLE_HOME="/u01/install/APPS/19.0.0" PRIMARY_ORACLE_BASE="/u01/install/APPS" STANDBY_ORACLE_HOME="/u01/install/APPS/19.0.0" STANDBY_ORACLE_BASE="/u01/install/APPS" SSH_KEY_PATH="/home/oracle...