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;

Tags: Database

Similar Questions

  • Given to replace my current iphone with a 6s - a trip that I can disable the use of boxes and use a unique sim card data for emails

    Given to replace my iphone today with a 6s - a trip that I can disable the use of boxes and use a sim card only data for email & web.

    If you go to settings > Mobile and less ' use of mobile data for: "turn off all except Safari and Mail

  • My acrobat 8 is recorded for a computer that has been hacked and is fried, but I can't reg to this computer and now I cannot use it for 30 days on this computer

    My acrobat 8 is recorded for a computer that has been hacked and is fried, but I can't reg to this computer and now I cannot use it for 30 days on this computer

    Serial number and activation support (no-Cloud) https://forums.adobe.com/thread/2041990 to adjust the number of activations

  • 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.

  • Synchronize two schemas from database on a linux server using Oracle GoldenGate

    I followed this guide ( http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/goldengate/12c/OGG12c_Installation/index.html?cid=9167 & ssid = 0 ) and for two different databases running on the same instance of database schemas.


    What I have now is a Linux server with two Oracle database schemas.
    I have access through my Linux virtual machine. I want to do the synchronization possible between them.

    I use Oracle GoldenGate to make this possible. What should I do now? Goldengate is must be installed in the server too? I'm totally new to this situation. Can someone give me at least the major steps before going to the more comprehensive study?

    Well understood. This helped.

    Install Oracle GoldenGate Linux to synchronize two schemas from database on a single server

  • Oracle Streams and CLOB column

    Hello

    We use "Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64 bit. My question is "Does Oracle Streams capture, spreads (source capture method) and applies the CLOB column changes?"

    If so, is this default behavior? Can we say Brooks to exclude all of the CLOB column (capture-spreading-request) process?

    Thanks in advance!

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14229/strms_capture.htm#i1006263

  • Oracle Streams and impdp?

    Hi, I am not a DBA or anything close :)... in a project that I'm getting, there are 2 or more prod servers that are connected
    through flow for bi directional data replication. Now, we must develop a back/restore mechanism using scripts. The back of the scripts take the dump using expdp of a schema and the restore script use impdp to apply it. Is there any where I can apply using impdp to a database and the flow will apply to all other databases. I tried Googling, yahooing, everything, but to no avail. We use also dataguard and his strange for me, dataguard applies the changes on the day before, each time I have doing an impdp on the primary database.

    Maybe that is wrong my understanding in streams...

    Any help is greately appreciated.

    Thank you
    Renjith

    Renjith,

    Answering your question:

    Yes, if all databases are configured with the replication stream. An example of only 2 databases A and B when you set up replication Streams from A to B, here if you perform impdp for a schema (which is configured for replication) database so all changes made by the impdp will be replicated on database B.

    If you have configured bidirectional replication between 2 or more databases (can be n star) then the impdp changes must be replicated to all other databases.

    However, you can see that replication does not occur after performing impdp, then you must apply the hotfix for the bug: 5220845>. This bug is fixed on 10.2.0.4 group of hotfixes (also in 11.1.0.6-> background 11g Release) and more. If you run a group of fixes lower than that (like 10.2.0.3) then apply the single patch for this bug. Take a look at the following note on metalink:

    "Water does not replicate data imported with Datapump."

    Thank you
    Florent

  • Why can I not use Clipboard, copy and paste? instead of a picture, I get javascript

    I try to use the clip and paste on a document. I select an image and click on copy. It's not going in the clipart.all I get is the word javascript on the document.

    Are copy you the image you are viewing using a right click > copy the Image?

    You copy a Web site to another program (such as Word or paint), or in another page in Firefox? There may be special numbers, stick it in an online editor.

    Web sites can use scripts to change what happens when you right-click. Sometimes it is used for good, as custom menus, but it can also complicate copies images... If you want to try to disable (all) sites to do this, you can make some changes in the subject: configuration preferences editor. I'll look at the details if you are interested.

  • 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

  • Public Web site using Oracle ADF and Web Logic

    Hi Experts,

    We intend to develop a new web application using ADF (11.1.1.5.0) and a Web of logic 11 g server. Please share some tips to the public of sites web/web applications developed using ADF. In addition, please share details of technical challenges, issues of performance, scalability and capacity planning of creating public web/web sites with ADF and logical server applications.

    Thanks in advance
    Rouhaud

    Roudier,

    Can I use the old app on a managed server deployed with libs ADF 11.1.1.5.0 and the new app on another managed server

    In theory Yes, but so far I see you can't. The reason is that you install the adf by WLS home runtime. During installation normally install you the libraries in an oracle_common folder that gets wired up more late to run it the servers that you specify. Never tested whether you can install (not on existing day) two different sets of adf runtime in a single server. My hunch is that you may not like the wiring of the libs deep inside the wls server iis.

    In addition, ADF libs have no dependency on the WLS version (currently our WLS East of 10.3.5.0) as I can run any version ADF (11 GR 1 material, 11 2 GR) on WLS 10.3.5.0?

    There are some dependencies since the libs a WLS version. In the bookstores of adf later this are minimal as you use WLS 10.3.5 to run JDev 11.1.1.5, JDev 11.1.1.6, JDev 11.1.2.0, JDev 11.1.2.1. 11.1.2.2 JDev can be UN on WLS 10.3.5 (JDev 11.1.2.20 internal server is actually a WLS 10.3.5) but I would so do as I'm not sure you get patches for this combination.

    Timo

  • Why can I not use average orders and join in an action?

    Something that I do a hundred times a day is to select two end points, their average and join them. I tried to do a deed and map it to an Fkey, but Illustrator will not allow orders average or join in an action. When I tried to use the insert a Menu command, the TI done Illustrator crash. Finally I managed to do without Illustrator crashing, but then there is no way to click 'OK' in the average dialog box through the Actions palette. Why is it seemingly impossible?

    CTRL + Shift + Alt + J

    You can certainly re - map to use a key of your choice F.

  • I use Firefox 6 and that you cannot remove bookmarks. I can't find an option to 'manage bookmarks '. It's very disconcerting.

    I can't find a way to delete some bookmarks. I have read articles on line and they all refer to the option "manage bookmarks". I don't have this option on the tab my favorites.

    Deleting bookmarks

    Check and tell if its working. There is no device to manage bookmarks in Firefox.

  • can scan, but can't print using Windows 7 and Canon MG6120

    Windows 7 64 bit, Canon MG6100 printer/scanner

    Suddenly I can not print, but I can still scan so I know that the printer can see my laptop on the network. I get an error ' printer does not.
    When you try to print anything.
    He worked for a year and suddenly stopped working. Two other computers also running Windows 7 64 bit on our wireless network can print.
    What I tried, but nothing worked:
    -powered by bike all several times, including modem cable box router Linksys, laptops, printers
    -deleted and reinstalled the drivers twice
    -Run the troubleshooter who recommends adding printer for collective habitation I did
    -removed the queue print jobs to fail
    Nothing else seems to be a problem with my laptop or the network.
    Ideas?

    For some reason any McAfee firewall started blocking the print spooler. I allowed outbound access and I also added the IP address of my printer and I can print now.

  • How can I create a composite layer and which you use e control alt shift or Shift control alt e and when I do the pop deletion tool?

    How can I create a composite layer with 11 elements? How what should I do?

    How can I get an answer to my problem? I would never buy the program if I'm having this famous problem with getting help?

  • How can I save my files? and which ones? I need to reinstall windows xp pro

    but I have a lot of problems on my current xp pro. problems of windows registry problems. I used to save those I do? Ty

    but I have a lot of problems on my current xp pro. problems of windows registry problems. I used to save those I do? Ty

    Manually copy on an external support everything you find important:

    • Documents
    • Photos
    • Music
    • Worksheets
    • Databases
    • E-mail
    • Contacts
    • PDF file
    • Text documents
    • Executables of installation you want to re - install
    • Saved games of one kind or another
    • Scripts, you wrote & use
    • Internet favorites/bookmarks
    • List of hardware devices so you can get the appropriate device drivers to install
    • List of installed software to let you know that you will have to re - install
    • List serial numbers and product keys, so you can keep things registered
    • etc.

    Can print a copy of a Belarc Advisor free report to help with a lot of this.

Maybe you are looking for

  • How to import bookmarks from chrome?

    How to import bookmarks from chrome? not sure how I can make this more detailed question...

  • Portege R700-184 freezes + high speed fan

    Hi all I am a happy owner of a unused R700, bought in conditions under renovation.But as far as I can see, it has not been used since around 2011, and judging by the box was stored in a warehouse and was used. I installed Windows 7 64 bit I need to u

  • PC CRASHES BSOD

    BCCode: 116 BCP1: 84EC3008 BCP2: 8D20BCBA BCP3: 00000000 BCP4: 00000002 OS version: 6_0_6002 Service Pack: 2_0 Product: 768_1 How do I solve this problem

  • Doubts on Xperia Z3 double Downgrade, enter recovery

    Hi, I upgraded my dual Z3 using PC companian and I do worse than worse battery life that lasts hardly 8 hours with an average of 2 hours on the screen using only a SIM... Don't recommend me to cut my mobile data live wallpaper etc... I don't need two

  • How can I remove the lid of the scanner of my printer HP Photosmart 5514?

    The manual says the scanner cover is removable, but does not specify how.  I tried, but I was afriad I was going to break the cover. Please if anyone can help me - thank you very much. Oboe