Can we use Oracle Streams for replication

I use streams of oracle for replication of data between one and several databases.
Its works for me but sometimes ADR stops, spreading from the source to the destination database. But when we reboot our databases it starts to work. In 10g, I've never faced the problem.
I am facing this problem in 11g.
Can someone help me please its urgent...?

Yes

Tags: Database

Similar Questions

  • Using Oracle Streams schema replication

    Hi DBAs,


    I use 11g and that you must configure replication of schema/table between 2 databases. I never used the front stream.

    I spent reviewing the Oracle documentation to understand the function of current, but implementation of the replication stream is confusing. Please help with step by step instructions or any article of tutorial or demo OTN to configure the data flow.



    Thank you
    -Samar-

    Hi Samar,

    [Metalink Note 753158.1: how to configure streams in real-time environment downstream | https://metalink2.oracle.com/metalink/plsql/f?p=130:14:8789336070734834078:p14_database_id, p14_docid, p14_show_header, p14_show_help, p14_black_frame, p14_font:NOT, 753158.1, 1, 1, 1, helvetica]

    The note is quite elaborative to set up a basic configuration of water courses and just your requirement.

    On both servers (Source and downstream)
    =============================

    Conn virtue sysdba

    Streams_tbs CREATE TABLESPACE DATAFILE 'streams_tbs_01.dbf' SIZE 100 M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;

    Stradmin CREATE USER IDENTIFIED BY strmadmin
    TABLESPACE streams_tbs default
    QUOTA UNLIMITED ON streams_tbs;

    GRANT DBA TO stradmin; ---> Due to a bug, you must grant the DBA privilege STRADMIN

    BEGIN
    DBMS_STREAMS_AUTH. () GRANT_ADMIN_PRIVILEGE
    dealer-online "stradmin,"
    grant_privileges-online true);
    END;
    /

    __Checking the administrator is created

    SELECT * FROM dba_streams_administrator;

    Direct the logmnr to use the streams_tbs site downstream tablespace:
    =============================================

    exec DBMS_LOGMNR_D.SET_TABLESPACE ("streams_tbs");

    Create the connection between the source and downstream:
    =========================================

    1. check if it is a perfect connectivity between these two databases

    2. as it is a derivative of Setup before the transport of newspapers service requires same password for SYS on both sides.

    3. set GLOBAL_NAMES = TRUE on both sides

    4 create DBlink from both sides, so that the stradmin can communicate with each other.

    create database STREAMS1 link to connect to strmadmin identified by strmadmin using 'STREAMS1 ';

    Select * from global_name@STREAMS1;

    Definition of the parameters of archiving downstream:
    ============================

    Configure databases for the source database can transfer the logs to check-in on the destination site. (See you documentation on configuring standby basis)

    Creating Eve-newspaper of recovery to receive again the Source data (only if you want to have mining in real time):
    ================================================================

    -From the source:

    (1) determines the size of the log file used on the source database:

    Select THREAD #, GROUP #, BYTES/1024/1024 in V$ LOG;

    -The station downstream:

    (2) add the newspapers of the day before:

    -For example, the source database has three online redo log file groups and each size of 50 MB log file. In this case, use the following instructions to create the appropriate standby log file groups.

    Establishment of environment of rivers downstream on the site
    ================================

    BEGIN
    DBMS_STREAMS_ADM. () SET_UP_QUEUE
    queue_table => ' stradmin. DOWNSTREAM_Q_TABLE',.
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    queue_user => "STRADMIN");
    END;
    /

    Select name, queue_table from user_queues;

    BEGIN
    DBMS_APPLY_ADM. () CREATE_APPLY
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    apply_name-online "DOWNSTR_APPLY."
    apply_captured-online TRUE
    );
    END;
    /

    Start
    DBMS_APPLY_ADM. SET_PARAMETER (apply_name-online 'DOWNSTR_APPLY', parameter =>
    Value of 'DISABLE_ON_ERROR', => ' n ");"
    end;
    / - This will require installing flow do not stop even if there is an error

    BEGIN
    DBMS_CAPTURE_ADM. () CREATE_CAPTURE
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    capture_name-online "DOWNSTR_CAP."
    rule_set_name => NULL,
    start_scn => NULL,
    source_database-online "STREAMS1."
    use_database_link to-online true.
    first_scn => NULL,
    logfile_assignment-online 'implied');
    END;
    /

    BEGIN
    DBMS_CAPTURE_ADM. SET_PARAMETER)
    capture_name-online "DOWNSTR_CAP."
    parameter-online "downstream_real_time_mine."
    value => 'y');
    END;
    / - Instructing capture processes of mining in real-time

    = Adding schemas positive rules for the capture process.

    BEGIN
    DBMS_STREAMS_ADM. () ADD_SCHEMA_RULES
    schema_name-online "SANTU1."
    streams_type-online "capture."
    streams_name-online "DOWNSTR_CAP."
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    include_dml to-online true.
    include_ddl to-online true.
    include_tagged_lcr => FALSE,
    source_database-online "STREAMS1."
    inclusion_rule => TRUE);
    END;
    /

    BEGIN
    DBMS_STREAMS_ADM. () ADD_SCHEMA_RULES
    schema_name-online "SANTU2."
    streams_type-online "capture."
    streams_name-online "DOWNSTR_CAP."
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    include_dml to-online true.
    include_ddl to-online true.
    include_tagged_lcr => FALSE,
    source_database-online "STREAMS1."
    inclusion_rule => TRUE);
    END;
    /
    = By excluding one of the table using the negative rule =.
    BEGIN
    DBMS_STREAMS_ADM. ADD_TABLE_RULES
    (
    table-name => ' SANTU1. XYZ'.
    streams_type-online "capture."
    streams_name-online "downstr_cap."
    queue_name => ' stradmin. DOWNSTREAM_Q',.
    include_dml to-online true.
    include_ddl to-online true.
    source_database-online "STREAMS1."
    inclusion_rule-online fake - specifies the negative rule set
    );
    END;
    /
    ==================================================================

    Now its time to instantiate the schemas. You can use exp/imp legacy or datapump to instantiate the schemas. I use exp/imp

    File System/Manager exp = log = owner = (SANTU1, SANTU2) object_consistent = y
    File System/Manager IMP = log = fromuser = (SANTU1, SANTU2) touser = (SANTU1, SANTU2) streams_instantiation = y

    If the instantiation is completed successfully, start applying and capture process

    exec DBMS_APPLY_ADM. START_APPLY (apply_name-online 'DOWNSTR_APPLY');
    exec DBMS_CAPTURE_ADM. START_CAPTURE (capture_name-online 'DOWNSTR_CAP');

    Check the State of the capture process / apply:

    Select capture_name, dba_capture State;
    Select capture_name, State of v$ streams_capture;

    Select apply_name, dba_apply State;
    Select apply_name, State of v$ streams_apply_server;

    Test the configuration. Also note that it is not necessary to maintain the database in archivelog mode downstream.

    Tried to explain that the Basic, in short things, but please pass through the documentation.

    Kind regards
    S.K.

  • Database objects can be replicated using Oracle Streams and which object cannot be replicated?

    Hi Experts,

    I need clarification on the sub questions,.


    Database objects can be replicated using Oracle Streams and which object cannot be replicated?

    How can we check that what schema and objects are used streams replication and which schema and objects is not used in the replication stream?

    Thanks in advance.

    Select *.
    of dba_streams_unsupported
    where owner | '.' || table_name (...)

    order by 1, 2, 3;

  • Using Oracle database for thesis software

    Hello, I want to use Oracle Database Enterprise Edition and Oracle Data Mining for my master's thesis, and maybe we can publish a book of science in the end. I already downloaded the database and work on it, but I need to know if it is OK to use the software free of charge during the preparation of my thesis. Is that what I should pay or should I inform Oracle about this? I don't know anything about using Oracle products for research projects. Any information you provide will be appreciated. Thanks, Hatice

    You must purchase a license for Oracle Personal Edition, which is the set of US $92 for a year. It includes the Advanced Analytics option, which is where your data mining.

  • Can I use my iPhone for the load

    Can I use my iPhone for the load?

    Yes

  • Can I use iMovie trailer for publishing a Web site? I've included thanks to iMovie and iTunes in the credits.

    Can I use iMovie trailer for publishing a Web site? I've included thanks to iMovie and iTunes in the credits.

    I think that you will need official permission from both Apple and the owners of the trailer of the film.   You can not just simply print a receipt, just like that.   However, you can see, your site can be entirely flattering to the other two parties, they see things.

  • can I use this connection for Adobe Document Cloud?

    Can I use this connection for Adobe Document Cloud? If so, how do I enter this login screen?

    Hello

    What login?

    If you want to access the clouds, consult the following URL https://cloud.acrobat.com

    and connect you with your saved credentials Adobe.

    Concerning

    Sukrit diallo

  • can I use personal edition for business (creative cloud)

    can I use personal edition for business (creative cloud)

    Yes.

  • How can I use a video for the preview looks like instead of the fixed image?

    How can I use a video for the preview looks like instead of the fixed image? I use android lollipop.

    Hi Ali,

    Video preview for looks is not currently supported on Android. Your feature request was noted by the team.

    In the meantime, there is a video on the device you want to use as an overview, I would recommend taking a perforated CAP and still image as loading preview.

    Best,

    Bronwyn

  • can I use licience even for my computer and a wacom tablet?

    can I use licience even for my computer and a wacom tablet?

    Nimet, if you talk about Adobe Creative Cloud, you can see point 1.1 from the link below:

    http://wwwimages.Adobe.com/content/dam/Adobe/en/legal/servicetou/Software_Terms-en_US-2015 0407_2200.pdf

  • I can't use my keyboard for a long time in CS4 - very strange

    I have 2 computers and when I try to use the keyboard for shortcuts on my second computer, some weird dialogue with Chinese characters appears shortly after I start using the keyboard and I can't use the keyboard for shortcuts after this point, never. I'm sure it's in CS4, because it doesn't happen at all in Windows.

    What the hell it is and how do I turn it off? :

    problem.jpg

    You have installed or activated an IME for an Asian language.

    Disable the IME and invites should disappear.

  • Where can I get Oracle Terminal for re-mapping a combination of keys Form6i Builder

    Where can I get Oracle Terminal?

    help Form6i
    -------------------------------------------------------------------------
    For re - map a combination of keys Form Builder:

    1. start Oracle Terminal.

    2 open the appropriate resource Form Builder file (Microsoft Windows, open FMRUSW. (RES).
    Note: Before changing a Form Builder resource file, you must create a backup copy.

    3. Select FunctionsEdit key.
    The key binding Editor appears and lists the combinations generator form per category.

    4. double-click on a category and change the desired 'Action' and 'binding '.
    For example, to change the mapping of keys for [Show Keys], double-click "windows-sqlforms," specify the key combination you want to display the key, and then click OK.

    5. choose Save to save your changes.

    6 FunctionsGenerate to choose to generate your changes and create a new resource file, which incorporates changes to the key combination.
    A warning appears, informing you that your resource file was generated successfully. Accept the warning.

    7. Select Save to save your changes in the resource file.

    8 run Form Builder to use your new shortcut.

    The Oracle Terminal?
    It is % ORACLE_HOME%\BIN\OT60. EXE and you can find it in the menu Oracle Forms & reports 6i.
    If you do not see OT installed then install it from the Oracle Forms Developer.

  • Can I use separate iCloud for accts Windows on a pc win10 with two accounts?

    CCan I use iCloud separate for Windows accounts on a pc win10 with two accounts?

    You can, but it will be a bit heavy on your part, juggling two accounts, because you will have to a connection, and then connect to another, etc.

  • can I use a monitor for my 27 imac stand

    I would like if posible to use a monitor for my 27 imac stand, I'm not sure it would work, but maybe there is a way to do this, you would appreciate any input

    Thank you

    John

    Yes, it can work according to what you need to do.

  • Can I use the drivers for model Satellite A100-012 to the model A100-599?

    Hello. I wanted to know that the drivers of the model a100 012 can be used to model a100 599?

    Configuration for both models is the same.

    Hello

    I compared these two units, and it seems that the A100-012 is a part of the PSAA9E series and the A100-599 belongs to the PSAARE series.
    So generally, these are two different notebooks and I m do not know if the drivers work.
    But who knows sometimes laptops are delivered with the same hardware and maybe you are a lucky man and some unique drivers will run

Maybe you are looking for

  • Satellite A200 - FN toolbar disappeared

    Hello. I want to ask you how to re-enable the toolbar for the Fn keys in Vista, superior in the monitor. Is the toolbar that appear when the mouse goes to the screen or press FN and you can activate the wireless and all that... It's like the camera t

  • Is it allowed to use property value nodes?

    To remove the problems of spaghetti, I need to delete rows. Previously, I used local variables, but the values written to local variables could not be found in time. So I started using nodes of property value instead. Are safe as substitutes to the l

  • Get random errors and missing fonts after July 2011 service pack installation.

    Original title: July 2011 service pack... it completely trashed my software... How can I fix... I can't do system restore yet because no words to do I get random errors and missing fonts in all directions... everything was going well until the packag

  • Ringtone for group

    Hello how can I do a different ringtone for a contact group

  • Cisco ASA 5520, 8.02, 4GE SSM, IPS?

    I have an ASA 5520 with 4GE SSM module. The ASDM, I see IPS basic signatures... anyway to upgrade these signatures, add to, etc.?