Gathering GoldenGate deployment status

1 min read
Feb 26, 2019

The objective of this post is to demonstrate how to gather existing GoldenGate deployment status. The rationale is to gather all the pertinent information for GoldeGate deployment using RAC in order to relocate the GoldenGate trail from DBFS to ACFS file system. Although the deployment gathering can be performed manually, I have chosen to script as much of the process as possible since this will be performed for multiple environments versus just one. Implementation created is also reusable for troubleshooting; hence, the work is not in vain. WARNING: gi.env is used to dynamically source ASM instance provided the following requirements are met: Last character from short host name must match ASM instance number. Acceptable: racnode-dc1-1/+ASM1 and racnode-dc1-2/+ASM2 UNAcceptable: host05/+ASM1 and host06/+ASM1 I chose to create gi.env so that the script can be deployed in any environment with the least possible change as long as the requirements above are met. $ cat gi.env

 set +x
 unset ORACLE_UNQNAME
 h=$(hostname -s)
 n=1
 . oraenv <<< +ASM${h:$
          

Get Email Notifications

No Comments Yet

Let us know what you think