Alert log.xml or alert.log errors do not appear in EM

Little puzzled here. Using 11.1.0.6 to test if alert errors will appear on 11.1.0.1 EM Grid pages. Simple ORA-1653 triggered via sql insert and then waited and waited. Nothing. I can use EM to open log file and to display the errors but no alerts are flagged on any of the pages.
Is this a another bug?
Roman

You can read all about how the 11g alert log is monitored in: Monitoring 11g Database Alert Log Errors in Enterprise Manager [ID 949858.1]
Yes, it describes some bugs (and workarounds) too.
Eric

Similar Messages

  • High redo, log.xml and alert log generation with streams

    Hi,
    We have a setup where streams and messaging gateway is implemented on Oracle 11.1.0.7 to replicated the changes.
    Until recently there was no issue with the setup but for last few days there is an excessive amount of redo and log.xml and alert log generation, which takes up about 50gb for archive log and 20 gb for the rest of the files.
    For now we have disabled the streams.
    Please suggest the possible reasons for this issue.
    Regards,
    Ankit

    Obviously, as no one here has access to the two files with error messages, log.xml and alert log, the resolution starts with looking into those files
    and you should have posted this question only after doing this.
    Now no help is possible.
    Sybrand Bakker
    Senior Oracle DBA

  • On certain sites, some lines have the lower half missing. Changing the font or its size does not help. The error does not appear with Iceape or Chromium.

    On some sites certain lines appear with the bottom half missing, as if obliterated. Changing the font or its size does not help. The error does not appear with Iceape or Chromium.

    I looks that the whole line doesn't fit in the container, so the bottom part is cut off. The usual cause is that a font is used that takes more vertical space, so any increase or changes from the font in what the website prescribes can cause this issue. I've seen web pages that were even affected by changing the minimum font size from none to 1 (!). If you do not have the font installed that the website specifies then Firefox will fallback to another (default) font that may have different dimensions.

  • Yahoo loads log in click mail 404 error page not found why?

    I upload yahoo site, log in, click 'mail' and am given a '404' error; page not found... This does NOT happen on Chrome or IE, but the pages of yahoo on IE suck and Chrome won't let me have a single toolbar even though there are all sorts of claim you can have one... (sorry) WHY doesn't FIREFOX let yahoo mail load? I LOVE FIREFOX and ALL THINGS MOZILLA, but after I ran into crappy-sappy babylon... it put a toolbar on IE, CHROME and MOZILLA... I had to delete everything associated with them all, get toolbar sweepers and better uninstall programs to weed their junk out and now MOZILLA, FIREFOX, rather warns no one and makes me submit this rather than help

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • DTW Error file not  appearing

    Hi All,
       I am working with SAP B1205B patch level 41 and DTW version 2005.0.19. The DTW is running fine but when there is any error in importing the error details is not featuring in the log files. The log files is blank. after every run. What can be the reason. Please suggest.

    hi debraj,
    Go thru SAP Note
    Note 711538 - Cannot save map rule/Cannot see the error message after imp
    Summary
    Symptom
    1. During the import : cannot save the map rule after changing it
    2. After the import cannot  see the error messages and no log file has been
    created.
    Other terms
    Data Transfer workbench, DTW, log file, error message, map rules, SAP Business One,save
    Reason and Prerequisites
    Specific Solution
    Solution
    The read only box of the dtw.mdb file have to be unchecked.
    To do so, please perform the following :
    1. Go to your data transfer workbench folder, find the dtw.mdb.
    2. Right click on the file Select properties, uncheck the read only file.
    3. Press OK
    Header Data
    Release Status: Released for Customer
    Released on: 17.07.2008  14:15:32
    Priority: Recommendations/additional info
    Category: Installation information
    Primary Component: SBO-DTW Data Transfer Workbench
    Secondary Components: SBO-SH-DTW Data Transfer Workbench
    Affected Releases
    SBO-DTW 60 6.2 6.5  
    SBO-DTW 2004 2004 2004  
    SBO-DTW 2005 2005 2005  
    SBO-DTW 2007 2007 2007
    Hope problem will be solved.
    Jeyakanthan

  • ?xml version="1.0"? tag not appearing as first characters in document

    Hi,
    JSP below successfully creates a XML document but it includes a blank line before the <?xml version="1.0"?> tag.
    This causes my PL/SQL to return a "ORA-20100: Error occurred while parsing: PI names starting with 'xml' are
    reserved." error when using the XMLPARSER package.
    I am outputting the XML to IE5.0 but even if I do a SYSTEM out I get the same blank line before the initial tag.
    There are posts on here that confirm the PI error is caused by the tag not being the first characters in the document, but no solution/fix is provided.
    Any ideas much appreciated.
    JSP Code
    <%@ page import="java.sql.*, oracle.jbo.*, oracle.jdeveloper.cm.*, oracle.jdbc.*,oracle.xml.sql.query.*" %>
    <%String driver="oracle.jdbc.driver.OracleDriver";
    Driver d = new oracle.jdbc.driver.OracleDriver();
    String dbURL="jdbc:oracle:thin:@localhost:1521:mydb";
    String login="i2k";
    String password="fred";
    Connection cn = null;
    cn = DriverManager.getConnection(dbURL,login,password);
    // SQL Statement from URL Parameters
    String sql = request.getParameter("sql");
    if(sql == null){
    sql = "select * from vfi_trans";
    // Create SQL-to-XML Handler
    OracleXMLQuery q = new OracleXMLQuery(cn, sql);
    // Use <TransactionList> as document element for Rowset
    q.setRowsetTag("TransactionList");
    // Use <Transaction> for each row in the result
    q.setRowTag("Transaction");
    // set encoding
    q.setEncoding("iso-8859-1");
    // ensure lower case element names
    q.useLowerCaseTagNames();
    // Generate XML results and write to output
    String xmldoc = q.getXMLString();
    out.println(xmldoc.trim());
    //System.out.println(xmldoc.indexOf("\n"));
    cn.close();%>
    PL/SQL
    PROCEDURE XML_HANDLER2 IS
    -- MODIFICATION HISTORY
    -- Person Date Comments
    vfiURL VARCHAR2(100);
    parser xmlparser.Parser;
    vfiXML xmldom.DOMDocument;
    transactions xmldom.DOMNodeList;
    transactions_found NUMBER;
    curNode xmldom.DOMNode;
    textChild xmldom.DOMNode;
    v_itrans_site vfi_trans.itrans_site%TYPE;
    BEGIN
    dbms_output.put_line('Integrator 2000 Transactions');
    -- This is the URL to browse for an XML-based vfi feed of stories on XML
    vfiURL := 'http://10.1.1.111:7070/i2k25_html/ShowQuery.jsp?sql=select%20*%20from%20vfi_trans';
    -- Set the machine to use as the HTTP proxy server for URL requests
    http_util.setProxy('MYPROXY');
    -- Parse the live XML vfi feed from Moreover.com by URL
    parser := xmlparser.newParser;
    vfiXML := xml.parseURL( vfiURL );
    xmlparser.freeParser(parser);
    -- Search for all <headline_text> elements in the document we recieve
    transactions := xpath.selectNodes(vfiXML,'/TransactionList/ITRANS_ID');
    -- Loop over the "hits" and print out the text of the title
    FOR j IN 1..xmldom.getLength(transactions) LOOP
    -- Get the current <headline_text> node (Note the list is zero-based!)
    curNode := xmldom.item(transactions,j-1);
    -- The text of the title is the first child (text) node of
    -- the <headline_text> element in the list of "hits"
    -- textChild := xmldom.getFirstChild(curNode);
    v_itrans_site := xpath.valueof(curNode, '.');
    dbms_output.put_line('('| |LPAD(j,2)| |') '| | v_itrans_site);
    END LOOP;
    -- Free the XML document full of vfi stories since we're done with it.
    xml.freeDocument(vfiXML);
    EXCEPTION
    WHEN OTHERS THEN
    RAISE;
    END; -- Procedure
    null

    Charles,
    I believe that the blank line is caused by the JSP engine when it strips out the '<%@ page import...>' (replace bracket with brace) statement. God (or at least Larry E) forgive me for posting a link at IBM, but this article speaks to your issue:
    http://www-106.ibm.com/developerworks/library/j-dynxml.html?dwzone=ibm
    Maybe you need to put the <?xml?> tag in the jsp itself and strip it out of your xmldoc before outputting it.
    Good luck.

  • Transport error: Datasource not appearing in PROD

    Hi gurus
                Regards.I Transported a CL(Classification datasource) from DEV to PROD.But the import ended with a (class 4)warning ;
    ABAP DICTIONARY ACTIVATION : WARNING (4)
    Following objects not activated/deleted or activated/deleted w. war
    Table ZOXDEV0110 was activated with warnings
    (W- Enhancement category for include or subtype missing )
          Final log
    *End phase  002 *****************************************************
    Hence am unable to see them in RSA6 in PROD...Would appreciate ur valuable inputs on this...
    Manythanks
    Arun

    Hi guys
              The problem is solved..
    The particular Datasource was locked in Identical Request(found out that in RSA6 - Datasource - Object Directory - Lock overview)..Then unlocked them DS in SE03.Deleted the old request and Now assgnd the DS to a New Request and Transported.Its seated fine,this time around in PROD..
    Cheers
    arun

  • PO_CUSTOM_PKG - Error message not appearing while creating dist line

    Hi,
    We are trying to incorporate business logic using the POR_CUSTOM_PKG. Where as we have a requirement to add custom validations at the time of defaulting the requisition distributions. We are using PROCEDURE custom_default_req_dist for this purpose. however if any validation fails we need to display error message and we are not able to see the error message even after setting the result_code t0 2
    Can someone let us know what may be the problem or how to resolve this?
    Thanks
    Venkatesh

    Hi,
    You need to use "custom_validate_req_dist" procedure in order to perform any validation in the requisition distributions data in iProcurement and display appropriate error messages.
    Thanks,
    PS.

  • Hard disk error, HDD not appearing in bios

    My laptop HP Envy15  fails to load Windows and displays boot device not found. The HP UEFI diagnostics for hard disk failed the Short DST test with failure code U0EDBK-6Q66G1-MFGJXG-60U003. Does this mean I have to replace my hard drive? My laptop's product ID is E6G06PA#UUF and I have Win8 -64 installed on it upgarded to 8.1. All this started to happen when I copied recovery drive to USB and deleted recovery drive on my machine to increase space..... my machine started freezing and crashed...... now even chkdsk, recovery or reset with new partition is not working.....though if back up usb is connected and if I go to restore system through UEFI  I can see all Partitions........ where is problem and what should i do???? plz plz plz help...
    Thanks,
    Dr bilal ashiq

    Hi,
                 The above failure ID refers to Hard Disk 1 Quick Test Failure. You have to replace the Hard disk drive. If the laptop is under warranty, then you can contact HP Support to get the Hard disk drive replaced. Also you have to reinstall the Operating System on the new Hard disk drive using recovery disk.
    "I work for HP."
    Please click the "White Kudos" star to say thanks for helping.
    Please mark "Accept As Solution" if my help has solved your problem.

  • Error: Could not resolve s:states to a component implementation.

    So I am trying to setup states on a Flex application I'm building, but it doesn't seem to want to compile. I get this error:
    $ ./build.sh
    Loading configuration file /Applications/Adobe Flash Builder 4/sdks/4.1.0/frameworks/flex-config.xml
    uploader.mxml(24): Error: Could not resolve <s:states> to a component implementation.
        <s:states>
    Here is my build command nothing special ...
    $ cat ./build.sh
    #!/bin/bash
    mxmlc -output bin/uploader.swf src/uploader.mxml
    I have a class that extends the Spark application like so ...
    package com.uploader.controllers
        import spark.components.Application;
         dynamic public class FlashUploader extends Application
    Then in my main application mxml file I use it like so ...
    <?xml version="1.0" encoding="utf-8"?>
    <c:FlashUploader xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:v="com.uploader.view"
        xmlns:c="com.uploader.controllers.*"
        minWidth="709" minHeight="400"
        skinClass="com.uploader.skins.UploaderApplicationSkin">
        <fx:Style source="styles.css" />
        <!-- states -->
        <s:states>
            <s:State name="default" />
            <s:State name="startup" />
            <s:State name="uploading" />
            <s:State name="normal" />
        </s:states>
    </c:FlashUploader>
    Now when I try to compile I get the states error. I've found several examples and even made a dummy app just using the spark application and it compiles fine. Not sure if I'm doing anything weird here but the few other flex devs I know don't seem to see anything wrong with what I'm doing that could cause this.

    When you define an object using a namespace you have to use the same namespace for its properties, so you will want to use "<c:states>" instead of "<s:states>" in this case.

  • "Budget Exceeded" error not appearing at the time of changing PR but appearing at the time of PO change.

    Dear All,
    At the time of PR value change after creation of PO budget exceeded error is not appearing even though the PR value exceeds the budget. But at the time of changing the same value in PO, budget exceeded error is appearing.
    List of steps:
    PR created.
    PR released
    PO created with reference to PR and released.
    PR value changed to a value more than the available budget - No budget exceeded error.
    PO value changed in accordance with the PR - System throwing the budget exceeded error.
    Now the issue is why the system bypassed the budget exceeded error at the time of PR value change and only giving the error at the time of PO value change. Also, we observed that while changing the quantity in PR which results in exceeding budget, system is giving the error. But while changing the value system is not giving the budget exceeded error.
    Your inputs will be highly appreciated. Thanks in advance.

    Hello Saurabh,
    Thank you for your inputs. Below is the output of CJI5.
    Ref,Doc Category  Debit Date     Oty       Object    Cost Elem.   Val/CO Area Crcy   Total Qty.     UM
    PREQ                  28.05.2014    WBS     XXXXXX    XXXXXX           0.00                         0            EA
    POrd                    28.05.2014    WBS                                       14,000.00                1000          EA
    From the above output i think system is not capturing the PR commitment. I'm not sure as i'm basically into MM and  dont know much about PS.
    Why the system is stopping with budget exceeded error at the time of PR creation and not giving any error while changing the PR value after PO creation. System is giving budget exceeded error if quantity is changed in PR. Please explain the standard system behavior and suggest how to enable control at the time of PR value change.
    Thanks in advance.

  • UME LDAP Data - XML file not appearing

    Hi,
    I have configured the readonly ADS with DB for the user authentication. Now I want to restore back to the default datasource configuration (dataSourceConfiguration_database_only.xml). But in the dropdown box in the Configtool >> UME LDAP data under the "Directory Security" tab, I am not able see the config XML file for the DB only. I tried uploading the file, but its saying file already exists. After this I tried deleting the fils from the cluster_data\server\persistent\com.sap.security.core.ume.service and then uplaoded the XML file. Still this is not appearing in the List of Datasources available.
    Can you please let me know how shall I revert the Datasouce to DB only?
    Regards,
    Debasis

    Hi,
      Go to ConfigTool -> Global Server Configuration -> Services -> com.sap.security.core.ume.service.
    You can change the value of ume.persistence.data_source_configuration to dataSourceConfiguration_database_only.xml.
    Regards,
    Siva
    P.S: Award points if you find this useful.

  • What is the point of XML formatted alert log in 11g?

    DB version: 11.1.0.6.0
    OS : RHEL 5
    What is the point of have XML formatted alert log in 11G?
    When i tried to open in Internet Explorer
    Only one top level element is allowed in an XML document. Error processing resource 'file:///D:/Work/FILES/log.xm...
    <msg time='2011-01-27T19:42:53.484+08:00' org_id='oracle' comp_id='rdbms'I got a similair error with FireFox. How is the XML alert log file used in diagnosis?

    It is used by the ADRCI command line utility:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/adrci.htm#BGBBBBEA

  • Errors reported in alert log file regarding redo log files

    Hi,
    In my database i see the following entries regarding the redo log files frequently.
    Thread 1 advanced to log sequence 88
    Current log# 3 seq# 88 mem# 0: D:\ORACLE\PRODUCT\10.2.0\ORADATA\PELICAN\REDO03.LOG
    Thread 1 advanced to log sequence 89
    Current log# 1 seq# 89 mem# 0: D:\ORACLE\PRODUCT\10.2.0\ORADATA\PELICAN\REDO01.LOG
    Thread 1 cannot allocate new log, sequence 90
    Checkpoint not complete
    I have 3 redo log files of 50MB each. My database is 10g.
    What is the reason?
    What do i need to do ?
    Thanks.

    Hi,
    It is clearly stated that checkpoint is not complete. Thats why it could not allocate new sequence number to group 1.
    We can understand that your redo log group size is insufficient. or increase the number of redo log groups.
    Just test adding one more redo log group or test by increasing the size of redo log groups.

  • Error in the log.xml

    Dear oracles gurus,
    cannot understand the log file which has been generate when I start the listener I start the listener doing this
    [root@rac1 admin]# su - oracle
    [oracle@rac1 ~]$ lsnrctl start
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 07-OCT-2007 02:55:15
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    System parameter file is /u01/app/oracle/product/11.1.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/diag/tnslsnr/rac1/listener/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rac1.westernsolution.co.uk)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    Start Date 07-OCT-2007 02:55:17
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/11.1.0/db_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/diag/tnslsnr/rac1/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=rac1.westernsolution.co.uk)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    [oracle@rac1 ~]$
    the show that the listener is connected but infact their are no listener because when I check my log.xml it says
    <msg time='2007-10-07T02:41:05.792+01:00' org_id='oracle' comp_id='tnslsnr'
    type= 'UNKNOWN' level='16' host_id='rac1.westernsolution.co.uk' <----------------
    host_addr='192.168.122.1'>
    <txt>07-OCT-2007 02:41:05 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=rac1.westernsolution.co.uk)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=listener)(VERSION=185599488)) * status * 0
    </txt>
    </msg>
    I really do not understand why it says 'UNKOWN' . I think I have leave a mistake here.
    to confirm that my listener is not working I have created a database link and the result are as follows
    root@rac1 admin]# sqlplus
    bash: sqlplus: command not found
    [root@rac1 admin]# su - oracle
    [oracle@rac1 ~]$ sqlplus
    SQL*Plus: Release 11.1.0.6.0 - Production on Sun Oct 7 03:03:19 2007
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Enter user-name: system/manager
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from emp@local;
    select * from emp@local
    ERROR at line 1:
    ORA-12541: TNS:no listener
    SQL>
    Please any body can help me to find out what done wrong with the listener by observing the out I have paste above
    Regards
    sallil chudoory

    please close this tar I got the solutionLOL -
    This was not a TAR. This was a discussion with the volunteers (mostly non-Oracle employees at that) who use Oracle and are willing to help others.
    If this was a TAR, you would have been paying someone for the solution.

Maybe you are looking for

  • Poor reception on Treo Pro

    My wife's Treo Pro gets terrible reception in places where the reception on my Palm Pre is fine. Is there anything she can do to improve reception and stop dropping calls? What is the latest firmware/software that she should be on? Post relates to: P

  • Will my friend be able to use voice to text on her iphone 4 after upgrading to IOS 5?

    My friend thought she would have the ability to use voice to text message on her 4 after upgrading to IOS 5.  Will she be able to?

  • Premiere Pro CS3 having trouble with 24" monitors

    Can anyone tell me anything about using a 1920 X 1200 resolution with CS3 products?  I try to open PPro CS3 on my new 24" monitor and it crashes.  I have a 768Mb Nvidia Graphics card and the latest drivers installed.  I've tried resetting the resolut

  • Adobe Form Translation : Text Fields

    Hi All, I am trying to translate Type : Textfield in Adobe using SE63. Type: Text  is translated but not Type : TextField. any suggestion why this is not happening or is this the  way SAP is built for Translations in Adobe forms. Thanks, Tk.

  • Joining Two Tables based on Conditions.

    Hi All, i would like to join two tables emp and dept with conditional join like for example: select emp.column1............... left outer join DEPT ON if Dept.column1='A" then emp.column1=dept.column1 else emp.column2=dept.column3 i know that bu usin