How to find out object / schema / database level replication is active

Hi,
I am an experienced DBA but new to streams and I am asked to support an existing streams configuration between two Oracle 10g databases. I was told it is bi-directional but one database is standby and it never took traffic. My questions are
1. How will I find out whether it is a database or schema level replication? Any queries that I can run to find it out?
2. How do I find out it is bi-directional and it iis current. What queries I can run to confirm?
3. How will I find out the excluded objects? Any queries please...
Thanks for the help
Regards
Rama

http://www.morganslibrary.org/reference/dyn_perf_view.html#dyst
SELECT name FROM dba_dependencies
WHERE referenced_name = 'DBMS_STREAMS_ADM' AND name LIKE 'DBA%'
UNION
SELECT referenced_name FROM dba_dependencies
WHERE name = 'DBMS_STREAMS_ADM' AND referenced_name LIKE 'DBA%';

Similar Messages

  • How to find out that the database table is empty

    Hello all,
    How to find out in ABAP in the best performant way, that the database table is empty. The table could have several milions of records or be empty. SELECT count( * )  looks to me as not the best way.
    Kind regards
    Radim Benek
    Moderator message: FAQ, please search for previous discussions of similar topics.
    example: "SELECT SINGLE" vs. "SELECT UP TO 1 ROWS"
    Moderator message: Please Read before Posting in the Performance and Tuning Forum
    Edited by: Thomas Zloch on Aug 11, 2011 5:06 PM

    Hi,
    One approach is:
    check lt_mytable is initial.
    This will be true if there are no lines.
    Another:
    describe table lt_mytable lines lv_count
    if lv_count = 0.
    "Empty
    Thanks.
    Anitha a

  • How can find out LONG column database?

    Hi,
    in my database ORA-1461 error occured
    01461, 00000, "can bind a LONG value only for insert into a LONG column
    how can find out LONG column in my database ?

    DESCRIBE
    The description for tables, views, types and synonyms contains the following information:
    each column's name
    whether or not null values are allowed (NULL or NOT NULL) for each column
    datatype of columns, for example, CHAR, DATE, LONG, LONGRAW, NUMBER, RAW, ROWID, VARCHAR2 (VARCHAR), or XMLType
    precision of columns (and scale, if any, for a numeric column)
    Extract of the link;
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/ch12019.htm#SQPUG040
    Secondly with reference to the error;
    Do not try to insert LONG datatypes into other types of columns.
    Hope this helps.
    Adith

  • How to find out whether Oracle database was upgraded ??

    Hi,
    I need to find out whether my Oracle database was upgraded, If yes how to find out by SQL query .I know their is database_properties table, but when I try to query that it didnt gave me the output which I required.
    Like in SAP we have uvers table which keep info about the upgrade history, whether such history is avaliable in oracle ?? . Iam looking out for output which is like old database Release 9.2.0.7 and new database release 10.2.0.2.
    Whether similar such history is maintained in Oracle database.
    Awaiting for your feedback.
    Kind Regards
    Neenad

    Hi all,
    After checking all the material,I dont think prior to 10g, oracle register its earlier version.
    The views of v$version show the current version for various components and also dba_registry displays info about catlog/catproc versions.
    In 10g, you can use the following query to know the version when the database was broughtup.
    select startup_time,version,db_name from dba_hist_database_instance.
    Anways thanks to all of you.
    Kind Regards
    Neenad

  • How to find out which schema(time and payroll) is being used for which empl

    Hi,
      Can anyone tell me if there is any way we can find out which schema is relevant for which group of employees, for example in a system which has employees from different countries and for each country there is a diffrerent schema being used ?
    Is there any feature which defaults the schema names according to groups of employees ? If so what is the name of the feature?
    Regards
    QB

    hai
    generally  the schemas are named X000  which stands for common schema  nomination
    x replaced by respective country like for india it is IN00  for US  U000etc
    it is not given according to the group of emplyees but according to the country grouping for your org units
    time schemas are country independent they work for all the countries
    regards
    nalla

  • How to find out SAP J2EE Patch Level for 04s

    Hi all
    I want to find out SAP J2EE Patch Level for 2004s installation i tried to get information from SYSTEM INFORMATION link on WAS homepage but it gave only version :7.00 details and PATCH LEVEL was not mentioned .
    I also tried to find out by looking into VERSION.TXT file for server & dispatcher in ....USR\SAP\J2E.....engine installation but again no details about PatchLevel was mentioned can anyone provide some information regarding what is the  PatchLevel  for WAS 7.0 , J2SE used is 1.4.2_09
    Thanks in Advance !!
    Asif

    Thanks Kenny ,
    But as you can see from version.txt  file for Server0 it does not mention PatchLevel it is
    blank
    Specifies the version of the system
    Cluster-Version: 7.00   PatchLevel 
    Build-On:Thursday, March 23, 2006 18:47 GMT
    Perforce-Server:
    Project-Dir:JKernel/645_VAL_REL
    JKernel Change-List:102557
    Build machine:SAPInternal
    Build java version:1.3.1_12-b03 Sun Microsystems Inc.
    SP-Number: 07
    Source-Dir: D:\make\engine\645_VAL_REL\builds\JKernel\645_VAL_REL\archive\dbg
    i also checked version.txt for dispatcher it is as below
    Specifies the version of the system
    Cluster-Version: 7.00   PatchLevel 
    Build-On:Thursday, March 23, 2006 18:47 GMT
    Perforce-Server:
    Project-Dir:JKernel/645_VAL_REL
    JKernel Change-List:102557
    Build machine:SAPInternal
    Build java version:1.3.1_12-b03 Sun Microsystems Inc.
    SP-Number: 07
    Source-Dir: D:\make\engine\645_VAL_REL\builds\JKernel\645_VAL_REL\archive\dbg
    I tried this on different 2004s server but the Patch Level is not mentioned whereas for 2004
    servers it is mentioned
    so can u give some inference based on above descriptions about What should be SAP J2EE Patch
    Level for the 2004s servers
    Regards !!
    Asif

  • How to find out who updated database tables

    Hi
    We are using Oracle Database 10g Release 10.2.0.4.0.
    A user, via pl/sql developer, has been updating data on our database. This resulted in certain reports not balancing. At that time, we did not have database triggers on the tables concerned. We now need to go back at least a month or more to see who had updated these tables. We have a username, is there any script that we can use? How accurate is v$active_session_history? Would it give us all the info we need?

    781424 wrote:
    Hi
    We are using Oracle Database 10g Release 10.2.0.4.0.
    A user, via pl/sql developer, has been updating data on our database. This resulted in certain reports not balancing. At that time, we did not have database triggers on the tables concerned. We now need to go back at least a month or more to see who had updated these tables. We have a username, is there any script that we can use? How accurate is v$active_session_history? Would it give us all the info we need?It is little easy to know with AUDITING, or use Log miner to analyze log files.

  • How to find out the support package level applied in BusinessObjects

    Hello experts,
    I recently installed SBOP 4.0 BI on mi linux server. Can somebody tell me how to know what is the latest SP (support package or Service package??) installed on my Server.
    I know the current SP available is SBOP BI Platform Servers 4.0 SP01 Patch 2, but I don't know whether it is installed or not on my server
    thank you for your help
    regards

    Dear,
    I had a double check and you are right at least as far I can see the Software Inventory toll came only with WIN installation while you are running your BO on Linux.
    What the Software Inventory Tool does it checks files version.
    Now I'm not very smart with Linux but can you check file version in Linux?that could be an option (In WIN i check CMC.DLL)
    Hope it is an useful info.
    Ciao,
    Massimo
    Edited by: M. Cappelli on May 23, 2011 11:20 AM

  • How to find out what are all the change pointers assoicated for an idoc ??

    Hi ,
    How to find out what are all the change pointers activated for an idoc ??
    Thanks,
    Varma

    Verma,
    You can check what are the active Change Pointers for the message type in tcode <b>BD50</b>
    Use tcode <b>BD61</b> to check whether change pointers are active or not??
    Hope this helps..

  • How to find out  Locks on the database objects

    how to find out Locks on the database objects

    The following notes should be helpful:
    Note: 200590.1 - bde_session_locks.sql - Locks for given Session ID
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200590.1
    Note: 1039273.6 - SCRIPT: VIEWING LOCKS ON OBJECTS HELD BY SPECIFIC USER
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1039273.6
    You can also search Metalink, there are many notes/scripts published there which would be also helpful.

  • How to find out Oracle 11i Standard Objects

    Hi Gurus,
    There is a requirement from my client. My client is on 11i Oracle Applications. He has many customization. But somehow he failed to use naming convention and all during implementation. Now he wants us to write a program which can tell us how many custom database objects are created as a part of implementation.
    Hence in order to know this, first I need to find out what are the standard objects provided by Oracle for its 11i application so that I can write a program which will take difference (custom DB objects - standard Oracle 11i Object)  
    It will be great assistance if you let me know how to find out standard objects provided by Oracle for its 11i application?
    Looking forward to your reply.
    Thanks.
    -Sunil

    Moved to the EBS General Discussions forum
    There is no easy or programmatic way to determine the custom objects. All custom objects need to be documented and need to follow the recommended XX naming convention. If that has not been done, then someone will have to manually input each object name that is possibly custom at https://etrm.oracle.com which documents all seeded objects - if no match is found, it is most likely a custom object.
    HTH
    Srini

  • How to find out what has been restored to a database instance?

    I'm using RMAN to back up and restore/recover. How to find out what has been restored/recovered to a database instance?
    Oracle version is 11gR2 but compatibility is set to 10.
    Edited by: 881656 on Aug 28, 2012 1:54 AM

    select output
    from V$rman_output
    order by stamp;
    select *
    from V$rman_status
    order by start_time desc;
    Regards
    Asif Kabir
    Handle:      881656
    Status Level:      Newbie
    Registered:      Aug 25, 2011
    Total Posts:      52
    Total Questions:      *30 (30 unresolved)*
    -- please close all the answered threads and mark your helpful post as correct/helpful

  • How to find out import & export path for object migration between D Q & P?

    Hi guys!
    Is there a way, how to find out export and import path for object transport on XI?
    Thanx!
    Olian

    Hi,
    Have a look at these links.
    When we do an export of the IR or the ID Oblects, a typical path at which it gets exported in the XI Server is as follow:
    For IR Objects:
    “C:\usr\sap\PI1\SYS\global\xi\repository_server\export “
    For ID Objects:
    "C:\usr\sap\PI1\SYS\global\xi\directory_server\export"
    Now in case you need to import the ".tpz" that you have.... You need to place it in the path mentioned below and u will be able to do import it from IR or ID...
    For IR Objects:
    “C:\usr\sap\PI1\SYS\global\xi\repository_server\import “
    For ID Objects:
    "C:\usr\sap\PI1\SYS\global\xi\directory_server\import"
    File Level transport in sap xi
    Every SLD related transport details are explained here
    Regarding transport of SLD objects
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    Regarding transport of XI objects
    http://help.sap.com/saphelp_nw04/helpdata/en/93/a3a74046033913e10000000a155106/content.htm
    Regards,
    Akshay Jamgaonkar.
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar
    Message was edited by:
            Akshay Jamgaonkar

  • How to find out which objects are at the end of the datafiles

    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.

    >
    My Scenario is having a tablespace of 65G but the data is 5G and that is at the end of datafile for that we are not able to resize the datafile our though is to find out what are the objects at that end of datafiles and will either alter move <owner.tablename> move or alter index <owner.index> rebuld online.
    For that how to find out which objects are at the end of the datafiles.
    >
    You may want to copy this and add it to your toolkit
    See 'What's at the End of the File?' in this Tom Kyte article from the Sept 2004 Oracle Magazine
    http://www.oracle.com/technetwork/issue-archive/o54asktom-086284.html
    And this AskTom blog shows you how to generate a script containing ALTER statements toresize your datafiles to the smallest possible. You can 'pick and choose' from the ALTER statements to do what you want.
    Then of course, you can use techniques from this article by Oracle ACE, and noted author, Jonathan Lewis
    http://jonathanlewis.wordpress.com/2010/02/06/shrink-tablespace/

  • How to find out prerequisites of archiving objects?

    As we plan an archiving project for our ERP system, I would like to know how to find out the prerequisites for archiving the different objects.
    For example, as I know for archiving material master data, the usage of object MM_MATNR requires that the deletion flag is set on materials.
    Or as I assume, orders probably can only be archived if they are delivered and closed.
    How to find out these prerequisites?
    Best regards
    Martin

    Hi Martin,
    Network Graphics helps in determining the dependencies among the archiving objects.Once you have sorted out the flow you can schedule archiving in test mode to find more details.
    Eg PP_ORDER you can find out why a particular order is not archivable...may be cos of unsettled balance..etc.
    You can find few details about the prerequisites in the archiving run (test)
    Hope this helps.
    Thanks,
    Priya.

Maybe you are looking for

  • Logical path in lsmw

    hi friends, i have been uploading using the direct input method in lsmw.it is requiring the logical path and the logical file to be given.i tried to create them using the transaction FILE.but while using that in LSMW it is giving error stating that l

  • I update my iPhoto to the newest version on the App Store and now it always crashes on start up, any suggestions?

    Process:         iPhoto [845] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto Identifier:      com.apple.iPhoto Version:         9.4.1 (9.4.1) Build Info:      iPhotoProject-701067000000000~10 App Item ID:     408981381 App External I

  • Files arranged by date added, but changing file name changes date added

    I've got my Downloads folder set to view (in the Finder) by "date added", a very useful feature. However, if I change a file name, the "date added" changes to that new time, and "date modified" stays the same as it was. This doesn't make sense to me.

  • Problem setting up Gmail--Help!

    I seem to be having issues setting up Gmail. I set up my Yahoo mail account with no issues but Gmail keeps failing. I'm correctly entering my account name and password but verification--both in SSL and non-SSL fails each time. My gmail account is set

  • Where is Bonjour in Mountain Lion?

    Where is Bonjour in Mountain Lion? Thanks.