Plsql_native_library_dir trap in 10.2.0.4

In 10.2.0.4 and also in previous versions, plsql_native_library_dir is not set by default. Older versions work with it well (I guess plsql is only interpreted then). But 10.2.0.4 can sometimes show an error message during plsql compilation that plsql_native_library_dir is missing. I set it to $ORACLE_HOME/plsql/lib .

As I said 10.2.0.3 worked fine without it, bt 10.2.0.4 doesn't. If I compile a package in debug mode, then it works (but then it is not natively compiled). If I compile it normally, it says some error about plsql_native_library_dir missing. I guess its a new bug in 10.2.0.4. Because of that bug, you can't create for example ldap or bpel repositories in database easily.

Similar Messages

  • Error Trapping for Report

    I have a access 2013 database.  I am trying to automate generation of 3K+ pdf reports.  I have the following code. It was working in a previous iteration of the code pictured here, but due to some "illegal" characters, was canceling
    the outputTo command lines due to those characters.  i.e. mostly / chars.  So, I wanted to trap those errors and write them to a table, I added the on error statement.  It works for the first record with an illegal character, but second time
    around it cancels the outputTo command.  What am I doing wrong?
    Private Sub OutputAll_Click()
        DoCmd.GoToRecord , , acFirst 
        Dim V_Counter
        V_Counter = 1
        Me.Counter = V_Counter
        Do While V_Counter <= 20
            On Error GoTo FirstReportError
            DoCmd.OutputTo acOutputReport, "NoMeasurementsIPReportForQualityPreview", acFormatPDF, "c:\PDFFiles\" & Me.IPKey
            GoTo NoFirstFeportError
    FirstReportError:
            DoCmd.OpenForm "IPKeyErrorsForm"
            Forms!IpKeyErrorsForm.IpKeyError = Me.IPKey
            DoCmd.Close acForm, "IPKeyErrorsForm"
            DoEvents
            GoTo SkipSecondReportDueToError
    NoFirstFeportError:
            DoCmd.OutputTo acOutputReport, "NoMeasurementsIPReportForQualityPreviewProductionVersion", acFormatPDF, "c:\PDFFiles\" & Me.IPKey & "_ProductionVersion"
            DoEvents
    SkipSecondReportDueToError:
            DoCmd.GoToRecord , , acNext
            V_Counter = V_Counter + 1
            Me.Counter = V_Counter
        Loop
    End Sub
    IPKey on this report is:
    00-5901-981-02_STYLUS BAR 4/6 MM_100_D

    Hans,
    Thanks again for your timely response.  It is now sort of working, but I must be missing one important piece.  Here is what I have.
    Private Sub OutputAll_Click()
        DoCmd.GoToRecord , , acFirst 'Go to the first record
        Dim V_Counter
        V_Counter = 1
        Me.Counter = V_Counter
        Do While V_Counter <= 739
            If V_Counter = 739 Then
                MsgBox "Counter is 739"
            End If
            On Error GoTo FirstReportError
            DoCmd.OutputTo acOutputReport, "NoMeasurementsIPReportForQualityPreview", acFormatPDF, "C:\PDFFiles\" & Me.IPKey & ".pdf"
            Resume NoFirstReportError
    FirstReportError:
            DoCmd.OpenForm "IPKeyErrorsForm"
            Forms!IpKeyErrorsForm.IpKeyError = Me.IPKey
            DoCmd.Close acForm, "IPKeyErrorsForm"
            DoEvents
            Resume SkipSecondReportDueToError
    NoFirstReportError:
            DoCmd.OutputTo acOutputReport, "NoMeasurementsIPReportForQualityPreviewProductionVersion", acFormatPDF, "c:\PDFFiles\" & Me.IPKey & "_ProductionVersion" & ".pdf"
            DoEvents
    SkipSecondReportDueToError:
            DoCmd.GoToRecord , , acNext
            V_Counter = V_Counter + 1
            Me.Counter = V_Counter
        Loop
    Done:
    End Sub
    Only problem is, it does the code after the label "FirstReportError" every time. What am I missing?

  • How to trap Submit button event in OAF

    Hello,
    I'm doing controller extension for create account button in Customer UI.
    Issue: I'm not able to trap the table action to add extra validation logic.
    I tried to use pageContext.getParameters("CreateButton") but it didn't work i.e. debug message was not printed written inside if statement.
    Button Structure:
    TableAction
    Flowlayout
    Submit button.
    Code:
    public void processFormRequest(OAPageContext pageContext,
                                       OAWebBean webBean) {
            //super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            ArrayList exceptions = new ArrayList();
            OAFlowLayoutBean oaflowlaybean =
                (OAFlowLayoutBean)webBean.findChildRecursive("TableActionsRN");
            OASubmitButtonBean vbuttonBean =
                (OASubmitButtonBean)oaflowlaybean.findChildRecursive("CreateButton");
            String buttonId = vbuttonBean.getID();
            String buttonId12 = vbuttonBean.getName();
            String asd=vbuttonBean.getEvent();
            String s = pageContext.getParameter(EVENT_PARAM);
            String s1 = pageContext.getParameter(vbuttonBean.getName());
                if (s.equalsIgnoreCase("CreateAccount")) {
                OAViewObject vo =
                    (OAViewObject)am.findViewObject("HzPuiAccountTableVO");
                if (vo != null) {
                    pageContext.writeDiagnostics("Jai-1", "VO Found", 1);
                    OARow row = (OARow)vo.getCurrentRow();
                    if (row != null) {
                        pageContext.writeDiagnostics("Jai-2", "Row Found", 1);
                        String partyid =
                            (String)row.getAttribute("PartyId").toString();
                        pageContext.writeDiagnostics("Jai-3", "PartyId" + partyid,
                                                     1);
                        int PartyNum = Integer.parseInt(partyid);
                        String partyacctcnt = null;
                        try {
                            OracleConnection conn =
                                (OracleConnection)pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
                            pageContext.writeDiagnostics("Jai-4", "Inside Try", 1);
                            String query =
                                "SELECT count(1) lcount  FROM HZ_CUST_ACCOUNTS WHERE party_id=:1";
                            PreparedStatement stmt = conn.prepareStatement(query);
                            stmt.setInt(1, PartyNum);
                            ResultSet resultset = (ResultSet)stmt.executeQuery();
                            if (resultset.next()) {
                                pageContext.writeDiagnostics("Jai-5",
                                                             "Inside Result Next",
                                                             1);
                                partyacctcnt = resultset.getString("lcount");
                            stmt.close();
                        } catch (SQLException sqlexception) {
                            throw OAException.wrapperException(sqlexception);
                        int i = Integer.parseInt(partyacctcnt);
                        /*   String HoldFlag = (String)row.getAttribute("Attribute11");
                        // Check Hold Flag: "Y" then restrict to create new account
                        if (HoldFlag == "Y") {
                            pageContext.writeDiagnostics("Jai", "Inside Hold Flag", 1);
                            exceptions.add(new OAException("XXGCO",
                                                           "XXTCO_CREDIT_LIMIT_CHECK",
                                                           null, OAException.ERROR,
                                                           null));
                        // One Party-One Account: Greater or Equal to 1 then throw error mesaage
                        if (i > 1) {
                            pageContext.writeDiagnostics("Jai-6",
                                                         "Inside Account Check",
                                                         1);
                            exceptions.add(new OAException("XXGCO",
                                                           "XXTCO_CREDIT_LIMIT_CHECK",
                                                           null, OAException.ERROR,
                                                           null));
                        if (exceptions.size() > 0) {
                            pageContext.writeDiagnostics("Jai-7",
                                                         "Inside Exceptioon calling",
                                                         10);
                            OAException.raiseBundledOAException(exceptions);
                        } else {
                            pageContext.writeDiagnostics("Jai-8",
                                                         "Inside else Exceptioon calling",
                                                         10);
                           // super.initParametersPFR(pageContext,webBean);
                            vbuttonBean.setFireActionForSubmit(null, null, null, false);
                            super.processFormRequest(pageContext, webBean);
    Please suggest the how to overcome with above mention issue.

    Hi Kiranmai,
    You can capture the event of the radio button in the following way in oninputprocessing.
    DATA: event             TYPE REF TO if_htmlb_data,
                   radioButton_event TYPE REF TO CL_HTMLB_EVENT_RADIOBUTTON.
             event = cl_htmlb_manager=>get_event( request ).
             IF event IS NOT INITIAL AND event->event_name = htmlb_events=>radiobutton.
               radioButton_event ?= event.
               ENDIF.
    you can get the attributes of clicked radio button in
    event->event_class
    event->event_id.
    event->event_name
    event->event_type
    event->event_server_name
    In layout define the radio button as
    <htmlb:radioButtonGroup   id          = "test_id">
            <htmlb:radioButton      id          = "id_red"   text = "Red"               onClick="myClick" />
            <htmlb:radioButton      id          = "id_blue"  text = "Blue"          onClientClick="alert('blue clicked')"/>
            <htmlb:radioButton      id          = "id_green" text = "Green"      onClick="myClick" onClientClick="alert('green clicked')"/>
          </htmlb:radioButtonGroup>
    Hope this will solve your problem.
    Donot forget to assign points for helpful answers.
    Regards
    Aashish Garg

  • HelpSet.findHelpSet() returns null, and trapping ID errors

    I was having a problem initializing JavaHelp. HelpSet.findHelpSet() was returning null. I searched the forum, and found it was a common problem, but the answers were unhelpful. The answers pointed to a problem with CLASSPATH, but offered little in the way of advice for a newbie like myself on how to deal with it.
    A second issue concerns HelpBroker.enableHelpOnButton(). If you feed it a bogus ID, it throws an exception, and there's no way to trap it and fail gracefully. JHUG doesn't provide much in the way of alternatives.
    Now, having done a bit of research and testing, I'm willing to share a cookbook formula for what worked for me.
    I'm working in a project directory that contains MyApp.jar and the Help subdirectory, including Help/Help.hs. My first step is to copy jh.jar to the project directory.
    Next, in the manifest file used to generate MyApp.jar, I add the line:
        Class-Path: jh.jar Help/I'm working with Eclipse, so in Eclipse, I use Project - Properties - Java Build Path - Libraries to add JAR file jh.jar, and Class Folder Tony/Help
    I define the following convenience class:
    public class HelpAction extends AbstractAction
        private static HelpBroker helpBroker = null;
        private String label = null;
        public HelpAction( String name, String label )
            super( name );
            this.label = label;
        public void actionPerformed( ActionEvent event )
            displayHelp( label );
        public static boolean displayHelp( String label )
            if ( helpBroker == null )
                Utils.reportError( "Help package not initialized!" );
                return false;
            try
                helpBroker.setCurrentID( label );
                helpBroker.setDisplayed( true );
                return true;
            catch ( Exception e )
                Utils.reportError( e, "Help for " + label + " not found" );
                return false;
        public static boolean initialize( String hsName )
            URL hsURL = HelpSet.findHelpSet( null, hsName );
            if ( hsURL == null )
                Utils.reportError( "Can't find helpset " + hsName );
                return false;
            try
                HelpSet helpSet = new HelpSet( null, hsURL );
                helpBroker = helpSet.createHelpBroker();
            catch ( HelpSetException e )
                Utils.reportError( e, "Can't open helpset " + hsName );
                return false;
            return true;
    }If you use this class in your own code, you'll want to replace Utils.reportError() with something of your own devising.
    Finally, in my GUI class, I use the following:
        JPanel panel = ...
        JMenu menu = ...
        JToolbar toolbar = ...
        HelpAction.initialize( "Help.hs" )
        Action gsAction = new HelpAction( "Getting Started Guide", "gs.top" );
        menu.add( gsAction );
        JButton helpButton = new HelpAction( "Help", "man.top" );
        toolbar.add( helpButton );
        InputMap imap = panel.getInputMap( JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT );
        imap.put( KeyStroke.getKeyStroke( "F1" ), "F1help" );
        ActionMap amap = panel.getActionMap();
        amap.put( "F1help", new HelpAction( null, "man.top" ) );

    Sorry, the sixth-from-last line of my example should read,
        JButton helpButton = new JButton( new HelpAction( "Help", "man.top" ) );

  • Maddening issue with text... trapping?

    I have recently taken over as acting editor for a PDF-only publication with a very small audience. My previous experience with InDesign has been with preparing files for CMYK printing, so this is my first opportunity to prepare a document specifically for on-screen display.
    I am using a background image on several pages within the document. However, it would seem that no matter what I do, the resulting PDF does some funny things to the text.
    I have trapping turned off throughout the document, all my text is created from the [black] swatch, and I've specified "overprint fill" in the attributes menu just for good measure. However, no matter how I export my PDF, I get one of two issues:
    (1) With "convert to destination" selected and a CMYK colorspace as the destination, OR with "no color conversion" selected, I end up with trapped text on pages that have a background image, even though the background image only covers a portion of the page. Pages with no background image display text properly.
    (2) with "convert to destination" selected and an RGB colorspace as the destination, I end up with trapped text on pages that have a background image, but only where the background image does NOT appear.
    This is confusing because, in each instance, there's no valid reason for InDesign or Acrobat to display a trap. I've tried creating a trap setting with 0pt specified for the trap, and it doesn't help. See http://www.caves.org/grotto/lrg/images/indesign_frustrations.png for a screenshot of the issue.
    What on earth is going on? I just want overprinting black text to display as untrapped black text, and none of my export options seem to allow the PDF to appear as it does when I have "overprint preview" selected within InDesign. It's imperative that the text be crisp and legible on-screen, and the bloated, messy trapped-looking text is much more difficult to read at "fit page" -level zooms of less than 100%.
    I'm using InDesign CS3 on a Windows machine running Vista 64 with 6MB of RAM. I have not observed any other problems with the CS3 family of products. The font being utilized is Adobe Garamond Pro.
    thanks in advance to anyone who can shed light on the issue.
    on my last nerve,
    jeff

    I don't think you are seeing trapping I think you are seeing the results of flattening due to the use of transparency. Some text is either rasterized or converted to outlines. When outlined, text appears heavier because it does not benefit from hinting. You can reduce the use of transparency effects, export to a transparency-savvy version of PDF, or put the text above the transparency issues.
    I suggest a combination. Make a layer for the text above other layers and put all the text there that you can without mucking up the layout. Export to Acrobat 5 (PDF 1.4) or higher to avoid flattening.

  • CS5 TEXT TRAPPING options? Knockout? 0.44? Overprint?

    Is there no option in InDesign CS5 for the text trapping?
    How can I be sure that the text I want to be knockout is in fact set to knockout? and likewise for text to be overprinted?
    Am I to assume that everything is automatic and I have to trust InDesign to decide it for me?
    I will be taking a project to the printers soon, and I NEED to be sure for myself that all the overprint and knockout text is set correctly, but I can't find the settings anywhere.
    Help, guidance and anything else very much appreciated.

    le_mac_man wrote:
    Thanks for your reply.
    So, are you saying that every other colour except black will knockout automatically?
    In the "attributes" panel the options are:
    Overprint Fill
    Overprint Stroke
    Nonprinting
    Overprint Gap
    Why is there not an option, "knockout Fill" etc... or is it just given that if the overprint fill box is not ticked then that means it will knockout?
    There is no option for Knockout because that's the default condition, and the only possibility if overprint isn't selected. You can't "sort of" or half overprint any more than you can "sort of" print red using black ink.

  • Error trapping with OPEN FOR

    I am trying to add some error handling to this packaged procedure written by someone else.
    How can I check for an Oracle error in the query in m_sql_string? I have tried checking
    SQLCODE after the 'OPEN FOR', but it is always 0 even when errors are being encountered.
    I need to trap errors and write them to an error table.
    CREATE OR REPLACE PACKAGE P1
    AS
    TYPE CHCUR IS REF CURSOR;
    PROCEDURE QRY_WR_STATUS_CHANGES (tsAfter IN VARCHAR2, rsResult OUT CHCUR);
    END P1;
    CREATE OR REPLACE PACKAGE BODY P1
    AS
    PROCEDURE QRY_WR_STATUS_CHANGES(tsAfter IN VARCHAR2, rsResult OUT CHCUR)
    IS
    m_sql_string VARCHAR2(30000);
    BEGIN
    m_sql_string := 'SELECT TS_STATUS, CD_STATUS, CD_WR, RowId
    FROM TABLE_A
    WHERE
    NOT EXISTS (SELECT ''X'' FROM TABLE_B where TABLE_B.USER_NAME =TABLE_A.ID_OPER)
    ) AND
    NOT EXISTS (SELECT ''X'' FROM TABLE_C where TABLE_C.wr = TABLE_A.CD_WR and
    TABLE_C.dist = TABLE_A.CD_DIST)
    AND
    TABLE_A.TS_STATUS >
    TO_DATE('''||tsAfter||''', '||'''MM/DD/YYYY HH24:MI:SS'')
    AND CD_STATUS Like ''%X''';
    OPEN rsResult FOR m_sql_string;
    END QRY_WR_STATUS_CHANGES;
    END P1;
    Thanks in advance.

    Thank you. I just tried adding such an exception block. It compiles and runs fine, but isn't trapping the error. I see the error returned in the results when I call the proc from SQL*PLUS, but can't seem to trap it in the code...it's like I need to check the contents of the OUT data for the error or something. Below is the modified code and then showing executing it and the results. Any further ideas are greatly appreciated.
    CREATE OR REPLACE PACKAGE P1
    AS
    TYPE CHCUR IS REF CURSOR;
    PROCEDURE QRY_WR_STATUS_CHANGES (tsAfter IN VARCHAR2, rsResult OUT CHCUR);
    END P1;
    CREATE OR REPLACE PACKAGE BODY P1
    AS
    PROCEDURE QRY_WR_STATUS_CHANGES(tsAfter IN VARCHAR2, rsResult OUT CHCUR)
    IS
    m_sql_string VARCHAR2(30000);
    BEGIN
    m_sql_string := 'SELECT TS_STATUS, CD_STATUS, CD_WR, RowId
    FROM TABLE_A
    WHERE
    NOT EXISTS (SELECT ''X'' FROM TABLE_B where TABLE_B.USER_NAME =TABLE_A.ID_OPER)
    ) AND
    NOT EXISTS (SELECT ''X'' FROM TABLE_C where TABLE_C.wr = TABLE_A.CD_WR and
    TABLE_C.dist = TABLE_A.CD_DIST)
    AND
    TABLE_A.TS_STATUS >
    TO_DATE('''||tsAfter||''', '||'''MM/DD/YYYY HH24:MI:SS'')
    AND CD_STATUS Like ''%X''';
    OPEN rsResult FOR m_sql_string;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('Error code is: Long postings are being truncated to ~1 kB at this time.

  • Questions on Receiving SNMP Traps

    Hi:
    - I have more questions on receiving SNMP traps:
    1) the OEM plug-in can receive traps now, but when I click the metric, I see:
    Error getting data for target test20. Exception: ORA-20216: ORA-06512: at "SYSMAN.EMD_MNTR", line 817 ORA-01403: no data found ORA-06512: at line 1
    - the push descriptor looks like:
    <PushDescriptor RECVLET_ID="SNMPTrap">
    <Property NAME="MatchEnterprise" SCOPE="GLOBAL">...</Property>
    <Property NAME="MatchGenericTrap" SCOPE="GLOBAL">6</Property> <Property NAME="MatchSpecificTrap" SCOPE="GLOBAL">31</Property> <Property NAME="MatchAgentAddr" SCOPE="INSTANCE">target_ip</Property>
    <Property NAME="EventsnChasFanIndexOID" SCOPE="GLOBAL">...</Property>
    <Property NAME="ContextsnChasFanDescriptionOID" SCOPE="GLOBAL">...</Property>
    <Property NAME="SeverityCode" SCOPE="GLOBAL">WARNING</Property>
    </PushDescriptor>
    - is the Key Property needed ?
    2) The alerts for some reason do not filter back to the all targets home page.
    - When I click the Home tab and goto to the 'All Targets' pane, I do not see the alert generated by the OEM plug-in.
    - What I am doing wrong ?
    3) Is it okay to receive traps with the metric usage set to either: HIDDEN or HIDDEN_COLLECT ?
    - Does this cause the errors I see in Q 1) ?
    Thanks
    John
    Edited by: user8826739 on Feb 23, 2010 7:05 AM

    Hi John,
    Can you post the full definition of the metric? You would need to use the Key property for each key column in the metric description.
    With the SNMP receivelet you can set up definitons for data points or alerts. I would assume (as I've never tried this ;) that if you set up the definition to be a data point, you would see data from the All Metrics page. To me, it wouldn't make sense for a metric that used the PushDescriptor SNMPTrap to have data to be viewed as the result of the SNMP trap coming is would be an alert. I will have to look into that. My gut reaction is that a metric with PushDescriptor SNMPTrap shouldn't even appear on the All Metrics page ...
    To be clear are you saying that you don't see the Warning number under "All Targets Alerts" increase by 1 when you SNMP trap is caught and alert is generated? When this occurs do you see the alert on the target instance homepage?
    In regards to HIDDEN and HIDDEN_COLLECT, I don't know what effect they would have on a metric defined for an SNMP trap to raise an alert. You definitely wouldn't want to use HIDDEN as this setting is for temporary metrics that are used in the caclulation of other metrics. HIDDEN metrics are not collected (or hence uploaded to the OMS) and don't appear in the UI. HIDDEN_COLLECT are collected, but do not show up in the UI and are not uploaded. I've never used this settings with SNMP trap metrics that are for alerts. If your metrics for the SNMP trap alerts do show up on the All Metrics page (I'd have to get something set up to look at this), then it could make sense to use the HIDDEN_COLLECT as the alert would still be generated, but the metric itself wouldn't be shown in the UI.
    Let me find out the expected behavior from someone on the agent team.
    Dave

  • My iphone 4s is trapped into recovery mode & i cant get my phone out of it!

    Recently I Buy A iPhone 4s.after 1 day use,i reallize that my phone have no panorama.so after that i take some picture and record a video.then i moved them into  my pc.but then i saw my picture quality is 5mp and video is 720p.then i inform to someone and he told me,'may be this is for your ios version.you should update your ios version 7.0.6 to 7.1.1.then i tried to update my phone..but updating&restoring was running then i get into sleep.after some time i woke up and saw my phone is trapped into recover mode..then i reconnect my device into itunes.but now itunes is showing me that my phone is iphone 4.but some time ago itunes showing me this is a 4s.then i take it to the iphone mechanic and he told me this phone wont be alright.this phone's mainboad is damage.then iii tried hard to turned my phone into normal mode..i saw every vedio on youtube,and i used every software to made my phone into normal mode.but nothiing is work on my phone...i download some .ipsw file of iphone 4 and 4s ios 7.1.1.i tried to restore my phone with shift key/button with ipsw file.but every time it cancelled when restore is 75% done and also everytime restore is cancelled when firmware is installing.and it says me "THIS PHONE CANT BE RESTORE.AN UNKNOWN ERROR OCCURED.(3194)"
    so i think my phone's firmware file is broken...or my phone is dead
    so if anybody is here,who can solve my problem, plz help to solve my problem
    i used my phone only 1 day after i bought it and i bought this phone with a big costs.
    THANK YOU!!

    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    Shahariar Khan wrote:
    "THIS PHONE CANT BE RESTORE.AN UNKNOWN ERROR OCCURED.(3194)"
    3194  = http://support.apple.com/kb/ts4451
    If that Article does not resolve it... then you have a problem.
    Perhaps a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is required..
    Be sure to make an appointment first...
    Note:
    That error message may be indicative of the Device being Hacked / jailbroken.... If this is the case then you are on your own.
    Unauthorized modification of iOS  >  http://support.apple.com/kb/HT3743

  • What is the minimum server layer OEM version supports SNMP trap reception ?

    Hi:
    - I have been trying to enable SNMP trap reception on an OEM plug-in.
    - I turned on debug channel for recvlets.snmp and saw:
    2009-10-16 16:07:42,808 Thread-3028552624 ERROR recvlets.snmp: Duplicate threshold : test900, oracle_guide, interfaces, status
    and
    2009-10-16 16:09:08,382 Thread-3021634480 INFO recvlets.snmp: Trap received is to convert Data Point
    2009-10-16 16:09:08,379 Thread-3021634480 INFO recvlets.snmp: Sending Data Point ...
    2009-10-16 16:09:08,379 Thread-3021634480 INFO recvlets.snmp: Listening for TRAP
    So, it looks like the OEM agent can receive traps but no data point or alert appears.
    And, the agent always issues an error about duplicate thresholds.
    - Does the agent have to be patched ?
    My agent is:
    Oracle Enterprise Manager 10g Release 5 Grid Control 10.2.0.5.0.
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.5.0
    OMS Version : 10.2.0.1.0
    Protocol Version : 10.2.0.0.0
    Agent is Running and Ready
    - on the server layer, the oms is:
    Oracle Enterprise Manager 10g Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Management Server is Up.
    Is a patch needed for OMS ?
    Should OMS be version 10.2.0.5.0 ?
    Thanks
    John
    Edited by: user8826739 on Feb 23, 2010 7:17 AM

    10.2.0.5 should be fine ...
    Dave

  • Verizon Cust Service Lied Now I'm Trapped

    Need advice but I think I have no other options.
    I used to have USB wireless 3G device, was already free of 2 year contract (already had for 3+ years, paying $60 per month plus taxes), and was in Best Buy one day and "conned" into thinking the Jetpack Hotspot was a better deal and better plan, saving me $10 per month.
    I purchased a Jetpack from BestBuy on 12/4. On 12/6 I was traveling and tried to use but battery died in the middle of a meeting where I was running presentations over the internet. Clearly reflected poorly on me. Realized the Jetpack was not going to work for me and I should go back to the 3G device I originally had.
    I called Verizon customer service on 12/15 to ask what the termination fee would be if I terminated service, because I had signed contract renewal for 2 years with the jetpack, but that it did not work for my situation. The Verizon Customer Service woman told me there was no fee and that actually I had until after the 1st of the year to return the device with no termination fee. I told her I got it at BestBuy and asked if that is where I should take it back and sher confirmed there would be no problem and that she would "make a note on my account."
    Did I mention I travel A LOT? That is why I needed a mobile wireless device. I was unable to get back to Best Buy until 12/26, but thought I was still okay to return the device and terminate my plan because I was within the timeframe that Verizon Customer Service told me.  Best Buy called Verizon and basically the customer service person told me they would not allow me to terminate contract without the term fee of $175.
    I spent 2 HOURS on the phone with Customer Service. I was "escalated" to Michael in Salt Lake City with Verizon Tech Support Escalation. He provided me 3 completely valueless options:
    1. Stay with the current jetpack for 2 years at $50/month
    2. Buy a 4G USB device for $39 and still be stuck for 2 years at $50/month
    3. Go back to original Pantech Wifi 3G device and original plan of $60/month, with caveat that I still am stuck in new 2 year agreement
    4. Terminate contract for $175.
    He told me that I was outside of the 14 day "ho hassle guarantee" - apparently if you are one day out then you get full hassle.
    In my opinion, I should not be paying any termination fee becuase I called with in the 14 day period.  Had I been told at that time when I originally called at day 11 that I had only 14 days then I would have gone directly to Best Buy to return it all and cancel (Even if it meant changing my travel plans).  But I was told that I had until the 4th of January, bascially 30 days.
    I explained this to Michael in Salt Lake City Verizon "Customer Service" and he was unsympathetic.  He said he would "provide feedback to the original person who told me that incorrect information" but that he could not do anything for me.
    He said that he felt it was so important for me to understand the options that he took the time to explain all this to me in the 2 hours we were on the phone - I appreciate that my time is so invaluable and that his time is so valuable that he spent it doing his job and explaining my "options".  He was kind enough to offer that we revert to my original plan of $60 per month with my original 3G device, but I would still be obligated to be under the 2 year extension of contract even though it would be as if I made no change. Oh how wonderful of Verizon to do this for me - trap me in a contract that benefits them for 2 more years of gouging me even though I was already outside my original contractual obligation having been with them 3+ years.
    So I ask the forum what you recommend?  I am trapped in a 2 year contract where I have to stay with Verizon for crappy service - I haver never had good customer service with them which is why all my 4 phone lines are with AT&T. I only have Verizon because I am forced with this wifi for traveling.  My one chance to get out is now blown and Verizon will not even work with someone who had an excellent account payment history for 3+ years.
    I ran the numbers and here is what it looks like:
    Option 1 Stay with current Jetpack for 2 years then dump Verizon forever - $1200 + taxes
    Option 2 Buy another 4G USB device for the "special price" of $39 and 2 year jail then dump verizon forever - $1239 + taxes
    Option 3 Go back to original Pantech 3G USB device and pay $60 per month still stuck in 2 year extension contract - $1260 + taxes
    Option 4 Terminate for $175
    I think in every option since I have been forever poisoned by Verizon Customer Service I will tell everyone I know to terminate service if they can. I already have one friend who is outside contract and has agreed to terminate his service.  I look forward to calling Michael in Salt Lake City Customer Service Escalation to let him know that I have a hand in terminating that friend's service, and will make it my goal to help as many others terminate as well. [Edited to comply with Terms of Service]
    Any others with a similar situation where a Verizon Customer Service person lying to you resulted in your having to suffer though fees or an unwanted contract extension?

    I would have taken the 4G and the $50 plan offer, for the same data amount as you had with the 3G $60 plan. And yes you would and should have a new 2 yr contract going this route. As for the Jetpack, I have no idea what that even is.
    That being said, I would have thought even USB modems and such would have fallen under the holiday return policy.
    Wireless Device/Accessory Return Policy
    You may return or exchange wireless devices and accessories purchased from Verizon Wireless within 14 days of purchase. A restocking fee of $35 ($70 for netbooks and tablets) applies to any return or exchange of a wireless device (excluding Hawaii).
    This return and exchange policy does not apply to customers who have purchased a Prepaid Plan.
    Purchases made between November 15 and December 28, 2011 may be returned or exchanged through January 15, 2012. All other provisions of Verizon Wireless’ Return & Exchange Policy continue to apply, including Restock Fee.

  • Can I set InDesign's built-in trapping amount?

    InDesign CS2 and CS3 here. I'm usually placing two-color art Illustrator files in InDesign because InDesign does a dependable job of trapping. The Output option to set trapping in InDesign works well, but now I have a job that is intricate art that could use less trapping to help preserve the two spot colors. Is there a control to set a lesser amount for trapping?

    double-click default in the Trap Presets panel and set the Trap Widththe measurement unit is determined by your ruler settings. Also, in case you haven't tried this, you can view traps on screen in Acrobat by outputting a PDF through Distiller. When you print the Postscript file, in the Output tab, set Color to In-RIP Separations, and Trapping to Application Built-In.

  • Creating SNMP Trap Monitors in 2012 R2

    Hello,
    For the past week or so  I have been attempting to create a MP for my company's UPSs to be monitored in SCOM 2012 R2. I have created a custom MP with custom datasources and objects. All seems to go according to the plan until I attempt to create a SNMP
    Trap monitor for those objects. I am able to verify that the device is discovered and is sending the traps successfully with a view. The problem seems to lie within the setup of the monitor. I have followed the steps as much as I can from this page http://technet.microsoft.com/en-us/library/hh563870.aspx
    to create a monitor that will be triggered by an incoming trap saying the UPS is on Battery Power.
    This is the initial or trigger event information received by SCOM:
    <EventData>
    <DataItem type="System.SnmpData" time="2014-07-03T08:48:07.6990732-07:00" sourceHealthServiceId="26DF02E5-DEA0-BED0-443B-3605A05D4790">
    <Source>10.51.85.40</Source>
    <Destination>127.0.0.1</Destination>
    <ErrorCode>1</ErrorCode>
    <Version>1</Version>
    <SnmpVarBinds>
    <SnmpVarBind>
    <OID>.1.3.6.1.2.1.1.3.0</OID>
    <Syntax>67</Syntax>
    <Value VariantType="19">17567220</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.6.3.1.1.4.1.0</OID>
    <Syntax>6</Syntax>
    <Value VariantType="8">.1.3.6.1.4.1.318.0.5</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.4.1.318.2.3.3.0</OID>
    <Syntax>4</Syntax>
    <Value VariantType="8">UPS: On battery power in response to an input power problem.</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.6.3.1.1.4.3.0</OID>
    <Syntax>6</Syntax>
    <Value VariantType="8">.1.3.6.1.4.1.318</Value>
    </SnmpVarBind>
    </SnmpVarBinds>
    </DataItem>
    </EventData>
    This is the event should signal that everything is operating normally once again.
    <EventData>
    <DataItem type="System.SnmpData" time="2014-07-03T08:48:12.9133769-07:00" sourceHealthServiceId="26DF02E5-DEA0-BED0-443B-3605A05D4790"><Source>10.51.85.40</Source>
    <Destination>127.0.0.1</Destination>
    <ErrorCode>1</ErrorCode>
    <Version>1</Version>
    <SnmpVarBinds>
    <SnmpVarBind>
    <OID>.1.3.6.1.2.1.1.3.0</OID>
    <Syntax>67</Syntax>
    <Value VariantType="19">17567730</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.6.3.1.1.4.1.0</OID>
    <Syntax>6</Syntax>
    <Value VariantType="8">.1.3.6.1.4.1.318.0.9</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.4.1.318.2.3.3.0</OID>
    <Syntax>4</Syntax>
    <Value VariantType="8">UPS: No longer on battery power.</Value>
    </SnmpVarBind>
    <SnmpVarBind>
    <OID>.1.3.6.1.6.3.1.1.4.3.0</OID>
    <Syntax>6</Syntax>
    <Value VariantType="8">.1.3.6.1.4.1.318</Value>
    </SnmpVarBind>
    </SnmpVarBinds>
    </DataItem>
    </EventData>
    You may notice that these traps are being sent as SNMP v1. I am unable to change that on the UPS so i have modified the monitors to account for that. Here is the code for the monitor:
    <UnitMonitor ID="UIGeneratedMonitorc2c65f3c85fe42f48ce8d2580c57bbae" Accessibility="Public" Enabled="true" Target="APC.MP.UPS" ParentMonitorID="Health!System.Health.AvailabilityState" Remotable="true" Priority="Normal" TypeID="SNL!System.NetworkManagement.SnmpTrapProvider.2SingleEvent2StateMonitorType" ConfirmDelivery="false">
    <Category>Custom</Category>
    <AlertSettings AlertMessage="UIGeneratedMonitorc2c65f3c85fe42f48ce8d2580c57bbae_AlertMessageResourceID">
    <AlertOnState>Warning</AlertOnState>
    <AutoResolve>true</AutoResolve>
    <AlertPriority>Normal</AlertPriority>
    <AlertSeverity>Error</AlertSeverity>
    </AlertSettings>
    <OperationalStates>
    <OperationalState ID="UIGeneratedOpStateId2750c1ab2cd14b4a8a8e9f4633eba0b0" MonitorTypeStateID="SecondEventRaised" HealthState="Success" />
    <OperationalState ID="UIGeneratedOpStateId5753748399984d08953c1a46895df99c" MonitorTypeStateID="FirstEventRaised" HealthState="Warning" />
    </OperationalStates>
    <Configuration>
    <FirstIP>$Target/Property[Type="SNL!System.NetworkManagement.Node"]/SNMPAddress$</FirstIP>
    <FirstVersion>1</FirstVersion>
    <FirstOIDProps>
    <OIDProp>.1.3.6.1.4.1.318</OIDProp>
    </FirstOIDProps>
    <FirstExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">SnmpVarBinds/SnmpVarBind[OID=".1.3.6.1.6.3.1.1.4.1.0"]/Value</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">.1.3.6.1.4.1.318.0.5</Value>
    </ValueExpression>
    </SimpleExpression>
    </FirstExpression>
    <SecondIP>$Target/Property[Type="SNL!System.NetworkManagement.Node"]/SNMPAddress$</SecondIP>
    <SecondVersion>1</SecondVersion>
    <SecondOIDProps>
    <OIDProp>.1.3.6.1.4.1.318</OIDProp>
    </SecondOIDProps>
    <SecondExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">SnmpVarBinds/SnmpVarBind[OID=".1.3.6.1.6.3.1.1.4.1.0"]/Value</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">.1.3.6.1.4.1.318.0.9</Value>
    </ValueExpression>
    </SimpleExpression>
    </SecondExpression>
    </Configuration>
    </UnitMonitor>
    I tried the following things while attempting to troubleshoot this issue:
    Leaving  First
    SnmpTrapProvider and Second
    SnmpTrapProvider blank while creating the monitor.
    Adding "" and also '' around the value as it is a string and perhaps that was the cause.
    Changing the First and Second SNMPTrapProvider to .1.3.6.1.6.3.1.1.4.1.0 since that is the specific OID I am looking for the value of.
    Reading every page of the internet and bashing my head on the keyboard.
     I am guessing that the issue will reside in the the monitor creation and definition, but I have not found anything that clearly describes how to fill out the SNMP Trap Monitor wizard given the trap info. Especially since the trap I am receiving does
    not seem to contain the usual OID with a common Int or string value.  Hopefully someone can provide assistance as I am nearing my wits end with this problem.

    Firstly, thank you Michael Skov, knowing that the First and Second SnmpTrapProvider or <FirstOIDProps> in the xml, needed to be blank got me pointed in the right direction. I figured I would come back and share my final working code snippet in case
    others run across a similar issue. 
    <UnitMonitor ID="UIGeneratedMonitorf9f671e5456c44fd807d6ec2bd09621d" Accessibility="Public" Enabled="true" Target="Disc!APC.Disc.UPS" ParentMonitorID="Health!System.Health.PerformanceState" Remotable="true" Priority="Normal" TypeID="NetworkManagement!System.NetworkManagement.SnmpTrapProvider.2SingleEvent2StateMonitorType" ConfirmDelivery="false">
    <Category>Custom</Category>
    <AlertSettings AlertMessage="UIGeneratedMonitorf9f671e5456c44fd807d6ec2bd09621d_AlertMessageResourceID">
    <AlertOnState>Warning</AlertOnState>
    <AutoResolve>true</AutoResolve>
    <AlertPriority>Normal</AlertPriority>
    <AlertSeverity>Warning</AlertSeverity>
    </AlertSettings>
    <OperationalStates>
    <OperationalState ID="UIGeneratedOpStateId8700c95344254f87a60c92d30d4a3953" MonitorTypeStateID="SecondEventRaised" HealthState="Success" />
    <OperationalState ID="UIGeneratedOpStateId7bf68c6cfe3d4faabe83e630781c7327" MonitorTypeStateID="FirstEventRaised" HealthState="Warning" />
    </OperationalStates>
    <Configuration>
    <FirstIP>$Target/Property[Type="NetworkManagement!System.NetworkManagement.Node"]/SNMPAddress$</FirstIP>
    <FirstVersion>1</FirstVersion>
    <FirstOIDProps />
    <FirstExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">SnmpVarBinds/SnmpVarBind[OID=".1.3.6.1.6.3.1.1.4.1.0"]/Value</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">.1.3.6.1.4.1.318.0.5</Value>
    </ValueExpression>
    </SimpleExpression>
    </FirstExpression>
    <SecondIP>$Target/Property[Type="NetworkManagement!System.NetworkManagement.Node"]/SNMPAddress$</SecondIP>
    <SecondVersion>1</SecondVersion>
    <SecondOIDProps />
    <SecondExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">SnmpVarBinds/SnmpVarBind[OID=".1.3.6.1.6.3.1.1.4.1.0"]/Value</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">.1.3.6.1.4.1.318.0.9</Value>
    </ValueExpression>
    </SimpleExpression>
    </SecondExpression>
    </Configuration>
    </UnitMonitor>

  • What does this alarm mean ....... hwStringMatch - HP Insight Management Agents Trap Alarm: Logical Drive Status Change: Slot 1, Drive: 2 ......... Status is now Predictive Failure

    Hi,
    I have received this trap from the Call Manager PUB server running version 7.1.5.31900-3
    hwStringMatch - cmaidad[5579]: Physical Drive Status Change: Slot 1 Port 2l Box 1 Bay 1. Status is now Predictive Failure
    I have checked the drive status via CLI and all drives show OK, both physical & logical
    Is there anywhere you can check what is causing this event and is it merely advising of a potential drive failure

    Hi
    Modern drives have embedded monitoring. Whilst the disk hasn't failed, something internally is telling the embedded monitoring that it may soon fail - it's running a little hot, having excessive write errors, latency is drifting up... something subtle is going wrong.
    It could be caused by a firmware error... but I'd take it at face value.
    It might have failed by the time you read this, or it might work fine for another 20 years.
    Either way - when I was a server admin I would get any disk with a predictive failure swapped out immediately. No point waiting for it to fail - even on a RAID system when a disk fails although you don't lose data you have your trousers down as a coincidental second failure would ruin your day!
    Regards
    Aaron

  • Implement Chasm & Fan Trap at Universe level

    Hi All,
    Could anyone provide me some idea about 'how to implement Chasm & Fan Trap at Universe' practically??
    Thanks for ur time & help.
    Regards,

    Hi
    We cannot specify the real time scenarios here, search the SDN, forumtopic and many other site... there are lot of posts on that and solutions for that.
    for a quick glance
    These will occur at universe level while joining the tables.
    chasm trap :  The Chasm trap occurs when 2 u201Cmany-to-oneu201D joins converge on a single table, which has not been resolved by any context. The most common problem caused by a chasm trap is fetching more data than expected.
    Fan Trap:A Fan Trap is a join between 3 tables where a one-to-many join links the first table to the second and another one-to-many join links the second table to the third. Inflated results are obtained when fields from all 3 tables are included in the query.
    go trough these urls  it may help you out
    http://www.forumtopics.com/busobj/viewtopic.php?t=174405&sid=b10e205712fb102dae312173957b19f2
    http://davidlai101.com/blog/2008/11/18/preventing-chasm-and-fan-traps/
    http://biguru.wordpress.com/2008/05/01/its-all-in-the-universe-handling-chasm-and-fan-traps/
    Hope this will help you!!!!!!!!!!!
    Regards,
    Rajesh

Maybe you are looking for

  • Buning Problems Error Code 4450 and 4280...what should I do????

    I tried to lower the speed as I read in other postings and it did not work. What now. Microsoft Windows XP Professional Service Pack 2 (Build 2600) Hewlett-Packard HP Pavilion dv2000 (RG408UA#ABA) iTunes 7.1.1.5 CD Driver 2.0.6.1 CD Driver DLL 2.0.6.

  • Problem with WindowClosing() method

    Hello everyone, I have some problem with WindowClosing() method, in which I gave options to quit or not. Quit is working fine but in case of Cancel, its not returning to the frame. Can anyone help me ....Here is my code import javax.swing.*; import j

  • My NEF-files won't open with CS6 (osx 10.9.5) anymore...

    In earlier days it was posiible to open my NEF-files (Nikon d300) with PS. It is not posiible anymore. Any suggestions?

  • CBO picking incorrect indexes or doing Full Scans ( table/indexes)

    Database version - 10.2.0.4 OS : Solaris 5.8 Storage: SAN Application : PeopleSoft Financials DB size : 450 gb DB server : 12 CPU ( 900 Mghz each ), 36 GB RAM ASMM - sga_target_size = 5 gb Locally managed tablespaces - MANUAL - db_file_multiblock_rea

  • Can i tell adobe bridge to look only in certain folders?

    I don't want or need Adobe Bridge looking through my entire computer for stills. Is there a way to tell Bridge CC to look only in certain folders. Let's say that I have a folder called "stills" that is part of a documentary film media folder. I just