Oracle GoldenGate for Non-Audited Enscribe to Oracle

Size: px
Start display at page:

Download "Oracle GoldenGate for Non-Audited Enscribe to Oracle"

Transcription

1 Oracle GoldenGate for Non-Audited Enscribe to Oracle Oracle GoldenGate for Non-Audited Enscribe to Oracle Objective Upon completion of this lesson, you will be able to keep two heterogeneous databases synchronized, in this case NonStop non-audited Enscribe to Oracle. During this lesson, you will learn how to: Prepare your environment to configure the GoldenGate processes Configure and execute the initial data load Configure and start the change capture of database operations Configure and start the change delivery of database operations NonStop Enscribe to Oracle configuration The following diagram illustrates a configuration with the source data in a non-audited data base on the HP NonStop and the target in an Oracle database on a Windows or UNIX platform. NonStop <source> Source database Manager Windows server <target> Manager Logger Network Trails Extract Collector Trails Oracle Replicat Target <schema> Page 1

2 Oracle GoldenGate for Non-Audited Enscribe to Oracle Overview of Tasks Prepare the Environment In order to execute this lesson, the GoldenGate application must be installed on both the source and target systems. The installation includes a sample database and scripts to generate initial data as well as subsequent update operations. The source and target tables are created and loaded with initial data. The GoldenGate Manager processes are also started so that other processes may be configured and started. Initial Data Load To initially load data between heterogeneous databases, use the GoldenGate application to perform your initial data synchronization while the application remains active. This lesson demonstrates the direct method using Extract to pull data from the source files and sending the data directly to Replicat on the target system. <source> NonStop Windows or UNIX <target> server Network Oracle Source database Initial Extract Initial Replicat Target <schema> Configure Change Capture For non-audited files, you must identify all programs that perform database operations on the files to be captured. These programs are bound with the GoldenGate intercept library. The Logger process is configured and started to create the log trail of all captured operations. An Extract process distributes the trails to the remote system. Configure Change Delivery Once the tables have been initially loaded with data and the Extract process is capturing all operations, the Replicat process is configured to deliver the captured operations to the target database. Page 2

3 Prepare the Environment Exercise 1. Prepare the Environment Objective The goals of this exercise are to: Configure and start the Manager processes. Prepare the source and target sample databases. Prepare the source NSK environment 1. Configure a GLOBALS parameter file on the source A GLOBALS parameter can be used to uniquely identify each GoldenGate instance when multiple environments exist on single NSK node. Use the two-character <prefix> that was defined in the Lab Preparation. Execute the following commands on the <source> system unless neither a <prefix> nor <audcfg> is needed for your installation. TACL> VOLUME <install vol>.<install subvol> TACL> TEDIT GLOBALS ADD DEFINE =GGS_PREFIX, CLASS MAP, FILE $<prefix> ADD DEFINE =GGS_AUDCFG, CLASS MAP, FILE <audcfg> 2. Configure the Manager process on the source system The Manager process is responsible for starting and monitoring all of the other GoldenGate processes. You will always have one manager process per GoldenGate instance. TACL> VOLUME <install vol>.<install subvol> TACL> RUN GGSCI GGSCI> TEDIT PARAMS MGRPARM GoldenGate Manager Parameter file TCPIPPROCESSNAME <tcpip process> PORT <port> GGSCI> START MANAGER, CPU 1, PRI 180 3

4 Prepare the Environment Verify the results: GGSCI> INFO MANAGER 3. Create and load source files The installation includes scripts to create sample files and generate initial data. Note that your <prefix> may need to be substituted for the GG in subvolume GGSSOU used in this section. Move the script to the source data volume. TACL> VOLUME <install vol>.ggssou TACL> FUP DUP <install subvol>.demoldeo, GGSSOU.* Run the scripts. TACL> FUP /IN <install vol>.<install subvol>.demofups/ TACL> RUN <install vol>.<install subvol>.demoldeo Within DEMOLDEO the following prompts and replies are issued: To perform an initial load enter (I), to update the database enter (U) or to exit the program enter (E).?I To perform an initial load enter (I), to update the database enter (U) or to exit the program enter (E).?E Verify the results: TACL> FUP COPY ECUSTMER TACL> FUP COPY ECUSTORD 4. Generate source definitions The DEFGEN utility is an interactive program that generates a source definition file describing the layouts of the files/tables that are to be replicated. TACL> VOLUME <install vol>.<install subvol> TACL> RUN DEFGEN Within DEFGEN, the following prompts and replies are issued: Enter definitions filename (or Exit): <install vol>.ggsdef.ecustdef File/Table to create definition for (or Exit): <install vol>.ggssou.ecustmer Definition retrieved. File/Table to create definition for (or Exit): <install vol>.ggssou.ecustord Definition retrieved. File/Table to create definition for (or Exit): EXIT 4

5 Prepare the Environment 5. Move the source definitions to the target After exiting, FTP the file <install-vol>.ggsdef.ecustdef in ASCII format to the target <install location>/dirdef/source.def. 5

6 Initial Data Load: NonStop ENS to Oracle Exercise 2. Initial Data Load: NonStop ENS to Oracle Objective The goals of this exercise are to: Configure and execute the initial data load capture Configure and execute the initial data delivery Configure initial load 1. Add the initial load capture batch task group Execute the following commands on the <source> system to add an Extract named EINI<unique id>1. GGSCI> ADD EXTRACT EINI<unique id>, SOURCEISTABLE Verify the results: GGSCI> INFO EXTRACT *, TASKS 2. Configure the initial load capture parameter file GGSCI> EDIT PARAMS EINI<unique id> GoldenGate Initial Data Capture for ECUSTMER and ECUSTORD EXTRACT EINI<unique id> RMTHOST <target>, MGRPORT <port> RMTTASK REPLICAT, GROUP RINI<unique id> TABLE <install vol>.ggssou.ecustmer; TABLE <install vol>.ggssou.ecustord; 1 The process names used in lab exercises, for example EINIBD, are made up of 1) one character for the GoldenGate process (E for Extract, R for Replicat); 2) three or four to describe the process type (INI for initial data load, ORA for capture from or delivery to an Oracle database, etc.) and 3) two characters to create a unique identifier (usually your initials).. 6

7 Initial Data Load: NonStop ENS to Oracle 3. Add the initial load delivery batch task group Execute the following commands on the <target> system. GGSCI> ADD REPLICAT RINI<unique id>, SPECIALRUN Verify the results: GGSCI> INFO REPLICAT *, TASKS 4. Configure the initial load delivery parameter file Execute the following commands on the <target> system. GGSCI> EDIT PARAMS RINI<unique id> Change Delivery parameter file for TCUSTMER and TCUSTORD changes REPLICAT RINI<unique id> USERID <login>, PASSWORD <password> SOURCEDEFS./dirdef/source.def DISCARDFILE./dirrpt/RINI<unique id>.dsc, PURGE MAP <install vol>.ggssou.ecustmer, TARGET <owner/schema>.ecustmer; MAP <install vol>.ggssou.ecustord, TARGET <owner/schema>.ecustord; Note: Remember to use <db type>.def if you renamed the source.def when you transferred it to the <target>. 5. Execute the initial load process GGSCI> START EXTRACT EINI<unique id> Verify results: GGSCI> VIEW REPORT EINI<unique id> 7

8 Configure Change Capture Exercise 3. Configure Change Capture Objective The goals of this exercise are to: Configure and add the Logger process that will log changes. Bind in the GoldenGate intercept library. Configure and add the Extract process that will route the changes to the remote system. Start the capture process. Configure and start logging changes 1. Create the Logger parameter file Execute the following commands on the <source> system to define a Logger process to capture changes for the non-audited Enscribe files and store these changes in GoldenGate trails. GGSCI> TEDIT PARAMS LOGPARM LOGGER configuration for one logger process LOG <install vol>.ggslog.<log trail id>, MEGABYTES 2, NUMFILES 5, SECURE "NUUU" CPU 1, 0 FILE <install vol>.ggssou.ecustmer; FILE <install vol>.ggssou.ecustord; Note: Record the two characters selected for your <log trail id>:. You will need this for step Process the Logger configuration GGSCI> ADD LOGGER Start the Logger Process GGSCI> START LOGGER 8

9 Configure Change Capture Verify the results: GGSCI> INFO LOGGER Bind the intercept library 3. Bind GoldenGate intercept library to application programs Execute the following commands on the <source> system to bind in the routines that will route changes to Logger. GGSCI> INFO PROGRAM <install vol>.ggssou.demoldeo GGSCI> BIND PROGRAMS Enter the name of the program at the Program prompt. Program <install vol>.ggssou.demoldeo Adding program <install vol>.ggssou.demoldeo to change library list. After all programs have been entered, start the binding process by entering GO at the Program prompt. To abort the process, enter EXIT. Program: GO The program will interact as shown below. The following programs will include GGSLIB as a user library. <install vol>.ggssou.demoldeo It is strongly recommended that you make backup copies of all programs before continuing. Begin with BIND process (Y/N)? Y Beginning program linking to GGSLIB Changing user library for <install vol>.ggssou.demoldeo to <source>.<install vol>.<install subvol>.ggslib. BIND completed. Errors Detected: 0 Review report file <source>.<install vol>.ggsrpt.bind for complete results. Verify results: GGSCI> INFO PROGRAM <install vol>.ggssou.demoldeo GGSCI> VIEW REPORT BIND 9

10 Configure Change Capture Configure change capture 4. Create the Extract parameter file Execute the following commands on the <source> system to define an Extract process to route changes from the log trails (<log trail id>) to remote trails (<trail id>). GGSCI> TEDIT PARAM ELOG<unique id> EXTRACT parameter file to read log trail data and distribute the data to remote trail on the target system EXTRACT ELOG<unique id> DISCARDFILE <install vol>.ggsdisc.elog<unique id>, PURGE PASSTHRU TCPIPPROCESSNAME <tcpip process> RMTHOST <target>, MGRPORT <port> RMTTRAIL./dirdat/<trail id> FILE $*.*.*; Note: Use the target name or its IP address to identify the <target> system of RMTHOST parameter. Use the \node for the <target> of the fully qualified remote file name. Note: Record the two characters selected for your <trail id>:. You will need this for the Replicat. 5. Add the Extract group GGSCI> ADD EXTRACT ELOG<unique id>, LOGTRAILSOURCE <install vol>.ggslog.<log trail id> Verify the results: GGSCI> INFO EXTRACT ELOG<unique id> 6. Define the GoldenGate remote trails GGSCI> ADD RMTTRAIL./dirdat/<trail id>, EXTRACT ELOG<unique id>, MEGABYTES 5 7. Start the Extract process GGSCI> START EXTRACT ELOG<unique id> 10

11 Configure Change Capture Verify the results: GGSCI> INFO EXTRACT ELOG<unique id> Discussion points 1. Using Logger When is it necessary to use Logger? 2. Binding to the intercept library Why is it necessary to bind the application programs to the GoldenGate intercept libraries when using Logger? 3. Using BIND arguments In GGSCI, do a HELP BIND PROGRAMS. Go over the list of arguments to try to understand when you might use each of them. When would you use CHANGELIB? 4. Identifying a remote system What parameters are used to identify the remote target system? 5. Using PASSTHRU This parameter is used only when Extract is distributing data from what type of trail? Hint: Search in the GoldenGate for HP NonStop Reference Guide for PASSTHRU NOPASSTHRU 11

12 Configure Change Delivery Exercise 4. Configure Change Delivery Objective The goals of this exercise are to: Set up the checkpoint table on the target system. Create a named group that includes the Replicat process and the checkpoint tables. Configure the Replicat group by adding parameters. Start the Replicat group. Set up the checkpoint table 1. Create a GLOBALS file on the target system Execute the following commands on the <target> system. Create and edit the GLOBALS parameter file to add the checkpoint table. Shell> cd <install location> Shell> ggsci GGSCI> EDIT PARAMS./GLOBALS In the text editor, type: CHECKPOINTTABLE <owner/schema>.ggschkpt Record the checkpoint table owner and name, then save and close the file. Table owner name Note: You could name the table anything you want, but for training purposes we are using ggschkpt. Verify that the GLOBALS file was created in the root GoldenGate directory, and remove any file extension that was added. 2. Activate the GLOBALS parameters For the GLOBALS configuration to take effect, you must exit the session in which the changes were made. Execute the following command to exit GGSCI. GGSCI> EXIT 12

13 Configure Change Delivery 3. Add a Replicat checkpoint table On the <target> system, execute the following commands in GGSCI: Shell> cd <install location> Shell> ggsci GGSCI> DBLOGIN USERID <login>, PASSWORD <password> GGSCI> ADD CHECKPOINTTABLE Configure Change Delivery 4. Add the Replicat group Execute the following command on the <target> system to add a delivery group named RORA<unique id>. GGSCI> ADD REPLICAT RORA<unique id>, EXTTRAIL./dirdat/<trail id> Note: Refer to your Extract set up for the correct two-character <trail id>. 5. Create Replicat parameter file Execute the following commands on the <target> system to bring up the parameter file in the editor. GGSCI> EDIT PARAM RORA<unique id> Type in the following parameters Change Delivery parameter file to apply TCUSTMER and TCUSTORD Changes REPLICAT RORA<unique id> USERID <login>, PASSWORD <password> HANDLECOLLISIONS SOURCEDEFS./dirdef/source.def DISCARDFILE./dirrpt/RORA<unique id>.dsc, PURGE MAP <source vol>.ggssou.tcustmer, TARGET <owner/schema>.tcustmer; MAP <source vol>.ggssou.tcustord, TARGET <owner/schema>.tcustord; 6. Start the Replicat process GGSCI> START REPLICAT RORA<unique id> Verify the results: GGSCI> INFO REPLICAT RORA<unique id> 13

14 Configure Change Delivery Discussion points Search in the Windows/UNIX Reference Guide for the information on the following questions. 1. When to use HANDLECOLLISIONS For which stage of GoldenGate processing change capture, initial data load, or change delivery would you use HANDLECOLLISIONS? What does it do? 2. What information is supplied by SOURCEDEFS 3. What is the purpose of the DISCARDFILE? 14

15 Generate Activity and Verify Results Exercise 5. Generate Activity and Verify Results Objective The goals of this exercise are to: Execute miscellaneous update, insert, and delete operations on the source system. Verify the delivery of the changes to the target Generate database operations 1. Execute miscellaneous update, insert, and delete operations Set up the define for AUDCFG at the TACL prompt. TACL> ADD DEFINE =GGS_AUDCFG, CLASS MAP, FILE $<audcfg> Execute update operations. TACL> VOLUME <install vol>.ggssou TACL> RUN DEMOLDEO Within DEMOLDEO the following prompts and replies are issued: To perform an initial load enter (I), to update the database enter (U) or to exit the program enter (E).?U To perform an initial load enter (I), to update the database enter (U) or to exit the program enter (E).?E Verify change capture and delivery 2. Verify the results on your source system Execute the following commands on the <source> system to view the contents of the source Enscribe files. TACL> FUP COPY <install vol>.ggssou.ecustmer TACL> FUP COPY <install vol>.ggssou.ecustord Page 15

16 Generate Activity and Verify Results 3. Verify your results on the target system Execute the following commands on the <target> system to verify the target data. Shell> cd <install location> Shell> sqlplus <userid>/<password> SQL> select * from ecustmer; SQL> select * from ecustord; SQL> exit Shell> ggsci GGSCI> SEND REPLICAT RORA<unique id>, REPORT GGSCI> VIEW REPORT RORA<unique id> Turn off error handling 4. Turn off initial load error handling for the running delivery process GGSCI> SEND REPLICAT RORA<unique id>, NOHANDLECOLLISIONS 5. Remove initial load error handling from the parameter file GGSCI> EDIT PARAMS RORA<unique id> Remove the HANDLECOLLISIONS parameter. Page 16

17 Exercise Name Page 17

GoldenGate for Audited NonStop Enscribe to Oracle Using a Data Pump for CDC

GoldenGate for Audited NonStop Enscribe to Oracle Using a Data Pump for CDC GoldenGate for Audited NonStop Enscribe to Oracle Using a Data Pump for CDC GoldenGate for Audited NonStop Enscribe to Oracle Using a Data Pump for CDC Objective Upon completion of this lesson, you will

More information

GoldenGate for NonStop SQL/MP to Oracle

GoldenGate for NonStop SQL/MP to Oracle GoldenGate for NonStop SQL/MP to Oracle GoldenGate for NonStop SQL/MP to Oracle Objective Upon completion of this lesson, you will be able to keep two heterogeneous databases synchronized; in this case

More information

GoldenGate for NonStop SQL/MP to SQL Server

GoldenGate for NonStop SQL/MP to SQL Server GoldenGate for NonStop SQL/MP to SQL Server GoldenGate for NonStop SQL/MP to SQL Server Objective Upon completion of this lesson, you will be able to keep two heterogeneous databases synchronized, in this

More information

Oracle GoldenGate for DB2 to Oracle

Oracle GoldenGate for DB2 to Oracle Oracle GoldenGate for DB2 to Oracle Oracle GoldenGate for DB2 to Oracle Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide DB2 to Oracle synchronization. During

More information

GoldenGate for DB2 to Oracle

GoldenGate for DB2 to Oracle GoldenGate for DB2 to Oracle GoldenGate for DB2 to Oracle Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide DB2 to Oracle synchronization. During this lesson,

More information

HP NonStop SQL/MX to Oracle

HP NonStop SQL/MX to Oracle HP NonStop SQL/MX to Oracle HP NonStop SQL/MX to Oracle Objective Upon completion of this lesson, you will be able to keep two heterogeneous databases synchronized, in this case NonStop SQL/MP to Oracle.

More information

GoldenGate for DB2 on zos to DB2 on UNIX

GoldenGate for DB2 on zos to DB2 on UNIX GoldenGate for DB2 on zos to DB2 on UNIX GoldenGate for DB2 on zos to DB2 on UNIX Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide DB2 synchronization. During

More information

Oracle GoldenGate for Oracle to Oracle

Oracle GoldenGate for Oracle to Oracle Oracle GoldenGate for Oracle to Oracle Oracle GoldenGate for Oracle to Oracle Objective Upon completion of this lesson, you will be able to keep two Oracle databases synchronized. During this lesson, you

More information

GoldenGate for Oracle to DB2 on zos

GoldenGate for Oracle to DB2 on zos GoldenGate for Oracle to DB2 on zos GoldenGate for Oracle to DB2 on zos Objective Upon completion of this lesson, you will be able to keep an Oracle database synchronized with a DB2 database using GoldenGate.

More information

Oracle GoldenGate for Sybase to Sybase on UNIX

Oracle GoldenGate for Sybase to Sybase on UNIX Oracle GoldenGate for Sybase to Sybase on UNIX Oracle GoldenGate for Sybase to Sybase on UNIX Objective Upon completion of this lesson, you will be able to keep two Sybase databases synchronized. During

More information

Oracle GoldenGate for HP NonStop SQL/MP

Oracle GoldenGate for HP NonStop SQL/MP Oracle GoldenGate for HP NonStop SQL/MP Oracle GoldenGate for HP NonStop SQL/MP Objective Upon completion of this lesson, you will be able to keep two NonStop SQL/MP databases synchronized. During this

More information

Upon completion of this lesson, you will be able to configure GoldenGate to provide Oracle to TimesTen synchronization.

Upon completion of this lesson, you will be able to configure GoldenGate to provide Oracle to TimesTen synchronization. Oracle to TimesTen Oracle to TimesTen Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide Oracle to TimesTen synchronization. During this lesson, you will learn

More information

GoldenGate for Oracle to MS SQL Server

GoldenGate for Oracle to MS SQL Server GoldenGate for Oracle to MS SQL Server GoldenGate for Oracle to MS SQL Server Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide Oracle to SQL Server transactional

More information

Oracle GoldenGate for MS SQL Server 2005

Oracle GoldenGate for MS SQL Server 2005 Oracle GoldenGate for MS SQL Server 2005 Objective Upon completion of this lesson, you will be able to configure GoldenGate to provide SQL Server to SQL Server transactional data management using log-based

More information

Teradata to Teradata: Max Performance

Teradata to Teradata: Max Performance Teradata to Teradata: Max Performance Teradata to Teradata: Max Performance Objective Upon completion of this lesson, you will be able to keep two Teradata databases synchronized using the maximum performance

More information

Teradata to Teradata: Max Protection

Teradata to Teradata: Max Protection Teradata to Teradata: Max Protection Teradata to Teradata: Max Protection Objective Upon completion of this lesson, you will be able to keep two Teradata databases synchronized using the maximum protection

More information

Teradata to Teradata: Max Performance

Teradata to Teradata: Max Performance Teradata to Teradata: Max Performance Teradata to Teradata: Max Performance Objective Upon completion of this lesson, you will be able to keep two Teradata databases synchronized using the maximum performance

More information

Teradata to Teradata: Max Protection

Teradata to Teradata: Max Protection Teradata to Teradata: Max Protection Teradata to Teradata: Max Protection Objective Upon completion of this lesson, you will be able to keep two Teradata databases synchronized using the maximum protection

More information

Oracle GoldenGate Director

Oracle GoldenGate Director Oracle GoldenGate Director Patch Set Notes 2.0.0 for Open Systems Oracle GoldenGate Director Patch Set Notes 2.0.0 for Open Systems September 2009 These patch set notes accompany the Oracle GoldenGate

More information

Oracle GoldenGate for Mainframe

Oracle GoldenGate for Mainframe Oracle GoldenGate for Mainframe Administering Oracle GoldenGate for HP NonStop (Guardian) 12c (12.1.2) E28904-01 August 2014 Documentation for system administrators that describes how to plan for, configure,

More information

Getting started. Amardeep Sidhu

Getting started. Amardeep Sidhu Getting started Amardeep Sidhu Oracle/Exadata DBA with over 10 years of experience Working with Oracle ACS twitter.com/amardeep_sidhu http://amardeepsidhu.com/blog I don t know everything A replication

More information

Expert Oracle GoldenGate

Expert Oracle GoldenGate Expert Oracle GoldenGate Ben Prusinski Steve Phillips Richard Chung Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction...1 Distributed

More information

1. Some OGG fundamental concepts : PK/UK, KEYCOLS, ADD TRANDATA, Before and After images and they how work together

1. Some OGG fundamental concepts : PK/UK, KEYCOLS, ADD TRANDATA, Before and After images and they how work together Oracle GoldenGate OGG 11gR2 with Oracle RDBMS - Fundamentals (PK/UK, substitute keys KEYCOLS, ADD TRANDATA, Before and After images and they how work together) In this article you will have a look at some

More information

Oracle - Oracle GoldenGate 12c: Fundamentals for

Oracle - Oracle GoldenGate 12c: Fundamentals for Oracle - Oracle GoldenGate 12c: Fundamentals for Oracle Code: Lengt h: URL: GG-12c-FUND 4 days View Online This Oracle GoldenGate 12c: Fundamentals for Oracle training focuses on Oracle-to-Oracle database

More information

Oracle - 1z Oracle GoldenGate 11g Certified Implementation Exam Essentials

Oracle - 1z Oracle GoldenGate 11g Certified Implementation Exam Essentials 1 Oracle - 1z0-481 Oracle GoldenGate 11g Certified Implementation Exam Essentials QUESTION: 1 Which database platform does GoldenGate not natively support? A. Sybase B. FoxPro C. DB2 D. Teradata QUESTION:

More information

Oracle 1Z0-539 Exam Questions & Answers

Oracle 1Z0-539 Exam Questions & Answers Oracle 1Z0-539 Exam Questions & Answers Number: 1Z0-539 Passing Score: 800 Time Limit: 120 min File Version: 25.8 http://www.gratisexam.com/ Oracle 1Z0-539 Exam Questions & Answers Exam Name: Oracle GoldenGate

More information

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g Oracle GoldenGate 11g Implementer's guide Design, install, and configure high-performance data replication solutions using Oracle GoldenGate John P. Jeffries PUBLISHING enterprise professional expertise

More information

1z0-447.exam.44q 1z0-447 Oracle GoldenGate 12c Implementation Essentials

1z0-447.exam.44q   1z0-447 Oracle GoldenGate 12c Implementation Essentials 1z0-447.exam.44q Number: 1z0-447 Passing Score: 0 Time Limit: 120 min 1z0-447 Oracle GoldenGate 12c Implementation Essentials Exam A QUESTION 1 You edit the GLOBALS file, save the changes, and restart

More information

Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide

Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide Oracle GoldenGate 11g: Fundamentals for SQL Server Student Guide D66523GC20 Edition 2.0 September 2012 D79012 Author Steve Friedberg Technical Contributors and Reviewers Mack Bell Chris Lawless Sue Jang

More information

Oracle GoldenGate 11g Fundamentals for Oracle

Oracle GoldenGate 11g Fundamentals for Oracle Oracle GoldenGate 11g Fundamentals for Oracle Student Guide D66519GC10 Edition 1.0 February 2011 D72291 Disclaimer This document contains proprietary information and is protected by copyright and other

More information

Error Messages Reference for Oracle GoldenGate for Windows and UNIX 12c ( )

Error Messages Reference for Oracle GoldenGate for Windows and UNIX 12c ( ) [1]Oracle Fusion Middleware Error Messages Reference for Oracle GoldenGate for Windows and UNIX 12c (12.2.0.1) E67828-02 January 2016 Provides information about the error messages in Oracle GoldenGate

More information

GoldenGate Zbigniew Baranowski

GoldenGate Zbigniew Baranowski GoldenGate Zbigniew Baranowski Outline What is GoldenGate? Architecture Performance GoldenGate vs. vs Streams Monitoring Summary What is GoldenGate? Real-time data integration solutions Continuous data

More information

Mid-Range Library Media Manager Installation and User s Guide

Mid-Range Library Media Manager Installation and User s Guide Mid-Range Library Media Manager Installation and User s Guide Abstract This guide describes how to install and use the Mid-Range Library Media Manager software. It includes information about connection

More information

Oracle GoldenGate 12c Tips and Tricks. Infrastructure at your Service.

Oracle GoldenGate 12c Tips and Tricks. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. Hervé Schweitzer Chief Technology Officer Principal Consutant +41 79 963 43 67 herve.schweitzer@dbi-services.com Page 2 Who we are

More information

Interception, Replication, and Consolidation Solutions

Interception, Replication, and Consolidation Solutions Interception, Replication, and Consolidation Solutions OPTA2000 clock & time-zone simulator FileSync replication & synchronization software TMF-Audit Toolkit easily converts non-audited TMF files to audited

More information

An Oracle White Paper September Replicating between Cloud and On-Premises using Oracle GoldenGate

An Oracle White Paper September Replicating between Cloud and On-Premises using Oracle GoldenGate An Oracle White Paper September 2013 Replicating between Cloud and On-Premises using Oracle GoldenGate Executive Overview... 2 Requirements for Ensuring Data Consistency... 3 Availability... 3 Reduced

More information

GoldenGate: An Introduction

GoldenGate: An Introduction GoldenGate: An Introduction Patrick Hurley Accenture Enkitec Group Keywords: GoldenGate, logical replication, migration Introduction GoldenGate is a product that can move data from a source data store

More information

FileSync Replicates and Synchronizes Applications and Files between HPE Nonstop Servers. tandsoft.com TANDsoft Corporation

FileSync Replicates and Synchronizes Applications and Files between HPE Nonstop Servers. tandsoft.com TANDsoft Corporation FileSync Replicates and Synchronizes Applications and Files between HPE Nonstop Servers Jack.DiGiacomo @ tandsoft.com TANDsoft Corporation 1 Presentation Agenda Introduction TANDsoft products FileSync

More information

Oracle Fusion Middleware Using Oracle GoldenGate for Heterogeneous Databases

Oracle Fusion Middleware Using Oracle GoldenGate for Heterogeneous Databases Oracle Fusion Middleware Using Oracle GoldenGate for Heterogeneous Databases 12.3.0.1 E88786-03 March 2018 Oracle Fusion Middleware Using Oracle GoldenGate for Heterogeneous Databases, 12.3.0.1 E88786-03

More information

Interception, Replication, Security & Consolidation Solutions

Interception, Replication, Security & Consolidation Solutions Interception, Replication, Security & Consolidation Solutions SDI for Sensitive Data Intercept protects sensitive data-at-rest. Interception, encryption, and tokenization FileSync synchronizes Guardian

More information

Defining Multiple Replicat Processes to Increase GoldenGate Performance

Defining Multiple Replicat Processes to Increase GoldenGate Performance Defining Multiple Replicat Processes to Increase GoldenGate Performance Oracle states that GoldenGate can achieve near real-time data replication. However, out of the box, GoldenGate may not meet your

More information

Library Media Manager Installation and User s Guide

Library Media Manager Installation and User s Guide Library Media Manager Installation and User s Guide Abstract This guide describes how to install and use the Library Media Manager software. It includes information about connection with an HP Integrity

More information

Oracle GoldenGate for Java

Oracle GoldenGate for Java Oracle GoldenGate for Java Administration Guide Version 3.0 October 2009 Administration Guide, version 3.0 Copyright 1995, 2009 Oracle and/or its affiliates. All rights reserved. This software and related

More information

Management Pack for Oracle GoldenGate Oracle GoldenGate Director Administrator's Guide. 12c (12.1.2)

Management Pack for Oracle GoldenGate Oracle GoldenGate Director Administrator's Guide. 12c (12.1.2) Management Pack for Oracle GoldenGate Oracle GoldenGate Director Administrator's Guide 12c (12.1.2) E37634-03 October 2017 Management Pack for Oracle GoldenGate Oracle GoldenGate Director Administrator's

More information

Oracle GoldenGate v10.4. Release Notes. Release Notes

Oracle GoldenGate v10.4. Release Notes. Release Notes GoldenGate v10.4 Release Notes Release Notes October 2009 GoldenGate for Windows and UNIX - Release Notes current to 10.4.0.19 build 1 (September 18 th, 2009) Copyright 2008, 2009 and/or its affiliates.

More information

Oracle Fusion Middleware Upgrading Oracle GoldenGate for Windows and UNIX. 18c (18.1.0)

Oracle Fusion Middleware Upgrading Oracle GoldenGate for Windows and UNIX. 18c (18.1.0) Oracle Fusion Middleware Upgrading Oracle GoldenGate for Windows and UNIX 18c (18.1.0) E95990-02 October 2018 Oracle Fusion Middleware Upgrading Oracle GoldenGate for Windows and UNIX, 18c (18.1.0) E95990-02

More information

SOFTWARE RELEASE DOCUMENT (SOFTDOC)

SOFTWARE RELEASE DOCUMENT (SOFTDOC) SOFTWARE RELEASE DOCUMENT (SOFTDOC) Product: Shadowbase Audit Reader (SAR) Release: Gravic Version 6.230 HP NonStop Shadowbase: T1122-AAD (SB Repl/Guardian) Release Date: May 15, 2016 Copyright Notice:

More information

Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations

Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations Configuring Oracle GoldenGate OGG 11gR2 local integrated capture and using OGG for mapping and transformations In the article you will have a look at an OGG configuration example for local integrated capture

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2

Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades Q2 Linux Operating System Environment Computadors Grau en Ciència i Enginyeria de Dades 2017-2018 Q2 Facultat d Informàtica de Barcelona This first lab session is focused on getting experience in working

More information

Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 1 (11.1.1) E August 2010

Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 1 (11.1.1) E August 2010 Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 1 (11.1.1) E17795-01 August 2010 11g Release 1 (11.1.1) E17795-01 Copyright 1995, 2010 Oracle and/or its affiliates. All rights reserved.

More information

Administering Oracle GoldenGate Adapters 12c ( )

Administering Oracle GoldenGate Adapters 12c ( ) [1]Oracle GoldenGate Application Adapters Administering Oracle GoldenGate Adapters 12c (12.1.2.1.1) E61853-01 May 2015 This document explains how to configure, customize, and run the Oracle GoldenGate

More information

Using Data Replication with Merge Apply and Audit Apply in a Single Configuration

Using Data Replication with Merge Apply and Audit Apply in a Single Configuration Using Data Replication with Merge Apply and Audit Apply in a Single Configuration 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Lab 2: Installation of Oracle XE & SOA11g

Lab 2: Installation of Oracle XE & SOA11g Lab 2: Installation of Oracle XE & SOA11g (30 minutes) Objectives At the end of this exercise, you will be able to: Install & Setup Oracle XE Database Install & Setup Oracle SOA11g Install Oracle Service

More information

Entry Level Media Manager Installation and User s Guide

Entry Level Media Manager Installation and User s Guide Entry Level Media Manager Installation and User s Guide Abstract This guide describes how to install and use the Entry Level Media Manager (ELMM) software. This guide is written for anyone who installs

More information

dba/m Database Manager V7.1 Installation and Operations Manual

dba/m Database Manager V7.1 Installation and Operations Manual dba/m Database Manager V7.1 Installation and Operations Manual Release 7.1 May 2005 dba/m Database Manager V7.1 Installation and Operations Manual 540155-001 Copyright Information Copyright 1996 2005 Genus

More information

Install and Configure Oracle GoldenGate 12.3 Microservices Architecture

Install and Configure Oracle GoldenGate 12.3 Microservices Architecture Install and Configure Oracle GoldenGate 12.3 Microservices Architecture The objective of this document is to demonstrate how to install and configure the new Oracle 12.3 GoldenGate Microservices Architecture.

More information

Using Oracle GoldenGate Monitor 12c (12.2.1)

Using Oracle GoldenGate Monitor 12c (12.2.1) [1]Oracle GoldenGate Using Oracle GoldenGate Monitor 12c (12.2.1) E60967-01 June 2015 This document contains background information and procedures for using standalone Oracle GoldenGate Monitor. Oracle

More information

Replication to SAP HANA Database with Oracle GoldenGate 12c

Replication to SAP HANA Database with Oracle GoldenGate 12c Replica on to SAP HANA Database with Oracle GoldenGate 12c Replication to SAP HANA Database with Oracle GoldenGate 12c Partner with Bristlecone to op ize your supply chain investment and implement quick

More information

The Unix Shell & Shell Scripts

The Unix Shell & Shell Scripts The Unix Shell & Shell Scripts You should do steps 1 to 7 before going to the lab. Use the Linux system you installed in the previous lab. In the lab do step 8, the TA may give you additional exercises

More information

ProductCenter Database Merge Utility Release Notes

ProductCenter Database Merge Utility Release Notes ProductCenter Database Merge Utility Release Notes Release 8.4.0 January, 2006 NorthRidge Software, LLC www.nridge.com (603) 434-2525 CONTENTS Introduction... 3 Database Roles... 3 How it Works... 4 Importance

More information

Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 2 Patch Set 1 ( ) E April 2012

Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 2 Patch Set 1 ( ) E April 2012 Oracle GoldenGate DB2 LUW Installation and Setup Guide 11g Release 2 Patch Set 1 (11.2.1.0.1) E29798-01 April 2012 Oracle GoldenGate DB2 LUWInstallation and Setup Guide 11g Release 2 (11.2.1.0.0) E29798-01

More information

Oracle GoldenGate Performance Best Practices O R A C L E W H I T E P A P E R M A Y

Oracle GoldenGate Performance Best Practices O R A C L E W H I T E P A P E R M A Y Oracle GoldenGate Performance Best Practices O R A C L E W H I T E P A P E R M A Y 2 0 1 7 Table of Contents Table of Contents 2 Introduction 4 Oracle Software 5 Database Configuration 5 Configuring the

More information

Installing the Product Software

Installing the Product Software CHAPTER 1 The Cisco Configuration Engine is a network management software that acts as a configuration service for automating the deployment, management, and upgrading of network devices and services.

More information

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

More information

HP Operations Agent for NonStop

HP Operations Agent for NonStop HP Operations Agent for NonStop Installation Guide Part number: 540072-011 Eleventh edition: 03/2014 Legal notices Hewlett-Packard makes no warranty of any kind with regard to this manual, including, but

More information

Installing and Configuring Oracle GoldenGate for MySQL 12c (12.1.2)

Installing and Configuring Oracle GoldenGate for MySQL 12c (12.1.2) [1]Oracle GoldenGate Installing and Configuring Oracle GoldenGate for MySQL 12c (12.1.2) E29286-04 May 2015 This document contains installation and initial setup instructions for Oracle GoldenGate for

More information

1z Oracle GoldenGate 11g Certified Implementation Exam Essentials

1z Oracle GoldenGate 11g Certified Implementation Exam Essentials 1z0-481 - Oracle GoldenGate 11g Certified Implementation Exam Essentials 1. Replicat is responsible for which three options? A. Reading data out of the GoldenGate trails. B. Performing data flow filtering.

More information

MARS Installation Guide Version 2.40

MARS Installation Guide Version 2.40 MARS Installation Guide Version 2.40 MARS Installation Guide Document Version Edition Software Version Published First 2.40 August 2017 MARS Installation Guide All rights reserved. No parts of this work

More information

Oracle GoldenGate. Frank Bommarito. RMOUG Training Days February 11-13, 2013

Oracle GoldenGate. Frank Bommarito. RMOUG Training Days February 11-13, 2013 Oracle GoldenGate Frank Bommarito RMOUG Training Days February 11-13, 2013 About DBAK Oracle Database, Technology and E-Business Suite applications Co-founded in 2005 Colorado owned and operated Average

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Oracle GoldenGate Release Notes for Windows and UNIX 12c (12.2.0.1) E64454-05 July 2016 This document describes the new features, major changes, and the known issues for the 12c

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Troubleshooting. Troubleshooting the CAM Installation CHAPTER

Troubleshooting. Troubleshooting the CAM Installation CHAPTER CHAPTER 9 Troubleshooting This chapter presents some scripts and procedures that might prove useful in troubleshooting and maintaining your Cisco Access Manager (CAM) software. The following topics are

More information

Oracle GoldenGate Teradata Installation and Setup Guide 11g Release 1 Patch Set 1 ( ) E September 2011

Oracle GoldenGate Teradata Installation and Setup Guide 11g Release 1 Patch Set 1 ( ) E September 2011 Oracle GoldenGate Teradata Installation and Setup Guide 11g Release 1 Patch Set 1 (11.1.1.1) E21510-01 September 2011 11g Release 1 Patch Set 1 (11.1.1.1) E21510-01 Copyright 1995, 2011 Oracle and/or its

More information

Some Useful Options. Code Sample: MySQLMonitor/Demos/Create-DB.bat

Some Useful Options. Code Sample: MySQLMonitor/Demos/Create-DB.bat The command interpreter - mysql allows for interactive execution of SQL commands and for many routine and administrative tasks. At the launch of mysql, numerous options can be specified to manage formatting,

More information

IBM. Documentation. IBM Sterling Connect:Direct Process Language. Version 5.3

IBM. Documentation. IBM Sterling Connect:Direct Process Language. Version 5.3 IBM Sterling Connect:Direct Process Language IBM Documentation Version 5.3 IBM Sterling Connect:Direct Process Language IBM Documentation Version 5.3 This edition applies to Version 5 Release 3 of IBM

More information

Oracle GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG)

Oracle GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG) An Oracle White Paper September 2012 Oracle GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG) EXECUTIVE OVERVIEW... 4 INTRODUCTION... 4 PREREQUISITES

More information

Mastering Linux. Paul S. Wang. CRC Press. Taylor & Francis Group. Taylor & Francis Croup an informa business. A CHAPMAN St HALL BOOK

Mastering Linux. Paul S. Wang. CRC Press. Taylor & Francis Group. Taylor & Francis Croup an informa business. A CHAPMAN St HALL BOOK Mastering Linux Paul S. Wang CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an Imprint of the Taylor & Francis Croup an informa business A CHAPMAN St HALL BOOK Contents Preface

More information

Database manageability solutions for the HP NonStop

Database manageability solutions for the HP NonStop Database manageability solutions for the HP NonStop 1 XYGATE Security Solutions Leading in mission-critical security solutions for the HP NonStop server. 2 XYGATE Security Solutions Leading in mission-critical

More information

User and System Administration

User and System Administration CHAPTER 2 This chapter provides information about performing user and system administration tasks and generating diagnostic information for obtaining technical assistance. The top-level Admin window displays

More information

Oracle GoldenGate MySQL Installation and Setup Guide 11g Release 1 (11.1.1) E October 2010

Oracle GoldenGate MySQL Installation and Setup Guide 11g Release 1 (11.1.1) E October 2010 Oracle GoldenGate MySQL Installation and Setup Guide 11g Release 1 (11.1.1) E17798-01 October 2010 11g Release 1 (11.1.1) E17798-01 Copyright 1995, 2010 Oracle and/or its affiliates. All rights reserved.

More information

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines Introduction to UNIX Logging in Basic system architecture Getting help Intro to shell (tcsh) Basic UNIX File Maintenance Intro to emacs I/O Redirection Shell scripts Logging in most systems have graphical

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g Security Essentials. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 11g Security Essentials. Version: Demo Vendor: Oracle Exam Code: 1Z0-528 Exam Name: Oracle Database 11g Security Essentials Version: Demo QUESTION 1 Which of the following tasks is the first task to perform when implementing Oracle Database

More information

Oracle FLEXCUBE Direct Banking

Oracle FLEXCUBE Direct Banking Oracle FLEXCUBE Direct Banking Upgrade Installer User Release 12.0.2.0.0 Part No. E50108-01 September 2013 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway Goregaon (East)

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Oracle GoldenGate System Monitoring Plug-in Installation Guide Release 13c (13.1.1.0.0) E68921-01 February 2016 This document provides a brief description of the Enterprise Manager

More information

dba/m Database Manager V7.1 User s Guide

dba/m Database Manager V7.1 User s Guide dba/m Database Manager V7.1 User s Guide Release 7.1. May, 2005 Copyright Information Copyright 1996-2005 by Genus Software, Incorporated. All rights reserved. Trademark Acknowledgments NonStop dba/m Database

More information

GOLDENGATE A LIVE INTRODUCTION PATRICK HURLEY

GOLDENGATE A LIVE INTRODUCTION PATRICK HURLEY GOLDENGATE A LIVE INTRODUCTION PATRICK HURLEY 1 CCENTURE ENKITEC GROUP APABILITIES OVERVIEW Elite Expertise Global systems integrator focused on the Oracle platform Consultants average 15+ years of Oracle

More information

Deploy Oracle GoldenGate Veridata Version 3.0 for comparison between Oracle RDBMS databases replicated using OGG 11gR2

Deploy Oracle GoldenGate Veridata Version 3.0 for comparison between Oracle RDBMS databases replicated using OGG 11gR2 Deploy Oracle GoldenGate Veridata Version 3.0 for comparison between Oracle RDBMS databases replicated using OGG 11gR2 In the article you will have a look at the steps to install, configure and deploy

More information

Author A.Kishore/Sachin WinSCP

Author A.Kishore/Sachin   WinSCP WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University Unix/Linux Basics 1 Some basics to remember Everything is case sensitive Eg., you can have two different files of the same name but different case in the same folder Console-driven (same as terminal )

More information

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one]

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one] Data and Computer Security (CMPD414) Lab II Topics: secure login, moving into HOME-directory, navigation on Unix, basic commands for vi, Message Digest This lab exercise is to be submitted at the end of

More information

IBM AIX Operating System Courses

IBM AIX Operating System Courses IBM AIX Operating System Courses (Platforms: POWER4+ based) AIX Basics Fundamentals (3 days) AIX Basics Shell Scripting (Korn / Bash ) and awk Programming (3 days) Advanced IBM AIX Systems Programming

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

Session 1: Accessing MUGrid and Command Line Basics

Session 1: Accessing MUGrid and Command Line Basics Session 1: Accessing MUGrid and Command Line Basics Craig A. Struble, Ph.D. July 14, 2010 1 Introduction The Marquette University Grid (MUGrid) is a collection of dedicated and opportunistic resources

More information

Unix Introduction to UNIX

Unix Introduction to UNIX Unix Introduction to UNIX Get Started Introduction The UNIX operating system Set of programs that act as a link between the computer and the user. Developed in 1969 by a group of AT&T employees Various

More information

SAFENET/400 REFERENCE GUIDE Version MP Associates of Westchester, Inc.

SAFENET/400 REFERENCE GUIDE Version MP Associates of Westchester, Inc. SAFENET/400 REFERENCE GUIDE Version 8.0 2007 MP Associates of Westchester, Inc. How to contact us Direct all inquiries to: Kisco Information Systems 89 Church Street Saranac Lake, New York 12983 Phone:

More information

Atalla Boxcar Reference Guide

Atalla Boxcar Reference Guide Atalla Boxcar Reference Guide Abstract This document describes Boxcar, its interface to the Atalla Network Security Processor, and the parameters used to start, initialize, and configure the Boxcar process.

More information

User Guide Version 2.0

User Guide Version 2.0 User Guide Version 2.0 Page 2 of 8 Summary Contents 1 INTRODUCTION... 3 2 SECURESHELL (SSH)... 4 2.1 ENABLING SSH... 4 2.2 DISABLING SSH... 4 2.2.1 Change Password... 4 2.2.2 Secure Shell Connection Information...

More information

ADVANCED LINUX SYSTEM ADMINISTRATION

ADVANCED LINUX SYSTEM ADMINISTRATION Lab Assignment 1 Corresponding to Topic 2, The Command Line L1 Main goals To get used to the command line. To gain basic skills with the system shell. To understand some of the basic tools of system administration.

More information

Oracle GoldenGate 11g Release 2 ( ) Release Notes E

Oracle GoldenGate 11g Release 2 ( ) Release Notes E Oracle GoldenGate 11g Release 2 (11.2.1.0.1) Release Notes E35197-01 Copyright 2012 Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license

More information