Book Image

Oracle Goldengate 11g Complete Cookbook

By : Ankur Gupta
Book Image

Oracle Goldengate 11g Complete Cookbook

By: Ankur Gupta

Overview of this book

Oracle Goldengate 11g Complete Cookbook is your complete guide to all aspects of Goldengate administration. The recipes in this book will teach you how to setup Goldengate configurations for simple and complex environments requiring various filtering and transformations. It also covers various aspects of tuning and troubleshooting the replication setups using exception handling, custom fields, and logdump utility.The book begins by explaining some basic tasks like Installation and Process groups setup. You will then be introduced to some further topics including DDL replication and various options to perform Initial Loads. You will then learn some advanced administration tasks such as Multi Master replication setup and conflict resolution. Further recipes, contain the cross platform replication and high availability options for Goldengate.
Table of Contents (16 chapters)
Oracle GoldenGate 11g Complete Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Cross RDBMS replication using GoldenGate


One of the very popular uses of GoldenGate is to replicate data between databases running in different RDBMS. Different RDBMS systems have different data types and use different data structures to store the data. It is due to these complications that replicating between different systems becomes a complex task. GoldenGate extracts data from a database and stores it in its proprietary format. This data in proprietary format can then be replayed in any other supported database. You can use this feature to perform a one-off data migration from one RDBMS to another or you can use it to set up a permanent replication between a data set from one RDBMS to another.

In this recipe we will set up a continuous replication between an Oracle database and an SQL Server database. We will also cover the steps to install and configure GoldenGate in an SQL Server environment.

Getting ready

For this recipe, we will set up GoldenGate replication between an Oracle instance...