Golden Gate a Table of Siebel Oracle replication

Hi all
GG version 11.1.1.1
the Oracle source: 9.2.0.6
Oracle target: 10.2.0.4

We intend to implement Oracle Golden Gate for replication in real-time for Siebel database (source).
so, I have a few questions before implementing it.
(1) allow to say my name of the table is S_ASSET and have 290 columns and require only 100 columns in target database, so it is possible to replicate?
(2) for the first charge, I creates a target with 100 columns table, and then will do the full replication of the table (100 columns) via INSERT add link DB... in this case
Let say my source table is to have 100 records, so I reproduced all the 100 records from the source to the target link db as initial charge... so now I'll start my extracted processs... .so how GG knows he should choose among 101 record...? or we need to talk about any parameter explicitly... ?

For the initial charge, we expect export/import or insert Add... so after the initial load, how gg knows next record to pick up... ???
(3) if I want to play my source to destination data replicaition every 2 hours once... then how to talk about this lag...?

Can some one please help me...
Thank you very much
KVM

Basically. The four steps in various locations include:

1. prepare the environment
2 configure the modified capture (excerpt), which can be started if simultaneous DML will take place during the initial load; otherwise you can start after load
3. perform the loading initial, so while takes place, your snippet is the capture of changes, those who will be expected to apply
4 set up the discount of the change (replicate), which includes the start

If you have changes during the initial loading window / calendar, consider using the HANDLECOLLISIONS parameter.

Tags: Business Intelligence

Similar Questions

  • Oracle Golden Gate

    Hello

    I maintain a database for a very small app using oracle. But now I want to maintain a different database that is the exact replicated data from my original database and this replication can't happen in real time (two databases oracle). I had a few questions in this regard,

    1 - golden gate/oracle oracle workflow will be used and why one over the other.
    2 - is the minimum bandwidth required to ensure this replication
    3 - If the Golden Gate is the answer, how should account required to my situation I go about setting up golden gate?

    I do not understand oracle, but I'm not an expert. However all entries in this respect even if it should be at the level of experts is truly appreciated.

    Concerning

    AJ

    Hello

    1 - golden gate/oracle oracle workflow will be used and why one over the other.

    Yes, both of which can serve your purpose. River is the part of Oracle database itself and it also serves other than replication. Golden gate was not a product Oracle that it was recently acquired by Oracle and it works on heterogeneous platforms, so both can serve you, but both have a lot of different things and have different purposes as well.

    2 - is the minimum bandwidth required to ensure this replication

    Depends on the amount of data you are replicating. Since your application is quite small, so I think that the normal Ethernet network should be good for you.

    3 - If the Golden Gate is the answer, how should account required to my situation I go about setting up golden gate?

    It's a very long history and can be summed up in this forum. You should take a look at the documentation to this effect.

    http://www.Oracle.com/technetwork/middleware/GoldenGate/documentation/index.html

    Salman

  • Topology of Golden Gate

    Hello

    I need your help to understand the topology to use for my new setup of the Golden Gate. I need to have active replication on my 11.2.0.3 bases (2) in Linux environment but topology seems to much complex. Please help answer following questions. I have installed oracle golden gate and management available latest pack

    1. I understand that I must install Golden Gate on both servers of databases.

    2 I need to configure replication using GUI, what I have to install Director of the Golden Gate Bridge to set up the replication or there is a graphical interface with normal installation of Golden Gate, which I would install my two nodes?

    3 golden Gate Director should it merge first middle ware to install?

    4. is this average fusion dishes must also have an oracle database must be installed?

    5. can I have this door Director of gold installed on one of the server of databases or would I need on a separate server.

    6. on the Golden Gate monitor server, can I install this monitor server on the same server as the Director of Golden Gate using the same database as the Director of the Golden Gate?

    Thank you

    1. I understand that I must install Golden Gate on both servers of databases.

    -Yes, it is correct, however, it is out of available treatment. (It does not change the authorisation scheme, but it can be used to make it easier to install / implement).  Thus, you can use a connection string in the connection (such as USER name, or ASMUSER) parameters and it will connect through SQL * Net. This can be used to apply data remotely.  In the case of the snippet, you can use the mode of ALO in out area treatment, or you could use a Capture integrated downstream.

    2 I need to configure replication using GUI, what I have to install Director of the Golden Gate Bridge to set up the replication or there is a graphical interface with normal installation of Golden Gate, which I would install my two nodes?

    -This is part of the directory, Yes, that is part of the Oracle GoldenGate Management Pack.

    3 golden Gate Director should it merge first middle ware to install?

    -Now just webcenter and a data base for its small repository.

    4. is this average fusion dishes must also have an oracle database must be installed?

    -It can be Oracle, MySQL or even SQL Server.

    5. can I have this door Director of gold installed on one of the server of databases or would I need on a separate server.

    -It can be the source or target, or separated. There is no requirement that is difficult for the location of the repository.

    6. on the Golden Gate monitor server, can I install this monitor server on the same server as the Director of Golden Gate using the same database as the Director of the Golden Gate?

    -Yes, and he can use the same server database repository.

    Nick

  • Query replication Golden Gate

    Hello

    Is it possible to transform a line of database source into several lines in the database target using Golden Gate?

    Thank you
    Deepak

    Another way is to use SQLEXEC:

    Suppose we have:
    The source DB-

    create table test.wide (id number primary key, COL1 VARCHAR2(25), COL2 VARCHAR2(25), COL3 VARCHAR2(25));
    

    target db.

    create table test.thin (id number primary key, col_name VARCHAR2(10), col_value VARCHAR2(25));
    

    then in the params to replicat-

    --Replicat group --
    REPLICAT REP2
    --source and target definitions
    --ASSUMETARGETDEFS
    SOURCEDEFS /u01/app/oracle/product/11.1.1.1.2ogg411g/dirdef/sourcedef
    --target database login --
    USERID ogg, PASSWORD ogg
    --file for dicarded transaction --
    DISCARDFILE /u01/app/oracle/product/11.1.1.1.2ogg411g/discard/rep1_discard.txt, APPEND, MEGABYTES 10
    --ddl support
    DDL
    --Specify table mapping ---
    MAP test.t1, TARGET test.t11g, COLMAP (USEDEFAULTS, VCH=@STRNUM(NM));
    MAP test.CITIES, TARGET test.CITIES;
    MAP test.COUNTRIES, TARGET test.COUNTRIES;
    MAP test.LOBEXP, TARGET test.LOBEXP;
    MAP test.wide, TARGET test.thin, COLMAP (USEDEFAULTS, COL_NAME="COL1", COL_VALUE=COL1), &
    SQLEXEC (ID COL2PROC, QUERY "insert into test.thin values (:id_params+1,'COL2',:value_param)", PARAMS (id_params = id, value_param = COL2)), &
    SQLEXEC (ID COL3PROC, QUERY "insert into test.thin values (:id_params+2,'COL3',:value_param)", PARAMS (id_params = id, value_param = COL3)), &
    SQLEXEC (ID COL_DELE, ON DELETE, QUERY "delete from test.thin where id in (:id_params+1,:id_params+2)", PARAMS (id_params = id)), &
    SQLEXEC (ID COL2UPDA, ON UPDATE, QUERY "update test.thin set col_value=:value_params where 1=:is_updated and id=:id_params+1", PARAMS (is_updated = @IF(@COLTEST(COL2,MISSING,
    INVALID),0,1), value_params = COL2, id_params = id)), &
    SQLEXEC (ID COL3UPDA, ON UPDATE, QUERY "update test.thin set col_value=:value_params where 1=:is_updated and id=:id_params+2", PARAMS (is_updated = @IF(@COLTEST(COL3,MISSING,
    INVALID),0,1), value_params = COL3, id_params = id));
    --MAP test.account, TARGET test.thin, COLMAP(USEDEFAULTS, COL_NAME='COL1', COL_VALUE=COL1);
    DDLERROR 24344 DISCARD;
    

    A params extractor would be-

    --extract group--
    EXTRACT ext1
    --connection to database--
    USERID ogg, PASSWORD xxx
    EXTTRAIL /u01/app/oracle/product/11.1.1.12ogg/dirdat/ss
    SEQUENCE test.*
    --DDL support
    DDL INCLUDE MAPPED OBJNAME test.*
    --DML
    TABLE test.*;
    

    Works very well - just tested.

    Published by: Artem Khisamiev on 15.10.2012 04:09
    Add delete and UPDATE DML improvements to replicat params.

  • Problem in the replication of Golden Gate

    Hello

    When I start services is however getting error below...

    2012-03-28 11:54:35 GGS WARNING 109 Oracle GoldenGate for Oracle delivery, rpripor.prm: no unique key is defined for the table GR_DATAREPAIR_LASTSYNC_DETAIL. All viable columns will be used to represent the key, but cannot guarantee the uniqueness. KEYCOLS can be used to set the key.
    ' 2012-03-28 11:54:36 218 Oracle GoldenGate for Oracle delivery WARNING GGS, rpripor.prm: aborted transactions grouped on ' GES1_OWNER. GR_DATAREPAIR_LASTSYNC_DETAIL', database error 25128 (ORA-25128: no insert/update / delete on the table with the constraint (GES1_OWNER.) SYS_C0011163) disabled and validated).
    2012-03-28 11:54:36 218 Oracle GoldenGate for Oracle delivery WARNING GGS, rpripor.prm: repositioning of EBR 755918 in seqno 5.
    2012-03-28 11:54:52 218 WARNING GGS Oracle GoldenGate for Oracle delivery, rpripor.prm: mapping 25128 error SQL CAAA. GR_DATAREPAIR_LASTSYNC_DETAIL to GES1_OWNER. GR_DATAREPAIR_LASTSYNC_DETAIL error ORA-25128 OIC: no insert/update / delete on the table with the constraint (GES1_OWNER. SYS_C0011163) disabled and validated (status = 25128), SQL < INSERT INTO 'GES1_OWNER '. "' GR_DATAREPAIR_LASTSYNC_DETAIL ' ('REPAIRKEY', 'LASTSYNCID', 'TABLENAME',"PARAMNAMES","PARAMVALUES", 'WHERECLAUSE', 'CREATED_DATE', 'ROWS_UPDATED_IN_SOURCE', 'ORDERSEQ',"APPNAME"," OF >. ")
    2012-03-28 11:54:52 218 WARNING GGS Oracle GoldenGate for Oracle delivery, rpripor.prm: repositioning of EBR 755918 in seqno 5.

    Salvation;

    "" For your question, I suggest farm your thread here that change the status of the thread to answered and move it to Forum Home "management system and integration ' GoldenGate is Golden Gate dedicated forum site.

    Respect of
    HELIOS

  • Oracle Golden Gate fail to start extract and reproduce the process

    Hello

    I am trying to set up Golden Gate, but I'm running into the following errors during Setup. Any help is appreciated. Below is the content of the configuration.

    Thank you
    JT

    ggssci > edit params mgr
    PORT 7809
    Ggs_owner username, PASSWORD ggs_owner
    PURGEOLDEXTRACTS/u01/app/oracle/ggs/dirdat/ex, USECHECKPOINTS

    ggsci > edit params ext1
    -extract the Group-
    extract ext1
    -connection to the database.
    ggs_owner username, password ggs_owner
    -hostname and port for trail-
    rmthost 192.168.2.111, mgrport 7809
    -path and trail name.
    rmttrail/u01/app/oracle/ggs/dirdat/lt
    Support - DDL
    DDL INCLUDE ALL
    DDL are mapped objname SCOTT.*;
    -DML
    table SCOTT.*;
    table SCOTT. EMP;
    table SCOTT. DEPT;
    table SCOTT. SALGRADE;
    table SCOTT. BONUS;


    GGSCI (ggsrc.localdomain) 12 > view report ext1


    ***********************************************************************
    Oracle GoldenGate Capture for Oracle
    Version 11.1.1.1 OGGCORE_11.1.1_PLATFORMS_110421.2040
    Linux, x 86, 32-bit (optimized), Oracle 11 g on April 30, 2011 22:35:14

    Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.


    From 2011-08-18 14:17:50
    ***********************************************************************

    Version of the operating system:
    Linux
    Version #1 SMP Thu Mar 15 19:57:35 EDT 2007, exit 2.6.18 - 8.el5
    Node: ggsrc.localdomain
    Machine: i686
    limit software
    Address space size: unlimited unlimited
    Heap size: unlimited unlimited
    File size: unlimited unlimited
    Time CPU: unlimited unlimited

    Process ID: 3408

    Description:

    ***********************************************************************
    * In the course of a run with the following parameters *.
    ***********************************************************************
    -extract the Group-

    Context of the source:
    SourceModule: [er.main]
    SourceID: [/ scratch/sganti/view_storage/sganti_core_lin32/oggc]
    ore/OpenSys/src/app/er/rep.c]
    SourceFunction: [get_infile_params]
    SourceLine: [12245]
    ThreadBacktrace: [7] elements
    : [/ u01/app/oracle/ggs/extract (CMessageContext::AddThr]
    [eadContext () + 0 x 26) [0 x 8289366]]
    : [/ u01/app/oracle/ggs/extract (CMessageFactory::Create]
    (Message (CSourceContext *, unsigned int,...) + 0 x 817) [0x827fae7]]
    : [/ u01/app/oracle/ggs/extract (_MSG_ERR_STARTUP_PARAME]
    RROR_ERRORTEXT (CSourceContext *, const char *, CMessageFactory::MessageDisposition)
    [() + 0 x 81) [0x822fc81]]
    : [u01/app/oracle/ggs/extract [0x814e4c4]]
    : [u01/app/oracle/ggs/extract(main+0x1dc) [0x81529cc]
    ]
    : [lib/libc.so.6(__libc_start_main+0xdc) [0xa0adec]]
    : [/ u01/app/oracle/ggs/extract(__gxx_personality_v0+0x)]
    1C5) [0 x 8120491]]

    2011-08-18 14:17:50 parameter ERROR-OGG-00303 unrecognized (-excerpt).

    2011-08-18 14:17:50 ERROR OGG-01668 PROCESS ABENDING.


    GGSCI (ggsrc.localdomain) 15 > news

    Lag time since Chkpt program status group

    MANAGER RUNNING
    EXTRACT STOPPED EXT1 00:00:00 00:07:32



    GGSCI (ggtrgt.localdomain) 2 > Info

    Lag time since Chkpt program status group

    MANAGER RUNNING
    REPLICAT REP1 00:00:00 BY-LAW 00:10:23


    GGSCI (ggtrgt.localdomain) 3 > start replicat rep1

    Sending START request manager of...
    REPLICAT REP1 from


    GGSCI (ggtrgt.localdomain) 4 > news

    Lag time since Chkpt program status group

    MANAGER RUNNING
    REPLICAT REP1 00:00:00 BY-LAW 00:15:22


    GGSCI (ggtrgt.localdomain) 5 > view report rep1


    ***********************************************************************
    Oracle GoldenGate for Oracle delivery
    Version 11.1.1.1 OGGCORE_11.1.1_PLATFORMS_110421.2040
    Linux, x 86, 32-bit (optimized), Oracle 11 g on April 30, 2011 22:40:44

    Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.


    From 2011-08-18 14:22:08
    ***********************************************************************

    Version of the operating system:
    Linux
    Version #1 SMP Thu Mar 15 19:57:35 EDT 2007, exit 2.6.18 - 8.el5
    Node: ggtrgt.localdomain
    Machine: i686
    limit software
    Address space size: unlimited unlimited
    Heap size: unlimited unlimited
    File size: unlimited unlimited
    Time CPU: unlimited unlimited

    Process ID: 4095

    Description:

    ***********************************************************************
    * In the course of a run with the following parameters *.
    ***********************************************************************
    -connection to database target-

    Context of the source:
    SourceModule: [ggdb.ora.db]
    SourceID: [/ scratch/sganti/view_storage/sganti_core_lin32/oggc]
    ore/OpenSys/src/gglib/ggdbora/dboci.c]
    SourceFunction: [odbc_param]
    SourceLine: [1220]
    ThreadBacktrace: [8] elements
    : [/ u01/app/oracle/ggs/replicat (CMessageContext::AddTh]
    [readContext () + 0 x 26) [0x820fa26]]
    : [/ u01/app/oracle/ggs/replicat (CMessageFactory::Creat]
    (eMessage (CSourceContext *, unsigned int,...) + 0 x 817) [0x82061a7]]
    : [/ u01/app/oracle/ggs/replicat (_MSG_ERR_STARTUP_PARAM]
    _UNRECOGNIZED (CSourceContext *, const char *, CMessageFactory::MessageDisposition)
    (+0x7E) [0x81a7b6e]]
    : [/ u01/app/oracle/ggs/replicat (odbc_param (char *, char))]
    [*) + 0xc25) [0 x 8182475]]
    : [u01/app/oracle/ggs/replicat [0x812ec26]]
    : [/ u01/app/oracle/ggs/replicat(main+0x1a1) [0x8135bb1]
    ]]
    : [lib/libc.so.6(__libc_start_main+0xdc) [0x71a1dec]]
    : [/ u01/app/oracle/ggs/replicat(__gxx_personality_v0+0)]
    x1b5) [0 x 8112991]]

    2011-08-18 14:22:08 parameter ERROR-OGG-00014 unrecognized:-target. PARAMETERS
    amplifier could be misspelled or not supported.

    2011-08-18 14:22:08 ERROR OGG-01668 PROCESS ABENDING.


    GGSCI (ggtrgt.localdomain) 6 >

    Commented lines are two hyphens, not one.

    Also, if you use scott.star, so why the list of other tables that would already be included by wildcards?

  • Golden gate Oracle compatibility

    Hello

    We are trying to decide on the use of the Golden Gate in our project, but I was not able to determine if our database and operating system is compatible and supported.

    We have IBM DB2 UDB v.8 with Z/OS 1.11

    I downloaded the Certification Matrix (http://www.oracle.com/technetwork/middleware/data-integration/goldengate1111-cert-matrix-349179.xls) and I have not seen any version of Z/OS, but I saw a few presentations that say that OGG can work in a Z/OS with DB2.

    ¿Anybody can help me to find information?
    Thanks in advance.

    Hello

    1.
    DB environment: IBM DB2 UDB v.8 with Z/OS 1.11

    Oracle GoldenGate is ceritifed for use with DB2 on z/OS 1.11 8.1. You can download below mentioned either the OGG edelivery.oracle.com software and can install and configure and use for replication of data to homogeneous or hetrogenous environments.

    a. Oracle GoldenGate V11.1.1.0.0 for DB2 8.1/9.1 64 bit on zOS 1.08/1.09/1.10/1.11
    Package/Zip name: V22309-01
    Construct the name: ggs_zOSV1R6_UDB81_32bit_v11_1_1_0_0_078

    OR

    b.Oracle GoldenGate V10.4.0.x for DB2 8.1/8.2 64 bit on zOS 1.06/1.07/1.08/1.09
    Package/Zip name: V18173-01
    Construct the name: ggs_zOSV1R6_UDB81_32bit_v10.4.0.19_002

    Both versions are certified for use with DB2 v8.1 on z/OS 1.11

    2.
    Installation guide for DB2 z/OS and OGG can be downloaded at the bottom of the link.
    http://download.Oracle.com/docs/CD/E18101_01/doc.1111e17796.pdf

    Other OGG documentation can be downloaded at the bottom of the link.
    http://download.Oracle.com/docs/CD/E18101_01/index.htm

    Thank you & best regards
    SK

  • Difference between Oracle transparent gateway and Golden Gate

    Hi guys

    Could you please delete the confusion, what is the difference between the transparent bridge and Golden gate? they are same? In which cases of which one to use?


    Thanks in advance

    user8896122 wrote:
    >
    Satish Kandi says:
    Transparent bridges are a mechanism of "interrogation" cross-RDBMS
    >

    If you mean if an application (designed to work with oracle only) can actually access SQL server or DB2 without any change. If I have a transparent gateway on top of DB2 or SQL Server?

    You took me. I should have used different words.

    Lol TG is a mechanism to query the other Oracle's RDBMS. GG is a mechanism for replication between any RDBMS.

  • Table of control point missing Golden gate

    Hello gurus,

    I'm trying to implement direct replication with Golden Gate, but I can't create the control point table.


    GGSCI (26) > ADD CHECKPOINTTABLE
    ERROR: Missing checkpoint table specification.

    GGSCI (q) 27 > ADD REPLICAT rep1, EXTTRAIL/t01/software/gg2/dirdat/rt
    ERROR: No control points table specified to add REPLICAT.


    GGSCI (28) > ADD CHECKPOINTTABLE
    ERROR: Missing checkpoint table specification.

    GGSCI (qcdvap1031.gnet.qc.bell.ca) 29 > edit. / GLOBALS
    ERROR: Invalid command.

    GGSCI (30) > edit params. / GLOBALS
    GGSCHEMA GGS_OWNER
    CHECKPOINTTABLE GGS_OWNER. CHKPTAB


    GGSCI (q) 31 > add CHECKPOINTTABLE GGS_OWNER. CHKPTAB

    Managed to create the table GGS_OWNER of control point. CHKPTAB.

    GGSCI (32) > ADD REPLICAT rep1, EXTTRAIL/t01/software/gg2/dirdat/rt
    ERROR: No control points table specified to add REPLICAT.

    Don't know what I'm missing here, can someone please help?

    Thank you very much

    Specify the control point table in the global file is every time that you restart your replica he get the overall point check table form file.
    But while adding you must always specify tablename.

    hope that make sense

  • Migration of Oracle Golden Gate

    Hi guys,.

    I do the migration of 9i and 10g using Oracle Golden Gate. I met some errors like

    GGS WARNING 218
    GGS WARNING 222

    I use HANDLECOLLISIONS to resolve this error, but in doing so, the updates are run as duplicates.
    In the source table, there is no unique key constraint and therefore the target.

    Is there a way I get a solution to this problem.

    I use HANDLECOLLISIONS to resolve this error, but in doing so, the updates are run as duplicates.

    More difficult to understand what that means, I do not see update errors, which would be general ora - 1403 any data available.

    In the source table, there is no unique key constraint and therefore the target.

    But more specifically, you get a unique constraint violation:

    ORA-00001: unique constraint (PERFSTAT. His STATS$ SQLTEXT_PK) have violated).

    Your information seems to conflict itself. You will not have a full understanding of the concepts then I suggest you dive a little deeper into the docs and please pay special attention to the use of atCSN/afterCSN. Additionally, make sure that you start the extract CDC FRONT to your exp [dp] xxx = flashback_scn.

    Good luck
    -joe

  • Installing Oracle Golden Gate

    Hello

    Where I ger the configuration for Oracle Golden Gate.

    I want to set up the Golden Gate for Oracle for Oracle, SQL for Oracle

    unidirectional and bi-directional

    Thank you

    You can go through several lessons Oracle Learning Library here:
    http://Apex.Oracle.com/pls/Apex/f?p=44785:2:1926170455343282:FORCE_QUERY:2, CIR, RIR:P2_TAGS:Goldengate

  • Replication sequence values of Golden Gate?

    Hi all

    I searched on the web and read the Golden Gate, but I found mixed answers.

    I try just to check, for some, it is possible to automatically reproduce the sequence values in a two-way configuration. The two databases will be identical and both will be GR 11, 2 with the latest version of GG.

    If it is not possible to increment automatically sequences in a bi-directional configuration, what are best practices for rest with them?

    One option is sequences of alternatives on each database, with the same values (for example) and an uneven values, but this requires the deployment of new sequences on two databases, something that we hoped would be supported by replication. (Yes the creation of the sequence can be supported, but the value is not incremented on the target database).

    Another way we thought on top of our heads is to have an insert trigger on (we only use sequences to generate surrogate keys) who will choose the database nextval target via a link db, but this seems a bit heavy.

    What is the best practice?

    GoldenGate forum is here:
    GoldenGate

  • Golden Gate lot compared to pump Exp - Imp data replication

    Hello
    I have a Production server running many jobs of DBMS for 4 to 5 hours after the closure of the opening hours.

    Procedure:

    Time activity

    The work of DBMS T1 run
    The work of DBMS T2 run
    T3 to generate reports
    Work T4 DBMS run
    The work of DBMS T5 run

    Purposes of the declaration, I would like to use a different server so that it does not stop at the time T3 and can move forward for execution.

    I have two solutions on the spot.

    (A) at time T3 launch replication batch Golden Gate. After the updated data (IE until T2) is replicated first stage T3

    (B) take an incremental backup after T2 and importation of report server. After the backup is made go ahead with T3.

    What solution will take less time? Replication of incremental backup or Golden Gate lot?

    Thank you for your contributions.

    Hiren Pandya s

    GoldenGate is not a tool "batch replication." This is a continuous real-time re-captured & apply the tool. If you try to use it for replication 'batch', you not only make life difficult for yourself, but you are also seriously limiting its potential.

    If you have two servers, a production server 'A' and a 'B' report server, then just turn on the replication of the GoldenGate all the time; for example, using your example (replication from Server A to Server B):

    = Activity time =
    T1' (was Q3) start GG (A-> B) to generate reports out of 'B '.
    T2' (was Q1) DBMS job run
    T3 "(a T2) DBMS jobs run"
    T4' (was Q3)-> wait 'backwardness' of A-B to be zero-> can generate reports. (Possibly disable GG while reports are running.)
    T5' (was Q4) work of DBMS (GG can continue to reproduce at any time...)
    T6' (a T5) DBMS job run

    Note that if GG will run without interruption of time T1 = ", then, at the time where you get to T4, you probably only need a few seconds or a few minutes before the report instance is caught up ("offset = 0 "). If you want to report off Server B without the results of the use of DBMS (T5 and T6'), then interrupt the replication until you have completed running reports. You can return to the replication at any time - no data will be lost, as GG always picks up back where he was arrested.

    (I hope I understood the problem correctly).

    See you soon,.
    m

  • Golden Gate 11 g replicate from MySQL to Oracle

    Golden Gate 11 g for MySQL can read mysql binlog. I have a question, can I use GG11g for MySQL to replicate from MySQL to Oracle?

    Thank and regard

    OK, here's the official word from Oracle on it.

    Oracle GoldenGate now supports MySQL 5.1.15 and later capture and oracle can be a target. Therefore, if you use MySQL 5.1.15 or later, you can indeed use Golden Gate to replicate from MySQL to Oracle when you use GoldenGate 11 g.

  • Golden Gate

    Hello

    I want using Golden Gate for level schema oracle to oracle replication replication (any object in the indexes, tables, triggers, procedures of plan...)

    I have a scheme called dds1, this scheme a lot of objects. Please guide me how to implement the initial load of this objects and then start the replication?

    Please guide me step-by-step:

    1. install the door gold on both sides.

    2 ......

    3......

    4.....

    Help, please.

    Hello

    Schema level replication means, all objects in the schema which is

    configured for replication OGG, will be replicated from the source to the target.

    including the procedures, functions, packages, etc. To do this, you must activate

    DDL replication. DML replication will not satisfy this.

    Once again for the DDL replication, you must use DDL ARE MAPPEES parameter in

    extract and Replicat parameter files. This setting will capture and

    replicate all the DDL operations located on the side of the Source for the

    particular mapped schema.

    For more details, please see the links below.,.

    1 installation and Configuration of DML-

    http://www.Oracle-SCN.com/installation-and-DML-replication-configuration-of-Oracle-GoldenGate-11g/

    2. the DDL Configuration-

    http://www.Oracle-SCN.com/DDL-replication-configuration-of-Oracle-GoldenGate-11g/

    3. What is the initial load-

    http://www.Oracle-SCN.com/GoldenGate-initial-load-techniques/

    There are several types of Oracle GoldenGate initial charge and you can also use

    EXPDP / IMPDP for synchronization at the start of the source and the target. But as objects

    procedures, packages, functions, etc. must be initially created in the

    side of the target.

    Kind regards

    Veera

    We sat, September 11, 2015 at 9:32, community-admin

Maybe you are looking for