OGG BP Instantiation Oracle DocID 1276058.1
OGG BP Instantiation Oracle DocID 1276058.1
OGG BP Instantiation Oracle DocID 1276058.1
Tracy West
Consulting Solution Architect
Proofread this sample code before using it! Due to the differences in the way text editors, e-mail
packages and operating systems handle text formatting (spaces, tabs and carriage returns), this
sample code may not be in an executable state when you first receive it. Check over the sample
code to ensure that errors of this type are corrected.
This document touches briefly on many important and complex concepts and does not provide a
detailed explanation of any one topic since the intent is to present the material in the most
expedient manner. The goal is simply to help the reader become familiar enough with the
product to successfully design and implement an Oracle GoldenGate environment. To that end, it
is important to note that the activities of design, unit testing and integration testing which are
crucial to a successful implementation have been intentionally left out of the guide. All the
sample scripts are provided as is. Oracle consulting service is highly recommended for any
customized implementation.
Prerequisites 1
Overview 2
Homogenous Instantiation 2
Heterogenous Instantiation 2
Source Setup 7
Target Setup 8
Transportable Tablespaces 14
Example 2: Full Export Using Oracle Data Pump For OGG Versions 12.2 and
above 18
Example 3: Schema Level Export Using Oracle Data Pump For OGG Versions
Prior to 12.2 20
Example 4: Schema Level Export Using Oracle Data Pump For OGG Versions
The following assumptions have been made during the writing of this document:
» The reader has basic knowledge of Oracle GoldenGate products and concepts
» Referencing Oracle GoldenGate Version 10 and above
» Referencing Oracle RDBMS Version 10.2 and above
» Referencing OS: All Oracle GoldenGate supported platforms for Oracle
Oracle GoldenGate provides data capture from transaction logs and delivery tor heterogeneous
databases and messaging systems. Oracle GoldenGate provides a flexible, de-coupled architecture
that can be used to implement virtually all replication scenarios.
One of the biggest challenges in creating a target database for replication is to insure that no
“collisions” (applying data that has been already been "applied" by virtue of copying data after the
same change data has been captured) or data loss will occur when applying the change data after
the initial instantiation of the target database. Oracle GoldenGate has addressed this issue by
including functionality to apply the change data to the target at the appropriate CSN (Commit
Sequence Number) where no collisions will occur. Please note that OGG uses "CSN" and not
"SCN", which are functionally interchangeable but syntactically distinct. To use this functionality
without incurring any data loss you have to make sure to use a read consistent image of your
source database to do the instantiation and keep track of the CSN of your consistent image. This
document provides more details and examples on how to use LOGCSN which is stored in the
Oracle GoldenGate Trail Files starting with Oracle GoldenGate version 10.
The following table describes items that are referred to throughout the document. You will need to identify your
installation-specific values and substitute them as you go.
Unix Report Files /ggs/dirrpt Directory for output from GoldenGate programs.
Unix Definitions Files /ggs/dirdef Directory for generated Oracle DDL and definition files.
Oracle Logon userid, password User ID and password for the source or target database. When implementing
Integrated Extract or Replicat, this user must be granted admin privileges with the
DBMS_GOLDENGATE_AUTH procedure on the both source and target databases.
Unix System Network Target Server IP address/hostname of the target Unix system in network.
Address Source Server IP address/hostname of the source Unix system in network
Homogenous Instantiation
» In this approach, the Oracle Database and the operating system version are exactly the same between
the source and the target databases. There are a few Oracle methods that can be used create the target
database in a homogeneous environment. Each method can be researched in more depth in the
appropriate Oracle documentation guide. However, this document will touch upon most applications.
Heterogenous Instantiation
» In this approach, the source and target are different configurations. The difference could be as simple as a
database version or OS version. Or the difference could be a completely different database on a different
platform, e.g. Oracle on Linux to Microsoft SQL Server on Windows.
Notes on Command Syntax: Commands throughout the document make specific references to directories, file
names, checkpoint group names, begin times, etc. Unless otherwise noted, these items do not have to correspond
exactly in your environment; they are used to illustrated concrete examples. For exact syntax, consult the Oracle
GoldenGate Reference Guide.
2 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Oracle GoldenGate Token - LOGCSN
As of Version 10 of Oracle GoldenGate a new header token was introduced into the GoldenGate Trail File. This
token represents the commit sequence number for the transaction. This token is named LOGCSN. For an Oracle
database LOGCSN maps to the Oracle System Change Number (SCN). LOGCSN can be viewed in logdump. It
only exists for records that have a TransInd of 0 (begin Transaction) or 3 (Single Operation Transaction). If a
transaction contains multiple operations then the first operation will contain a TransID of 0, denoting the begin of a
transaction; an operation after this first operation but within the same transaction will contain a TransInd of 1; the last
operation in this transaction will containa TransID of 2,. If a transaction only contains 1 operation then this operation
will contain a TransID of 3. Below is an example of what you would see in logdump.
Logdump >ghdr on
Logdump >ggstoken detail
Logdump >n
___________________________________________________________________
Hdr-Ind : E (x45) Partition : . (x0c)
UndoFlag : . (x00) BeforeAfter: A (x41)
RecLength : 58 (x003a) IO Time : 2017/07/17 14:08:22.000.864
IOType : 5 (x05) OrigNode : 255 (xff)
TransInd : . (x00) FormatType : R (x52)
SyskeyLen : 0 (x00) Incomplete : . (x00)
AuditRBA : 29739 AuditPos : 26471856
Continued : N (x00) RecCount : 1 (x01)
GGS tokens:
TokenID x52 'R' ORAROWID Info x00 Length 20
4141 4167 3966 4141 4541 4149 7270 4d41 4141 0001 | AAAg9fAAEAAIrpMAAA..
TokenID x74 't' ORATAG Info x01 Length 0
TokenID x4c 'L' LOGCSN Info x00 Length 9
3832 3937 3139 3732 37 | 829719727
TokenID x36 '6' TRANID Info x00 Length 11
342e 3238 2e39 3437 3537 34 | 4.28.947574
TokenID x69 'i' ORATHREADID Info x01 Length 2
| ..
As of Oracle GoldenGate version 10, we can specify the LOGCSN we wish to begin to apply the changed data.
This is now part of the GGSCI command START REPLICAT.
3 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
specified one are skipped. The transaction whose begin-transaction record in the Trail File contains the
specified CSN is applied, as are transactions after that CSN.
» AFTERCSN <csn> causes Replicat to skip transactions in the Trail File until it finds the first transaction
after the one that contains the specified CSN. All transactions whose begin-transaction record in the Trail
File contain a CSN less than, or equal to, the specified one are skipped.
The trick now becomes determining what that CSN number is that the Replicat should begin to start applying data.
The location of that CSN number is dependent on the form of instantiation that is used.
This is valid for Oracle GoldenGate (OGG) version 12.2 and above. This is a transparent integration of OGG with
Oracle Data Pump. This feature requires OGG version 12.2 and above on the source and target system. The CSN
for each table is captured on an Oracle Data Pump Export. The CSN is then applied to system tables and views on
the target database on an import. These views and system tables are referenced by Replicat when applying data to
the target database. This 12.2 feature no longer requires administrators to know what CSN number Replicat should
be started with. Replicat will handle it automatically when the Replicat Parameter DBOPTIONS
ENABLE_INSTANTIATION_FILTERING is enabled. It also eliminates the need of specification of individual MAP
for each imported table with the @FILTER(@GETENV(‘TRANSACTION’,‘CSN’) or HANDLCOLLISIONS clause .
At Source Database:
» Source System tables are automatically prepared when issuing the command ADD TRANDATA / ADD
SCHEMATRANDATA.
GGSCI> add schematrandata apps
TABLE_NAME SCN
------------------------------ ----------
TCUSTMER 829695121
TCUSTORD 829695126
Note: The dba_capture_prepared_tables does not get populated till the first export of the tables. The scn is
the smallest system change number (SCN) for which the table can be instantiated. It is not the export
SCN.
4 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
» Oracle Data Pump Export will automatically generate import actions to set instantiation CSN for each table
at target upon import.
At Target Database:
» Datapump import will populate system tables and views with instantiation CSNs
SQL> select source_object_name, instantiation_scn, ignore_scn from
dba_apply_instantiated_objects where source_object_owner = 'APPS' ;
» Start replicat, who will query instantiation CSN on any new mapping and filter records accordingly Filters
out DDL and DML records based on each table’s instantiation CSN . Output in the report file will show the
table name and to what CSN the replicat will start applying data.
In order to not miss any data, before starting any instantiation method, you must make sure that all open
transactions that existed when the real-time extract was started are completed.
The best source for this information is the V$TRANSACTION performance view (GV$TRANSACTION in a RAC
database). After starting your extract, determine what transactions exist in this view. When a transaction is complete,
it will no longer exist in this view. You may have to query this view many times. If a particular transaction is running
for longer than expected, you will need to investigate who is running that transaction and what that transaction
doing. Ultimately, you may discover that you will need to kill the session that owns the long running transaction in
order to begin the instantiation of your target system.
5 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Homogeneous Instantiation Methods
For a homogeneous instantiation the Oracle Database and the operating system version are exactly the same.
There are a few Oracle methods that can be used create the target database in a homogeneous environment. Each
method can be researched in more depth in the appropriate Oracle documentation guide. However, this document
will touch upon most applications.
Figure1: Source and Target Systems are the same version of the database and operating system
Below are sample steps that you would use to instantiate an Oracle homogeneous target system using RMAN.
This sample scenario will only work in like to like environments. In this document we are assuming that the
destination has the exact same directory structure as the source. The source system needs a listener configured
with entries in the tnsnames.ora for both the source and target.
6 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Source Setup
See 12c Installation Guide
7 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
ACCESSRULE, PROG *, IPADDR <Source IP Address>, ALLOW
ACCESSRULE, PROG *, IPADDR *, DENY
Note: The local system IPADDR may be the first entry of the loopback (127.0.0.1) or localhost in the /etc/hosts file.
The MGR.rpt file will list what IP Address is trying to initiate the command.
EXTTRAIL ./dirdat/et
STATOPTIONS REPORTFETCH
REPORTCOUNT every 10 minutes, RATE
REPORTROLLOVER AT 01:00 ON SUNDAY
TABLE APPS.* ;
Target Setup
See 12c Installation Guide
8 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
SQL> create user oraggs identified by xxxxxx;
SQL> alter user oraggs default tablespace <OGG Tablespace Name> temporary
tablespace TEMP quota unlimited on <OGG Tablespace Name>;
Note: The local system IPADDR may be the first entry of the loopback (127.0.0.1) or localhost in the /etc/hosts file.
The MGR.rpt file will list what IP Address is trying to initiate the command.
9 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Syntax to Create Target Groups and Trail Files
GGSCI> DBLOGIN USERID oraggs, PASSWORD xxxx
GGSCI> ADD CHECKPOINTTABLE chktbl
GGSCI> ADD REPLICAT RAPPS, INTEGRATED, EXTTRAIL ./dirdat/rt, CHECKPOINTTABLE
chktbl
» Copy backup files to destination located in the same location as they were written on the source (default is
$ORACLE_HOME/dbs but it may have been changed using the CONFIGURE command in RMAN).
sftp> <backup files>
Note for future use the second SCN (34822578) returned from the command, it appears at the end of the output.
10 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
» Start up auxiliary instance (make sure the $ORACLE_SID is set correctly and the init<SID>.ora is in
$ORACLE_HOME/dbs)
SQLPLUS> startup nomount
OS> RMAN target sys/<sys password for source db>@<source database from
tnsnames.ora >
RMAN> connect auxiliary /
RMAN> duplicate target database to <databasename> nofilenamecheck until scn <value
returned from RMAN restore database preview summary command> ;
Note: you can also run the duplicate database command by running RMAN on the source. In that case you use
connect target / on the source, and connect auxiliary sys@<target db>. In either case you must copy the backup
files to the destination server. Also for this scenario you must include a tnsnames entry for the target database which
would be added to the tnsnames.ora file on the host with the auxiliary. In addition, on the source server, you must
have listener configured to accept requests for the destination database in a nomount state. This is done by
explicitly including the service/SID in the listener.ora configuration file.
» Once complete review the Oracle alert log to get last SCN that the database was recovered to. Look in the oracle
alert log for the following entry:
RESETLOGS after incomplete recovery UNTIL CHANGE 34822578
At 34822578 in this sample is the SCN where we want Replicat to start processing
» Create spfile (if you want to use an spfile; if not you can skip this step and the next step below):
SQLPLUS> create spfile from pfile=’$ORACLE_HOME/dbs/init<sid>.ora’ ;
11 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Notes for Oracle RAC and ASM
The steps to duplicate an Oracle RAC database, or to go from a single instance to an Oracle RAC database, or vice
versa, are not very different from the approach to duplicate a single instance database. In order to restore and
recover a RAC database you have to have a dedicated connection to the database, which implies you have to set
the cluster_database initialization parameter to false. After the restore and recovery you can reset this parameter to
true and bring up the other instances. Similar to the single instance recovery using RMAN the alert.log for the
instance that was used to perform the recovery contains the SCN that was recovered until, which must be used to
start replicat.
If you recover a database into an ASM instance then it is probably easiest to use Oracle Managed files in ASM. Use
the db_create_file_dest, db_create_online_log_dest_1 and db_recovery_file_dest parameters to indicate which
ASM diskgroup(s) you want to use for the data and temp files, redo log files and archive log files.
See Also: Oracle Database Backup and Recovery Advanced User’s Guide for more specific details.
Much of these options are documented in the Oracle Database Backup and Recovery Advanced User's Guide.
There are also many knowledge base articles written on this subject, including but not limited to article id 228257.1
‘RMAN Duplicate Database Feature’.
The data returned by this query is the CSN that should be used to start the Replicat.
See Also: Oracle Database Backup and Recovery Advanced User’s Guide for more specific details.
12 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Heterogeneous Instantiation Methods
A heterogeneous environment is a configuration where the source and target are different. The difference could be
as simple as a database version or OS version. Or the difference could be a completely different database on a
different platform, e.g. Oracle on Linux to Microsoft SQL Server on Windows.
In a heterogeneous environment, a clone of the source system would need to be created using one of the
Homogeneous Instantiation Methods described in the previous sections of this paper. This clone would then
become the source for the initial load of the target system. The CSN determined when building the clone will
become the CSN where Replicat will begin processing.
Figure2: Source and Target Systems have different Operating System, Database or both.
Some of the methods that can be used to instantiate the target from the clone are OracleTransportable Tablespaces
(Oracle to Oracle only), Oracle expdp/impdp (Oracle to Oracle only), or GoldenGate Initial Load extract/replicat.
The one heterogeneous instantiation method that does not always require a clone is Oracle EXPDP/IMPDP. You
can use these utilities to pull the data from the clone or to pull the data directly from the source database. The
decision to use a clone versus using the product source usually comes down reducing the overhead on the source
system for pulling this data.
13 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Transportable Tablespaces
Oracle Transportable Tablespaces allows users to quickly move user tablespaces across Oracle databases. Oracle
Transportable Tablespaces became available in Oracle8i Databaseof the database. However, this feature did not
have cross platform support until version 10 of the database.
This feature requires that the source system be in read only mode which is why this method cannot be used on a
highly available database. This method works perfectly if the source for the target database is a clone of the highly
available database, because the clone database can easily be put in read only mode with no affect on the highly
available production database.
See Also: Oracle Database Administrator’s Guide for more specifc details on Transportable Tablespaces.
GoldenGate’s Initial Load process allows users to easily move data cross database and cross platform. For
example, data can be moved from an Oracle Database 10g/HP-UX environment to a Microsoft SQL
Server/Windows environment.
GoldenGate’s initial load can be performed from an active source database. Users and applications can access and
update data while the load is running. There are different approaches for using GoldenGate Initial Load and each
approach is well documented in the GoldenGate for Windows and Unix Adminstrator’s Guide.
The Oracle Data Pump allow a more targeted approach to moving only specific tables or schemas to the new target
system. These utilities will allow you instantiate different oracle versions on different platforms with or without using a
clone.
Data Pump Export (expdp) and Data Pump Import (impdp) were introduced in Oracle 10g. Data Pump Export
(expdp) functionality is similar to that of the original Export utility (exp), they are completely separate utilities and
their files are not compatible. Data Pump Import (impdp) functionality is similar to that of the original Import utility
(imp), but it can only read files created by Data Pump Export. The original Export utility (exp) is not be supported in
Oracle Database 11g for general use. Import (imp) will be supported to enable import of export files created with
older versions of Oracle. Visit http://metalink.oracle.com for details on its support for exp, imp, expdp and impdp.
14 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Prior to Oracle GoldenGate 12.2, the export would be performed directly on the production system by using the
export with the FLASHBACK_SCN option. Then the FLASHBACK_SCN used for the export would then be the CSN
value used for the Replicat. Note that you have to take the entire export using the same value for
FLASHBACK_SCN for your entire export, even if you use multiple export files (e.g. you run multiple sessions in
parallel, or in the case of Data Pump Export, you use Oracle's parallelism).
For OGG Versions 12.2 and above, the FLASHBACK_SCN is no longer required when using the Replicat
Parameter, DBOPTIONS ENABLE_INSTANTIATION_FILTERING, is enabled . Oracle Data Pump and Oracle
GoldenGate have a tighter integration. . The CSN for each table is captured on an Oracle Data Pump Export. The
CSN is then applied to system tables and views on the target database on an import. These views and system
tables are referenced by Replicat when applying data to the target database. This 12.2 feature no longer requires
administrators to know what CSN number Replicat should be started with. Replicat will handle it automatically when
the Replicat Parameter DBOPTIONS ENABLE_INSTANTIATION_FILTERING is enabled.
In either case, make sure that there will be sufficient undo space available to run through the export. If the
production system is very busy and there is no disk space available to add any undo space but you can configure a
duplicate system, then you can use that duplicate system to run a transactionally consistent export (assuming the
duplicate system will be idle there is no need to use FLASHBACK_SCN in that case).
See Also: Oracle Database Administrator’s Guide for more specifc details on Data Pump Export, Data Pump Import,
original export and import utilities.
15 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Example 1: Full Export Using Oracle Data Pump For OGG Versions Prior to 12.2
For more details on the above steps and parameter files, reference the detailed examples in the Homogenous
section of the document.
» Run the Data Pump Export using the flashback SCN you obtained in the previous step. The following
example shows running the expdp utility at a Degree Of Parallelism (DOP) of 4. If you have sufficient system
resources (CPU, memory and IO) then running at a higher DOP will decrease the amount of time it takes to
take the export (up to 4x for a DOP of 4). Note that expdp uses Oracle Database parallel execution settings
(e.g. parallel_max_servers) which have to be set appropriately in order to take advantage of parallelism.
16 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Other processes running in parallel may be competing for those resources. See the Oracle Documentation
for more details.
>Username: system
Note: Any DB user with DBA privileges will do
>Password:
Note: The export log needs to be checked for errors.
17 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Example 2: Full Export Using Oracle Data Pump For OGG Versions 12.2 and above
DBOPTIONS ENABLE_INSTANTIATION_FILTERING
18 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
DDLOPTIONS REPORT
For more details on the above steps and parameter files, reference the detailed examples in the Homogenous
section of the document.
» Run the Data Pump Export. The following example shows running the expdp utility at a Degree Of
Parallelism (DOP) of 4. If you have sufficient system resources (CPU, memory and IO) then running at a
higher DOP will decrease the amount of time it takes to take the export (up to 4x for a DOP of 4). Note that
expdp uses Oracle Database parallel execution settings (e.g. parallel_max_servers) which have to be set
appropriately in order to take advantage of parallelism. Other processes running in parallel may be
competing for those resources. See the Oracle Documentation for more details.
>Username: system
Note: Any DB user with DBA privileges will do
>Password:
Note: The export log needs to be checked for errors.
19 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Example 3: Schema Level Export Using Oracle Data Pump For OGG Versions Prior to 12.2
» Run the Data Pump Export using the flashback SCN you obtained in the previous step. The following
example shows running the expdp utility at a Degree Of Parallelism (DOP) of 4. If you have sufficient system
resources (CPU, memory and IO) then running at a higher DOP will decrease the amount of time it takes to
take the export (up to 4x for a DOP of 4). Note that expdp uses Oracle Database parallel execution settings
20 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
(e.g. parallel_max_servers) which have to be set appropriately in order to take advantage of parallelism.
Other processes running in parallel may be competing for those resources. See the Oracle Documentation
for more details.
>Username: system
Note: Any DB user with DBA privileges will do
>Password:
Note: The export log needs to be checked for errors.
21 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Example 4: Schema Level Export Using Oracle Data Pump For OGG Versions 12.2 and above
DBOPTIONS ENABLE_INSTANTIATION_FILTERING
22 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
DDLOPTIONS REPORT
» Run the Data Pump Export. The following example shows running the expdp utility at a Degree Of
Parallelism (DOP) of 4. If you have sufficient system resources (CPU, memory and IO) then running at a
higher DOP will decrease the amount of time it takes to take the export (up to 4x for a DOP of 4). Note that
expdp uses Oracle Database parallel execution settings (e.g. parallel_max_servers) which have to be set
appropriately in order to take advantage of parallelism. Other processes running in parallel may be
competing for those resources. See the Oracle Documentation for more details.
>Username: system
Note: Any DB user with DBA privileges will do
>Password:
Note: The export log needs to be checked for errors.
» View the report file to verify CSN Filtering is occurring. You should see the following messages.
2017-07-17 15:02:51 INFO OGG-10155 Instantiation CSN filtering is enabled
on table APPS.TCUSTMER at CSN 829,723,224.
2017-07-17 15:02:51 INFO OGG-10155 Instantiation CSN filtering is enabled
on table APPS.TCUSTORD at CSN 829,723,223.
23 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Where to Go for More Information
Hopefully, this white paper has provided a quick overview of what options you can utilize to instantiate your target
environment. Undoubtedly, you will eventually fine-tune this process in your own environment.
Reference the Oracle Database 12.1 Documentation for additional information on the Oracle 12.1 RDBMS.
Reference the Oracle GoldenGate 12c Reference Guide and the Oracle GoldenGate 12c Administration Guide for
additional information on:
24 | INSTANTIATION FROM FROM AN ORACLE SOURCE DATABASE WITH ORACLE GOLDENGATE 12C
Oracle Corporation, World Headquarters Worldwide Inquiries
500 Oracle Parkway Phone: +1.650.506.7000
Redwood Shores, CA 94065, USA Fax: +1.650.506.7200
CONNECT W ITH US
blogs.oracle.com/oracle Copyright © 2014, Oracle and/or its affiliates. All rights reserved. This document is provided for information purposes only, and the
contents hereof are subject to change without notice. This document is not warranted to be error-free, nor subject to any other
warranties or conditions, whether expressed orally or implied in law, including implied warranties and conditions of merchantability or
facebook.com/oracle fitness for a particular purpose. We specifically disclaim any liability with respect to this document, and no contractual obligations are
formed either directly or indirectly by this document. This document may not be reproduced or transmitted in any form or by any
twitter.com/oracle means, electronic or mechanical, for any purpose, without our prior written permission.
Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.
oracle.com
Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used under license and
are trademarks or registered trademarks of SPARC International, Inc. AMD, Opteron, the AMD logo, and the AMD Opteron logo are
A-Team Chronicles ateam-oracle.com trademarks or registered trademarks of Advanced Micro Devices. UNIX is a registered trademark of The Open Group. 0717
OGG 12c Tutorial for Oracle to Oracle (12c Multitenant Container Database)
July 2017
Author: Tracy West
Contributing Authors: