Uninstalling GoldenGate from Linux/UNIX
Uninstalling the GoldenGate software is, as one would expect, the reverse of installing it. The de-installation is as simple as the installation and can be done by following the example below:
Log on to the database server (as oracle) where the GoldenGate software is installed.
Change directory to the GoldenGate home:
cd /home/oracle/ggs
Start GGSCI:
ggsci
Stop all GoldenGate processes:
GGSCI (dbserver1) 1> stop EXTRACT *
Or:
GGSCI (dbserver1) 1> stop REPLICAT *
Then:
GGSCI (dbserver1) 2> stop MGR Manager process is required by other GGS processes. Are you sure you want to stop it (y/n)? y Sending STOP request to MANAGER ... Request processed. Manager stopped. GGSCI (dbserver1) 3> exit
Change directory to the installation directory:
cd /home/oracle
Remove the GoldenGate files:
rm -rf ggs
Logon to the Oracle database as SYSDBA and drop the GoldenGate Admin user. Include the
CASCADE
keyword:sqlplus / as sysdba SQL> drop user ggs_admin...