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

Splitting the replication load into multiple process groups for optimal performance


You will often notice that when replication is implemented in very busy systems, a single Extract/Replicat process is not sufficient to keep up with the rate of change. In most cases, you will find that it is the Replicat process that is causing the bottleneck. This is due to the fact that the Replicat or Apply process works in a serial fashion. All the changes read from the trail files are re-constructed into the SQL statements. These statements are then run in the target database one-by-one. Unless you have deliberately created a configuration with a set delay between the systems, it is usually desired to have the least lag between the source and target environments. The performance of a replication technology is often judged by the rate at which it is capable of keeping the changes replicated from the source environment to the target environment, even when the systems are under peak loads. One of the easiest...