Need to monitor transactions, but DEFSCHEDULE contains no data.

Hi all,
I just built up the single-master-many-mviews replication environment I ran some transactions from side to side and they were applied successfully on all databases. Now I need to define the network traffic my transactions ate. Executing the following query from doc gives me nothing:
SELECT DECODE (total_txn_count,
0, 'No Transactions',
((total_bytes_sent + total_bytes_received) / total_txn_count)
) "Average Bytes",
DECODE (total_txn_count,
0, 'No Transactions',
(total_round_trips / total_txn_count)
) "Average Round Trips"
FROM defschedule
WHERE dblink = 'RISE9.COMPANY.COM.UA';
Query finished, retrieving results...
Average Bytes Average Round Trips
0 row(s) retrieved
Why my defschedule is empty? Thanks in advance.

Hi,
I have 9.2.0.8 on all servers. DBMS_DEFER_SYS.CLEAR_PROP_STATISTICS is never running. I checked out DEFSCHEDULE on all databases and they are empty everywhere. Actually, they contain 1 or 2 records with zero values in all columns but DBLINK which is correct. I running many transactions with hundreds of calls but zeroes are not being changed. By the way, I applied several Oracle prebuilt conflict resolution methods and looks like they work well because explicitly conflict transactions don't get deferred. But DBA_REPRESOLUTION_STATISTICS is empty. No idea why I have these problems with the dictionary.
Oleh

Similar Messages

  • TS2771 Itunes says my ipod touch needs to be restored but I will lose data, what do I do?

    I was trying to update my ipod touch and itunes says it needs to be restored but I will lose data. What do I do?

    If you synced your iPod Touch with iTunes, you already created a complete backup of all its content.

  • Query Runs - but XML contains no data

    OK - I'm a real newbee so please excuse me if this is a dumb question.
    I imported a working query into BIP. The query runs in BIP without error but all that is output is an XML skeleton that contains the correct number of rows but no data. It looks like this:
    <ROWSET>
    <ROW>
    </ROW>
    <ROW>
    </ROW>
    <ROW>
    </ROW>
    <ROW>
    </ROW>
    </ROWSET>
    There is a message at the top that says "This XML file does not appear to have any style information associated with it. The document tree is shown below."
    As noted, the query works fine outside of BIP. Any idea why the data isn't being returned?
    Thanks for any help you can provide!

    There's the rub. It is in fact a rather intricate query that was not built in Query Builder. However, the query was executed using the same User ID both in BIP and in the external Query tool. The parameter values were the same as well. As noted, I think that the query returns data in both environments - it's just not making it into the XML file in BIP.
    If it helps at all, here is the Teradata SQL I am trying to run. Please note that I did not write the query - it was generated by the reporting tool from which we are attempting to migrate - so please don't shoot the messenger :)
    SELECT DT2.START_DT AS "START DATE"
    ,DT2.SUB_ACCT_ID AS "SUB ACCT ID"
    ,DT1.CALL_ID AS "CALL ID"
    ,DT1.CUST_SUPRT_PRDCT_ID AS "PRODUCT ID"
    ,DT2.USER_LAST_NAME AS "USER LAST NAME"
    ,DT2.USER_FIRST_NAME AS "USER FIRST NAME"
    ,DT1.CALL_REASN_DTL_NAME AS "CALL REASON DETAIL NAME"
    ,DT1.CALL_PRDCT_REASN_DTL_TEXT AS "CALL REASON DETAIL TEXT"
    ,DT1.CALL_REASN_NAME AS "CALL REASON NAME"
    ,DT1.PARENT_CALL_REASN_NAME AS "PARENT CALL REASON NAME"
    ,DT2.MIN_START_TIME AS "CALL START TIME"
    ,DT2.PRIM_MKT_CD AS "PRIMARY MKT CD"
    ,DT2.PRIM_MKT_DESCR AS "PRIMARY MKT DESCR"
    ,DT2.SUB_ACCT_NAME AS "SUB ACCT NAME"
    ,DT2.CUST_SUPRT_PRDCT_NAME AS "PRODUCT NAME"
    FROM (SELECT T1.CALL_ID,
    T4.CALL_REASN_DTL_NAME,
    T1.CALL_PRDCT_REASN_DTL_TEXT,
    T3.CALL_REASN_NAME,
    T2.CALL_REASN_NAME AS PARENT_CALL_REASN_NAME,
    T1.CUST_SUPRT_PRDCT_ID
    FROM BI_CSR.CSR_CALL_PRDCT_REASN_DTL T1
    LEFT OUTER JOIN BI_CSR.CS_CALL_REASN T2
    INNER JOIN BI_CSR.CS_CALL_REASN T3
    ON T2.CALL_REASN_NBR = T3.PARENT_CALL_REASN_NBR
    ON T1.CUST_SUPRT_PRDCT_ID = T3.CUST_SUPRT_PRDCT_ID
    AND T1.CALL_REASN_ID = T3.CALL_REASN_ID
    AND T1.CALL_REASN_NBR = T3.CALL_REASN_NBR
    INNER JOIN BI_CSR.CALL_REASN_DTL T4
    ON T1.CALL_REASN_DTL_ID = T4.CALL_REASN_DTL_ID
    WHERE (T1.CALL_ID IN
    (SELECT TC.CALL_ID
    FROM BI.SUB_ACCT_CURR TA,
    BI_CSR.CSR_CALL_PRDCT_USER TB,
    BI_CSR.CALL_DATA TC
    WHERE (TA.PRIM_MKT_CD = :PrimaryMkt
    AND TC.CLNDR_YR_MONTH = :YearMonth)
    AND TC.CALL_ID = TB.CALL_ID
    AND TB.SUB_ACCT_ID = TA.SUB_ACCT_ID
    GROUP BY TC.CALL_ID ))
    GROUP BY T1.CALL_ID,
    T4.CALL_REASN_DTL_NAME,
    T1.CALL_PRDCT_REASN_DTL_TEXT,
    T3.CALL_REASN_NAME,
    T2.CALL_REASN_NAME,
    T1.CUST_SUPRT_PRDCT_ID) DT1
    INNER JOIN (SELECT T8.CALL_ID
    ,T8.START_DT
    ,MIN (T8.START_TIME) AS MIN_START_TIME
    ,T4.PRIM_MKT_CD
    ,T1.PRIM_MKT_DESCR
    ,T4.SUB_ACCT_ID
    ,T4.SUB_ACCT_NAME
    ,T7.CUST_SUPRT_PRDCT_ID
    ,T2.CUST_SUPRT_PRDCT_NAME
    ,T5.USER_LAST_NAME
    ,T5.USER_FIRST_NAME
    FROM BI.PRIM_MKT_LKUP T1,
    BI_CSR.CUST_SUPRT_PRDCT T2,
    BI_CSR.CALL_DATA T3,
    BI.SUB_ACCT_CURR T4,
    BI.USER_SIGNON_DIM T5,
    BI_CSR.CSR_CALL_PRDCT_USER T6,
    BI_CSR.CSR_CALL_PRDCT T7,
    BI_CSR.CSR_CALL_CURR T8
    WHERE (T4.PRIM_MKT_CD = :PrimaryMkt
    AND T3.CALL_CNTR_CD = :CallCenter
    AND T3.CLNDR_YR_MONTH = :YearMonth)
    AND T2.CUST_SUPRT_PRDCT_ID = T7.CUST_SUPRT_PRDCT_ID
    AND T7.CSR_ID = T8.CSR_ID
    AND T7.CALL_ID = T8.CALL_ID
    AND T7.CALL_REC_NBR = T8.CALL_REC_NBR
    AND T8.CALL_ID = T3.CALL_ID
    AND T7.CUST_SUPRT_PRDCT_ID = T6.CUST_SUPRT_PRDCT_ID
    AND T7.CSR_ID = T6.CSR_ID
    AND T7.CALL_ID = T6.CALL_ID
    AND T7.CALL_REC_NBR = T6.CALL_REC_NBR
    AND T7.PRDCT_CLASS_CD = T6.PRDCT_CLASS_CD
    AND T7.CALL_CUST_SUPRT_PRDCT_ID = T6.CALL_CUST_SUPRT_PRDCT_ID
    AND T6.USER_SIGNON_ID = T5.USER_SIGNON_ID
    AND T6.SUB_ACCT_ID = T5.SUB_ACCT_ID
    AND T5.SUB_ACCT_ID = T4.SUB_ACCT_ID
    AND T4.PRIM_MKT_CD = T1.PRIM_MKT_CD
    GROUP BY T8.CALL_ID,
    T8.START_DT,
    T4.PRIM_MKT_CD,
    T1.PRIM_MKT_DESCR,
    T4.SUB_ACCT_ID,
    T4.SUB_ACCT_NAME,
    T7.CUST_SUPRT_PRDCT_ID,
    T2.CUST_SUPRT_PRDCT_NAME,
    T5.USER_LAST_NAME,
    T5.USER_FIRST_NAME) DT2
    ON (DT1.CALL_ID = DT2.CALL_ID
    AND DT1.CUST_SUPRT_PRDCT_ID = DT2.CUST_SUPRT_PRDCT_ID)
    ORDER BY 1,2,3,4,5,6

  • How to create a table which contains relational data and Document data

    hai all
    i need to create a table which contains relational data(i mean coulumns whose data types are type NUMBER,VARCHAR) and documents(like xml file/html file/image)using iFS.
    when i store the document data(xml data/html data) in the iFS ,it will be stored as Document Object.so how do i relate this document object belongs to a particular row in a table.
    do guide me
    thanks

    Please see reply at http://technet.oracle.com:89/ubb/Forum36/HTML/000778.html

  • Reports based on SQL view contain no data. Reports based on tables work just fine

    When we load a report into Crystal reports server that is based on a SQL view the report will run but will contain no data. A report that pulls data from SQL tables works just fine. Running the crystal report on standalone crystal reports works just fine.
    I am completely lost on this one. If you have any ideas please send them my way.

    Are you missing an ODBC / TNS entry on your CMS (or report processing, if clustered env) server?  This could definately be an issue if the report will run locally within CR client, but not when hosted on the enterprise environment.  Another test would be to run the report from CR client ON the CRS / BOE server..

  • (+) add auth object to a transaction but as it is already in z-program  I

    I have a transaction containing a z-program with an added authorisation check (object V_VBAK_VKO). I guess this change shoud appear in transaction “su24”.
    Of course there is possibility to add auth object to a transaction but as it is already in z-program  I assume this is not needed.
    What is your opignion?

    what you have in your z-program is the function authority-check 'yaddayadda'. this will work, of course - but you should activate it in SU24 so that everyone can see there's an object added to the transaction (not every security admin will or can read abap.coding). also it enables that the security admin will receive this object every time he/she adds your z-transactio to a new role as a suggestion (so it will not be forgotten).
    it's more transparent this way - for sec-admins, non-abapers and end-users ...

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • HT1539 I've burnt a digital copy of 3 blu ray dvds onto my iTunes, but i cant sync them to my iPad-an error message says device needs to be authorized, but its only authorised to this computer, i've never tried to use it on any other! Can anyone help?!

    I've burnt a digital copy of 3 blu ray dvds onto my iTunes, but i cant sync them to my iPad-an error message says device needs to be authorized, but its only authorised to this computer, i've never tried to use it on any other! Can anyone help?!

    Thanks for your reply, but you might have misunderstood it a bit. I'm NOT trying to buy a movie. ****, I'm not even in the actual Apple Store, when this happens I'm in the library not the Store part of iTunes.
    To clarify - I have purchased a physical copy of a movie which came with another physical copy which contains the digital copy. The digital copy is on the DVD, all I need is just to transfer this file to my iPod Touch, for example, I'm not trying to download it from the store or repurchase it and it's not any gift code that I've received, the digital copy is on the disc. This is the first time ever that I've purchased something on a disc and I'm not allowed to access it because the disc hasn't been purchased within my country.
    So again - I'm not attempting any purchase or download any purchased digital copy - it's on a DVD I own physically so... why is even the region of my Store relevant, the code I enter is (as I assume) just supposed to check if it's a legal genuine copy (which it is, as I've said - there are 6 discs in the pack: 3 movies on 3 Blu-rays and 3 DVD containing these digital copies of them). If I own it, I think that's proof enough that I have the right to use it. I just don't get it. I fully agree with you and understand your point if there was any purchase going on here, but it's not, it's just - I put a disc into my computer and I can't access it

  • PowerMac 8600 Needs New Monitor

    I have an 8600 that needs a monitor. Exactly what type of adapter do I need to hookup a monitor (crt) to it?
    Thanks

    The signals involved:
    Red intensity and its ground
    Green intensity and its ground
    Blue intensity and its ground
    Horizontal Sync -- indicates start and end of one row of dots across the screen
    Vertical Sync -- Indicates start and end of one screenful of rows of dots
    ... can only be transposed from the typical
    "VGA-style" three-row 15 pin Male (with pins) connector on the cable-end to the
    Apple "two-row" 15 pin Female (with holes) connector on the Mac Display Card
    ... in one way that will work.
    The poorly-documented "feature" that will trip you up is that the Macs of that era expect a code on pins 4, 7, and 10 that tells the Mac what kind of display is attached. If no signals are asserted, grounded, or cross-connected with wires or diodes on those pins, the default of "No display attached" gives no picture.
    You need an adapter specific to the broad class of displays you intend to connect. There are over 17 different legitimate codes for Mac displays, but frankly, most of them are for obsolete displays. The most common still used are for VGA Display (640 by 480 and Super VGA 640 by 800) and Multiple-Sync display (640 by 480 and 832 by 624 and 1024 by 768 and possibly 1152 by 870) switchable on the fly. And it needs to be specific to older Macs and have the pins and holes on the correct sides. There are other adapters for a different problem that have the pins and holes reversed.

  • Monitoring Transactions by name

    Hi,
    when monitoring transactions by name, the name is the class and method
    of the called ejb. This does not make a sense if the same physical bean
    is deployed several times with different jndi names. Is there any
    possibility or plan to distinguish transactions rather by their logical
    name (jndi name or name in the deployment descriptor) than by the
    classname?
    Thanks,
    Daniel

    Hi Rogerio
    I've spent the day investigating the same thing and it appears it is simply how the ALSB ReportingMDB gets invoked. Every time it checks for a message it creates a new Transaction and then rolls it back without so much as a whimper. I have no idea it would work like this but I've got about 12 OSB installations and they are all doing the same thing with no clue as to why it is behaving this way.
    I think it is messy but it doesn't seem to be an issue in and of itself.
    Cheers
    Brock

  • How to monitor transactions in OEM

    Hi All,
    Can anyone please tell me how can I monitor transactions in OEM 12c Cloud Control?
    Thanks in Advance!!

    You can manage them with the Java Console but with limited functionality. It will be best to use Grid Control if you have the license.
    Metalink Note:277066.1 shows features available in the different EM versions.

  • Suggestions welcome...what all reports needed to monitor DB performance

    Hi All,
    Could you all please let me know what reports would you need to monitor a database. I am writing something that one could use to monitor database. not like statspack which would take snaps at regular intervals but a GUI where in you would click on a particular button a get the report at that instance. some reports like indexes that need rebuild. queries taking lot of time...users, their roles,undo stats, cache hits..
    So do let me know what all reports u can think of and i will try and put them together.. doing it for my dissertation work.. so please please help with your valuable inputs..
    regards,
    Kailas

    A good stuff is a program that shows when a event in v$system_event is out of range of normal condition operation(so you have to use some statistics functions, and store a continuos baseline), and what session is doing this injury.
    Regards
    Hélio Dias
    http://heliodias.com

  • Need to monitor 7201 router without package for Ciscoworks

    Hello,
    I'm a few months away from upgrading our Ciscoworks platform from LMS 2.6 to 3.1. However, I need to monitor a 7201 router and will not be able to to install the package for that system. I 'm getting snmp traps and get request, but the system is shown as unkown because I don't have the package installed. My support has run out until I get the 3.1 LMS software approved for purchase. Until then is it possible to monitor the 7201 router, I am receiving snmp message but Ciscowork doesn't seem to relate them correctly without the package being installed. I want to monitor the system for reachablity and sent a e-mail message out if it fails that test.
    Jeff

    Perhaps something like eWatch would work for you. Leopard will also offer some tracking and monitoring abilities as part of the upgraded Parental Controls.

  • How many  platforms we need to monitor in FUSEHQ

    how many  platforms we need to monitor in FUSEHQ

    Hi,
    2 way -
    2way merge is used when both the repositories are completely different from each other,like sample sales and usage tracking.
    Current repository is the one that we merging changes into it
    Original repository is Dummy(empty) repository
    Modified repository is Usage tracking repository (or) repository that you want to merge.
    So here we use three repositories in which one repository is empty.
    3 way -
    3way merge is used when both the repositories are identical in many ways but with some differences,like BI Apps 7.9.5 and modified 7.9.3 (or) merging developement repository with production repository.
    Current repository is Original BI Apps 7.9.5 repository
    Original repository is Original BI Apps 7.9.3 repository
    Modified repository is Modified 7.9.3 repository
    Here we use three repositories.
    Regards,
    Srikanth

  • System Center Orchestrator 2012 R2 Runbook needed to monitor multiple folders

    I've written script that will scan ~25 folders and pick the folder(s) with files in it and spit out the path for one of those folders.  I then want to monitor the folder wait for the folder to empty then the script should rerun and spit out
    the next folder that contains files and so on.  Lastly when all folders are empty the script should return NULL or something like that so I can tell the RB to quit.
    The problem with the monitor folder object is that you cant link an object before it.
    Ideas? I thought about running the script in another RB and calling the monitor RB but don't know how to pass values (folder path that contains files) to the monitor folder object.  Also, I want the RB to only run when I trigger is and stop when all
    folders are empty.
    Thanks!

    Hi,
    use the "Get File Status" Activity within a Runbook.
    Configure a Loop until "File exists equals false":
    http://technet.microsoft.com/en-us/library/hh403826.aspx
    The "Monitor" Activities can only be the first Activity in a Runbook.
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

Maybe you are looking for