Configure Oracle GoldenGate for an Oracle Autonomous AI Database
Learn the steps to configure Oracle GoldenGate Replicat for an Oracle Autonomous AI Database.
Note:
Instructions are based on the assumption that the source environment is already configured.
- For Oracle GoldenGate on-premises, make sure that Oracle GoldenGate is installed.
-
(Microservices only) Create a deployment for your Oracle GoldenGate environment. This is the deployment where the Replicat that applies data into the Oracle Autonomous AI Database will be created. See How to Create Deployments for steps to add a deployment.
-
The Autonomous Database has a pre-existing user created for Oracle GoldenGate on-premise called
ggadmin. Theggadminuser has been granted the required privileges for Replicat to work. This is the user where any objects used for Oracle GoldenGate processing will be stored, like the checkpoint table and heartbeat objects. By default, this user is locked. To unlock theggadminuser, connect to the Oracle Autonomous AI Database instance as theADMINuser using any SQL client tool. See Create Users on Autonomous AI Database with Database Actions. -
Run the
ALTER USERcommand to unlock theggadminuser and set the password for it. This will be used in Admin Client for anyDBLOGINoperations on the Oracle Autonomous AI Database. It will be used in Replicat to allow Oracle GoldenGate to connect to the Autonomous AI Database and apply data. See Create Users on Autonomous AI Database with Database Actions.ALTER USER ggadmin IDENTIFIED BY p0$$word ACCOUNT UNLOCK;