Trapping ora- errors in alert.log

hello everyone,
A classical question that I think every DBA has encountered.
We have about 40 oracle database servers, some with 9i, others with 10g, still others with both. Some on Linux, others on Solaris.
My question is, how to trap ora- errors in the alert.log of these database and having them being sent as an email.
It's not an easy question to answer, I know. But I'd like to get ideas from your experiences in implementing the same thing in your environments.
Many thnx.
Hiruya

Hi,
this let you look for errors :
utl_file.get_line(vInHandle, vNewLine);
IF vNewLine like ('%ORA-%') then
Then this let you to mail the errors :
utl_smtp.mail
Here is my complete script :
SET SERVEROUT ON
DECLARE
c utl_smtp.connection;
vInHandle utl_file.file_type;
vNewLine VARCHAR2(250);
vMessage VARCHAR2(250);
I pls_integer := 0;
LC$Fic_in Varchar2(128) := 'db1ALRT.LOG'; -- a adapter sur votre configuration
LC$Dir_in Varchar(30) := 'C:\oracle\admin\db1\bdump';
PROCEDURE send_header(name VARCHAR2, header VARCHAR2) AS
BEGIN
utl_smtp.write_data(c,name ||':'|| header || UTL_TCP.CRLF);
END;
BEGIN
vInHandle := utl_file.fopen(LC$Dir_in, LC$Fic_in, 'R');
LOOP
BEGIN
utl_file.get_line(vInHandle, vNewLine);
IF vNewLine like ('%ORA-%') then
vMessage:=vMessage||chr(10)||vNewLine;
END IF;
EXCEPTION
WHEN OTHERS THEN
EXIT;
END;
END LOOP;
utl_file.fclose(vInHandle);
-----------------------SEND A MAIL---------------------------
c := utl_smtp.open_connection(‘smtpserver’,25);
utl_smtp.helo(c, ‘something.com');
utl_smtp.mail(c, [email protected]');
utl_smtp.rcpt(c, ‘[email protected]');
utl_smtp.open_data(c);
send_header('From', '"someone" <[email protected]>');
send_header('To', '"Recipient" < [email protected] >');
send_header('Subject', 'DB1 ERREUR ALERT LOG');
utl_smtp.write_data(c, UTL_TCP.CRLF ||vMessage);
utl_smtp.close_data(c);
utl_smtp.quit(c);
EXCEPTION
WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
BEGIN
utl_smtp.quit(c);
EXCEPTION
WHEN utl_smtp.transient_error
OR utl_smtp.permanent_error THEN
NULL;
END;
raise_application_error(-20000, SQLERRM);
END fopen;
/

Similar Messages

  • ORA- errors in alert log file

    I wanted to know when the ORA- errors are reported into the alert.log file?
    And which tye of errors are reported into it?
    And if i wanted to log all the ORA-errors in the alert log then is there any setting for that?

    You can find the type of errors reported in the link above.
    Also, you maynot like to log ORA-00942: table or view does not exist, ORA-00904: : invalid identifier type of errors in alert.log - right? You may want to research at setting up events for generating trace files on specific error numbers you are looking at. That might resolve your problem - hth.

  • Ora Errors in Alert Log:ORA-27508, ORA-27507, ORA-27300, ORA-27301

    Hi All,
    I have a Solaris 5.9 machine with Oracle 9.2.0 installed on it. But the connectivity to the database is lost intermittently.
    I am getting the below mentioned message in the Alert Log:
    ORA-27508: IPC error sending a message
    ORA-27507: IPC error disconnecting from a port
    ORA-27300: OS system dependent operation:DIS: NCON: connect failed: cnh 0 failed with status: 134
    ORA-27301: OS failure message: Transport endpoint is not connected
    ORA-27302: failure occurred at: skgxpdis
    ORA-27303: additional information: DIS: NCON: connect failed: cnh 0x1039208e8, rqh 0x10391bfb8
    After searching a lot on various forums, I could not get any resolution to the above errors.
    Could someone please help me out with this issue.
    Thanks a lot in advance.

    This was already clear from the initial error.
    Your interconnect is functioning badly.
    You need to address the errors 27300 and 27301.
    Sybrand Bakker
    Senior Oracle DBA

  • Receiving Alerts on ORA- error in Alert Log File

    Hi,
    I am using 10.2.0.5 OEM grid control and same versioned agent on my database servers. I have configured the alert email notification if there is any ORA- error message in my alert log file. The metric i selcted for this is "Generic Alert Log Error Status". In notification email, i see only the message that there is generic error message in the alert log file. Is there any way to set this notification so that i receive the exact ORA- error message in my alert notification email if there is any kind of ORA- error found in my alert log file?
    Thanks
    Salman

    Please look into the Metalink Note: 458605.1
    Subject: Receiving "Clear" Notifications Unexpectedly for 'Generic Alert Log Error Status' Metric

  • ORA-3136 error in alert log file(EBS R12)

    I have found ora-3136 alert log error in ebs r12 instance Can any one help on this error. Alert log continuously write this error. Below is the error i found.
    Fatal NI connect error 12170.
      VERSION INFORMATION:
            TNS for Linux: Version 11.1.0.7.0 - Production
            Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
            TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
      Time: 07-NOV-2013 18:33:49
      Tracing not turned on.
      Tns error struct:
        ns main err code: 12535
    TNS-12535: TNS:operation timed out
        ns secondary err code: 12606
        nt main err code: 0
        nt secondary err code: 0
        nt OS err code: 0
      Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=172.17.100.108)(PORT=60495))
    WARNING: inbound connection timed out (ORA-3136)

    Does this affect the functionality of the application?
    Do you get any errors when opening forms or self-service pages?
    Please see:
    ORA-01403 and FRM-40735 error occur while opening any forms (Doc ID 1358117.1)
    Troubleshooting ORA-3135/ORA-3136 Connection Timeouts Errors - Database Diagnostics (Doc ID 730066.1)
    ORA-3136/TNS-12535 or Hang Reported for Connections Across Firewall (Doc ID 974783.1)
    Thanks,
    Hussein

  • ORA-16009 Error in Alert Log

    Hi DBAs,
    I saw the error ORA-16009 in alert log file. The database version is 10.2.0.3 configured with Physical standby on AIX 6.1 . The error is coming in alert log for a long time , I beleive after a swithover to Standby and switch back to Primary.
    But I see the log from Primary to Standby are being applied and MRP is working fine on Standby Site.
    I am posting the error message from alert log and trace file.
    -------- Message in alert.log --------------
    --Connected User is Valid
    RFS[61129]: Assigned to RFS process 1511478
    RFS[61129]: Database mount ID mismatch [0x8afdb574:0x8afd830b]
    RFS[61129]: Client instance is standby database instead of primary
    RFS[61129]: Not using real application clusters
    Fri May 8 22:32:57 2009
    Errors in file /oracle/admin/DBSID/udump/DBSID_rfs_1511478.trc:
    ORA-16009: remote archive log destination must be a STANDBY database/oracle/admin/DBSID/bdump
    HOST [DBSID]-> May 8 22:33:52 hostname daemon:err|error ltid[933986]: Remote scan failed on host HOST, drive IBMULTRIUM-TD25, Host is not the scan host for this shared drive (304)
    ----------------- Trace File with complete detail of the Error -----------------------------------
    /oracle/admin/DBSID/udump/DBSID_rfs_1511478.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning and Data Mining options
    ORACLE_HOME = /oracle/product/10.2.0/db_1
    System name: AIX
    Node name: hostname
    Release: 3
    Version: 5
    Machine: XXXXXXX
    Instance name: DBSID
    Redo thread mounted by this instance: 1
    Oracle process number: 19
    Unix process pid: 1491066, image: oracleDBSID@hostname*** SERVICE NAME:(DBSID.DOMAIN.COM) 2009-05-08 22:31:57.314
    *** SESSION ID:(1094.21412) 2009-05-08 22:31:57.314
    Detected dead process 1491030; subsuming V$MANAGED_STANDBY slot
    *** 2009-05-08 22:31:57.318 61287 kcrr.c
    RFS[61128]: Database mount ID mismatch [0x8afdb574:0x8afd830b]
    *** 2009-05-08 22:31:57.318 61287 kcrr.c
    RFS[61128]: Client instance is standby database instead of primary
    *** 2009-05-08 22:31:57.318 61287 kcrr.c
    RFS[61128]: Not using real application clusters
    ORA-16009: remote archive log destination must be a STANDBY database
    Please advise and suggest,
    Thanks
    -Samar-

    I have the follow setting for log_archive_dest_2 on Primary and standby which seems to be OK but above mention note which is for Oracle 9i server suggesting to disable the remote archiving on the standby database. Also I am using ASYNC option for log transport.
    At Primary:
    SQL> show parameter log_archive_dest_2
    NAME TYPE VALUE
    log_archive_dest_2 string SERVICE=STDBY LGWR ASYNC REOPEN=60 DB_UNIQUE_NAME=STDBY
    At standby:
    SQL> show parameter log_archive_dest_2
    NAME TYPE VALUE
    log_archive_dest_2 string SERVICE=PRI LGWR ASYNC REOPEN=60 DB_UNIQUE_NAME=PRI
    Thanks
    -Samar-

  • Getting error in alert log

    HI ,
    I am getting error in alert log can anybody help me out to solve this issue.
    Thu Dec 01 11:54:49 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_4717.trc:
    ORA-07445: exception encountered: core dump [mutex_lock_impl()+124] [SIGSEGV] [Address not mapped to object] [0x000000005] [] []
    ORA-29282: invalid file ID
    Thu Dec 01 11:55:03 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_4600.trc:
    ORA-07445: exception encountered: core dump [ksmpgd_init_ctx()+4] [SIGSEGV] [Address not mapped to object] [0xFFFFFFFF7FFDC000] [] []
    Thu Dec 01 11:55:03 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_4697.trc:
    ORA-07445: exception encountered: core dump [ksmpgd_init_ctx()+4] [SIGSEGV] [Address not mapped to object] [0xFFFFFFFF7FFDE000] [] []
    Thu Dec 01 11:59:07 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_4990.trc:
    ORA-07445: exception encountered: core dump [mutex_lock_impl()+124] [SIGSEGV] [Address not mapped to object] [0x000000005] [] []
    Thu Dec 01 12:04:03 IST 2011
    Beginning log switch checkpoint up to RBA [0x312e.2.10], SCN: 14839542695
    Thu Dec 01 12:04:03 IST 2011
    Thread 1 advanced to log sequence 12590 (LGWR switch)
    Current log# 9 seq# 12590 mem# 0: /log1/PROD/log09a.dbf
    Current log# 9 seq# 12590 mem# 1: /log1/PROD/log09b.dbf
    Thu Dec 01 12:05:54 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_5596.trc:
    ORA-07445: exception encountered: core dump [ksmpgd_init_ctx()+4] [SIGSEGV] [Address not mapped to object] [0xFFFFFFFF7FFDF778] [] []
    Thu Dec 01 12:05:54 IST 2011
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_5599.trc:
    ORA-07445: exception encountered: core dump [ksmpgd_init_ctx()+4] [SIGSEGV] [Address not mapped to object] [0xFFFFFFFF7FFE0000] [] []
    thanks in advanced .it's urgent it's production issue

    When did this start happening?
    ORA-29282: invalid file IDSee (OERR: ORA-29282 invalid file ID [ID 194780.1]).
    Errors in file /appl2/oracle2/proddb/10.2.0/admin/PROD_winsome/udump/prod_ora_5599.trc:
    ORA-07445: exception encountered: core dump [ksmpgd_init_ctx()+4] [SIGSEGV] [Address not mapped to object] [0xFFFFFFFF7FFE0000] [] []Search the doc referenced above by Helios, if you could not find any related docs then please log a SR and upload all the trace/alert files to Oracle Support.
    Thanks,
    Hussein

  • Enterprise Manager Database Control Errors in Alert.log

    Hi all
    I'm posting it this forum because i think it is the best place to get some help, i suspect it is something in Entreprise Manager Database Console
    sometimes i get errors in Alert.log
    Errors in file e:\admin\orapd\udump\orapd_ora_3456.trc:
    ORA-25254: time-out in LISTEN while waiting for a message
    ORA-06512: at "SYS.DBMS_AQ", line 577
    ORA-06512: at "SYSMAN.EMD_NOTIFICATION", line 492
    ORA-06512: at line 1
    Generally this error is generated when the database is shutdow for backup (3 AM)
    In the shutdown script i terminate the DatabaseConsole service before i shutdown the database:
    Shutdown Script:
    @echo off
    REM Script de shutdown base de dados orapd
    REM Rui Madaleno , 2004/11/23
    echo Shutdown consola de administracao ...
    net stop oracledbconsoleorapd
    echo Parar o servico OracleCSService ...
    net stop oracleCSService
    echo Parar o servico OracleOraApacheProcessManager
    net stop OracleOraApacheProcessManager
    echo Parar o Listener da base de dados
    e:\oracle\bin\lsnrctl.exe stop
    echo Shutting down database ORAPD ....
    e:\oracle\bin\oradim.exe -shutdown -sid orapd -syspwd XXXX -shuttype srvc,inst -shutmode immediate
    My environment:
    Windows 2003 Server
    Compaq Proliant DL580 G2 Server
    Oracle Database 10.0.1.0.2
    How can i avoid this errors ???
    Thanks in Advance
    Rui Madaleno

    Dear ,
    I am facing same problem, detail is
    Errors in file d:\oracle\product\10.1.0\admin\oracle\udump\oracle_ora_2952.trc:
    ORA-25254: time-out in LISTEN while waiting for a message
    ORA-06512: at "SYS.DBMS_AQ", line 577
    ORA-06512: at "SYSMAN.EMD_NOTIFICATION", line 492
    ORA-06512: at line 1
    this problem is happen suddenly and user are not get new connection with database.
    thanks in advance

  • DG Observer triggering SIGSEGV Address not mapped to object errors in alert log

    Hi,
    I've got a Data Guard configuration using two 11.2.0.3 single instance databases.  The configuration has been configured for automatic failover and I have an observer running on a separate box.
    This fast-start failover configuration has been in place for about a month and in the last week, numerous SEGSEGV (address not mapped to object) errors are reported in the alert log.  This is happening quite frequently (every 4/5 minutes or so).
    The corresponding trace files show the process triggering the error coming from the observer.
    Has anyone experienced this problem?  I'm at my wits end trying to figure out how to fix the configuration to eliminate this error.
    I must also note that even though this error is occurring a lot, it doesn't seem to be affecting any of the database functionality.
    Help?
    Thanks in advance.
    Beth

    Hi..   The following is the alert log message, the traced file generated, and the current values of the data guard configuration.  In addition, as part of my research, I attempted to apply patch 12615660 which did not take care of the issue.  I also set the inbound_connection_timeout parameter to 0 and that didn't help either.  I'm still researching but any pointer in the right direction is very much appreciated.
    Error in Alert Log
    Thu Apr 09 10:28:59 2015
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    Errors in file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc  (incident=69298):
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Thu Apr 09 10:29:02 2015
    Sweep [inc][69298]: completed
    Trace file:
    Trace file /u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/trace/<SID>_ora_29902.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning and Oracle Label Security options
    ORACLE_HOME = /u01/app/oracle/product/11.2.0.3/dbhome_1
    System name:    Linux
    Node name:      <host name>
    Release:        2.6.32-431.17.1.el6.x86_64
    Version:        #1 SMP Wed May 7 14:14:17 CDT 2014
    Machine:        x86_64
    Instance name: <SID>
    Redo thread mounted by this instance: 1
    Oracle process number: 19
    Unix process pid: 29902, image: oracle@<host name>
    *** 2015-04-09 10:28:59.966
    *** SESSION ID:(416.127) 2015-04-09 10:28:59.966
    *** CLIENT ID:() 2015-04-09 10:28:59.966
    *** SERVICE NAME:(<db_unq_name>) 2015-04-09 10:28:59.966
    *** MODULE NAME:(dgmgrl@<observer host> (TNS V1-V3)) 2015-04-09 10:28:59.966
    *** ACTION NAME:() 2015-04-09 10:28:59.966
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x9] [PC:0x85CE503, nstimexp()+71] [flags: 0x0, count: 1]
    DDE: Problem Key 'ORA 7445 [nstimexp()+71]' was flood controlled (0x6) (incident: 69298)
    ORA-07445: exception encountered: core dump [nstimexp()+71] [SIGSEGV] [ADDR:0x9] [PC:0x85CE503] [Address not mapped to object] []
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    ksdbgcra: writing core file to directory '/u01/app/oracle/diag/rdbms/<db_unq_name>/<SID>/cdump'
    Data Guard Configuration
    DGMGRL> show configuration verbose;
    Configuration - dg_config
      Protection Mode: MaxPerformance
      Databases:
        dbprim - Primary database
        dbstby - (*) Physical standby database
      (*) Fast-Start Failover target
      Properties:
        FastStartFailoverThreshold      = '30'
        OperationTimeout                = '30'
        FastStartFailoverLagLimit       = '180'
        CommunicationTimeout            = '180'
        FastStartFailoverAutoReinstate  = 'TRUE'
        FastStartFailoverPmyShutdown    = 'TRUE'
        BystandersFollowRoleChange      = 'ALL'
    Fast-Start Failover: ENABLED
      Threshold:        30 seconds
      Target:           dbstby
      Observer:         observer_host
      Lag Limit:        180 seconds
      Shutdown Primary: TRUE
      Auto-reinstate:   TRUE
    Configuration Status:
    SUCCESS
    DGMGRL> show database verbose dbprim
    Database - dbprim
      Role:            PRIMARY
      Intended State:  TRANSPORT-ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbprim'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'MANUAL'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbstby'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS
    DGMGRL> show database verbose dbstby
    Database - dbstby
      Role:            PHYSICAL STANDBY
      Intended State:  APPLY-ON
      Transport Lag:   0 seconds
      Apply Lag:       0 seconds
      Real Time Query: ON
      Instance(s):
        DG_CONFIG
      Properties:
        DGConnectIdentifier             = 'dbstby'
        ObserverConnectIdentifier       = ''
        LogXptMode                      = 'ASYNC'
        DelayMins                       = '0'
        Binding                         = 'optional'
        MaxFailure                      = '0'
        MaxConnections                  = '1'
        ReopenSecs                      = '300'
        NetTimeout                      = '30'
        RedoCompression                 = 'DISABLE'
        LogShipping                     = 'ON'
        PreferredApplyInstance          = ''
        ApplyInstanceTimeout            = '0'
        ApplyParallel                   = 'AUTO'
        StandbyFileManagement           = 'AUTO'
        ArchiveLagTarget                = '0'
        LogArchiveMaxProcesses          = '4'
        LogArchiveMinSucceedDest        = '1'
        DbFileNameConvert               = ''
        LogFileNameConvert              = ''
        FastStartFailoverTarget         = 'dbprim'
        InconsistentProperties          = '(monitor)'
        InconsistentLogXptProps         = '(monitor)'
        SendQEntries                    = '(monitor)'
        LogXptStatus                    = '(monitor)'
        RecvQEntries                    = '(monitor)'
        SidName                         = ‘<sid>’
        StaticConnectIdentifier         = '(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=<db host name>)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=<service_name>)(INSTANCE_NAME=<sid>)(SERVER=DEDICATED)))'
        StandbyArchiveLocation          = 'USE_DB_RECOVERY_FILE_DEST'
        AlternateLocation               = ''
        LogArchiveTrace                 = '0'
        LogArchiveFormat                = '%t_%s_%r.dbf'
        TopWaitEvents                   = '(monitor)'
    Database Status:
    SUCCESS

  • Errors in alert log and listener log and "alter database mount exclusive"

    Hello!
    I need a help.
    Database 11R2 works under MS Windows Server.
    Whwn I start it using Services, according alert log it is started by command "alter database mount exclusive".
    Next - alter database open.
    After this, it seams that program, which should put data into database, can not work with it, because I see errors in alert log: ora-12537, 12560, 12535, 12570, 12547.
    What does itmean and what to do?
    This is extract from alert_log
    ORACLE_BASE from environment = C:\Oracle
    Mon Feb 04 14:54:53 2013
    alter database mount exclusive
    Successful mount of redo thread 1, with mount id 1458539517
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: alter database mount exclusive
    alter database open
    Thread 1 opened at log sequence 3105
    Current log# 3 seq# 3105 mem# 0: C:\ORACLE\ORADATA\xxx\REDO03.LOG
    Successful open of redo thread 1
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    SMON: enabling cache recovery
    Successfully onlined Undo Tablespace 2.
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    Database Characterset is AL32UTF8
    No Resource Manager plan active
    Mon Feb 04 14:55:04 2013
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Mon Feb 04 14:55:06 2013
    QMNC started with pid=20, OS id=2860
    Completed: alter database open
    Mon Feb 04 14:55:11 2013
    Starting background process CJQ0
    Mon Feb 04 14:55:11 2013
    CJQ0 started with pid=25, OS id=2000
    Mon Feb 04 14:55:11 2013
    db_recovery_file_dest_size of 4977 MB is 0.00% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Mon Feb 04 15:00:29 2013
    Starting background process SMCO
    Mon Feb 04 15:00:29 2013
    SMCO started with pid=32, OS id=3212
    Edited by: kogotok1 on Feb 4, 2013 4:54 PM

    Thank you.
    But in the same time - when I see in alert log those error messages ora -12560, 12537,12535,12570 and so on - clients programs, whiie try to connect, hang up.
    For sql plus takes 20 minutes to connect.
    lsnrctl status gives the following
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 04-FEB-2013 16:01
    :46
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx-BD.mosxxx
    .elektra.net)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 01-FEB-2013 10:22:48
    Uptime 3 days 5 hr. 39 min. 54 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\Oracle\listener.ora
    Listener Log File c:\oracle\diag\tnslsnr\xxx-BD\listener\alert\l
    og.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xxx-BD.mosxxx.elektra.net)
    (PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XXX" has 2 instance(s).
    Instance "XXX", status UNKNOWN, has 1 handler(s) for this service...
    Instance "xxx", status READY, has 1 handler(s) for this service...
    Service "XXXDB" has 1 instance(s).
    Instance "xxx", status READY, has 1 handler(s) for this service...
    The command completed successfully
    To tell the truth I am confuse - I thought I have only 1 service "XXXDB" and 1 instance - "xxx".
    May be I have wrong entries in tnslsnr.ora?

  • Errors in alert log PROD

    Dear all,
    Oracle 10.2 on AIX 5.3
    I am getting these errors in my alert log.
    ORA-12012: error on auto execute of job 42568
    ORA-04063: ORA-04063: package body "EXFSYS.DBMS_RLMGR_DR" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "EXFSYS.DBMS_RLMGR_DR"
    I first uninstalled the EXFSYS schema and then installed it again. Then I tried to install the Rule Manager. and I get another error
    SQL> @ ?/rdbms/admin/catrul.sql
    begin
    ERROR at line 1:
    ORA-20000: XDB component not found. XDB should be installed prior to Rules
    Manager installation.
    ORA-06512: at line 3
    How can I install XDB component. Please help

    Maybe due to forum bug, thisthread is duplicate :
    Errors in alert log PROD
    Nicolas.

  • Receive an error in alert log after successful porpagated aq message

    Hi experts,
    I have a problem with the propagation feature of Oracle Advanced Queues!
    First of all I use a 10gR1 RAC database.
    After creating my queue and schedule I get the following error in alert log but the message will be successful propagated.
    After 16 runs the job will be set broken. Ok this is clear but so works DBMS_JOB. But why I get this message below? Is it possible that grants are missing?
    Errors in file /u01/app/oracle/admin/rdstest/bdump/rdsts1_j000_385024.trc:
    ORA-12012: error on auto execute of job 5523173
    ORA-06521: PL/SQL: Error mapping function
    ORA-00604: error occurred at recursive SQL level 2
    ORA-06521: PL/SQL: Error mapping function
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 574
    ORA-06512: at "SYS.DBMS_PRVTAQIP", line 2054
    ORA-06512: at line 1
    ORA-25254: time-out in LISTEN while waiting for a message
    ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 574
    ORA-06512: at "SYS.DBMS_PRVTAQIP", line 2054
    ORA-06512: at line 1
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 6662
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 6913
    ORA-06512: at "SYS.DBMS_AQADM", line 915
    ORA-06512: at line 1
    Thank you for helping and best regards!!

    I found that Babylon had changed the proxy setting. Try going to Tools/Options/Advanced/Network/Settings and select "No proxy".
    This has helped but things are still slow and I suspect that some other changes have been made to the Firefox settings.
    Installing unauthorised software on your PC should be made illegal. I will avoid Babylon forever so they have done themselves no favours by trying to be smart!

  • How to check particular error in alert log file

    Hi all,
    How to check particular error in alert log file,for supose if i get error in batabase yesterday 4 pm & today i want to check alert log file to get basic idea..it might be a big file so how to check that particular error..
    Thanks & regards,
    Eswar..

    What's your oracle version?
    If you are in 11g you can use adrci tool
    1- set homes diag/rdbms/orawiss/ORAWISS/ : the rdbms home
    2- show alert -P "MESSAGE_TEXT LIKE '%ORA-%'" -term : to find all the ORA-% errors in the alert file
    3- show alert -P "MESSAGE_TEXT LIKE '%ORA-%' and originating_timestamp > systimestamp-51 " -term : to find all the ORA-% errors in the alert file during the last 51 days,
    4- show alert -P "MESSAGE_TEXT LIKE '%ORA-%' and originating_timestamp > systimestamp-1/24 " -term : to find all the ORA-% errors in the alert file during the last hour,
    5- show alert -P "MESSAGE_TEXT LIKE '%ORA-12012%' and originating_timestamp > systimestamp-1/24 " -term : to find the particular ORA-12012 error in the alert file during the last hour,
    Example:
    [oracle@wissem wissem]$ adrci
    ADRCI: Release 11.2.0.1.0 - Production on Wed May 4 10:24:54 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    ADR base = "/home/oracle/app/oracle"
    adrci> set homes diag/rdbms/orawiss/ORAWISS/
    adrci> show alert -P "MESSAGE_TEXT LIKE '%ORA-'" -term
    ADR Home = /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS:
    adrci> show alert -P "MESSAGE_TEXT LIKE '%ORA-%'" -term
    ADR Home = /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS:
    2010-12-11 19:45:41.289000 +01:00
    ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/home/oracle/app/oracle/oradata/ORAWISS/system01.dbf'
    ORA-1547 signalled during: ALTER DATABASE RECOVER  database until time '2011-01-21:10:48:00'  ...
    Errors in file /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS/trace/ORAWISS_j000_5692.trc:
    ORA-12012: error on auto execute of job 29
    ORA-01435: user does not exist
    2011-03-15 11:39:37.571000 +01:00
    opiodr aborting process unknown ospid (31042) as a result of ORA-609
    2011-03-15 12:04:15.111000 +01:00
    opiodr aborting process unknown ospid (3509) as a result of ORA-609
    adrci>
    adrci> show alert -P "MESSAGE_TEXT LIKE '%ORA-%' and originating_timestamp > systimestamp-51 " -term
    ADR Home = /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS:
    2011-03-15 10:19:45.316000 +01:00
    Errors in file /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS/trace/ORAWISS_j006_5536.trc:
    ORA-12012: error on auto execute of job 26
    ORA-01435: user does not exist
    Errors in file /home/oracle/app/oracle/diag/rdbms/orawiss/ORAWISS/trace/ORAWISS_j000_5692.trc:
    ORA-12012: error on auto execute of job 29
    ORA-01435: user does not exist
    2011-03-15 11:39:37.571000 +01:00
    opiodr aborting process unknown ospid (31042) as a result of ORA-609
    2011-03-15 12:04:15.111000 +01:00
    opiodr aborting process unknown ospid (3509) as a result of ORA-609
    adrci>

  • Getting ORA-28 in alert log file

    Hi,
    We are getting ORA-28 in alert log.
    " ORA-28 ALTER DATABASE BACKUP CONTROLFILE....."
    please suggest.
    Thanks

    Could you post 20 lines before and after this error occurred in alertlog
    Cheers

  • ORA-28 in alert.log file

    please help.. getting ORA-28 in alert.log file.
    Mon Feb 25 17:46:05 2013
    ORA-28 signalled during: ALTER TABLESPACE DATA_APP_199903 READ ONLY...
    Mon Feb 25 17:48:54 2013
    ALTER TABLESPACE DATA_APP_199903 READ ONLY
    please let me know if you need any other info to help me.

    Error: ORA 28
    Text: your session has been killed
    Cause: A privileged user killed the session and it is no longer logged in to the database.
    Action: Contact the database administrator.
    The administrator may be attempting to perform an operation that requires users to be logged out.
    When the database administrator announces that the database is available, log in and resume work.So, its a message only not exactly an error. It happens when you or other DBA said alter tablespace tbs read only; and at the same time privileged user killed your session. So, nothing to worry/to do, just relogin and resume work.
    Regards
    Girish Sharma

Maybe you are looking for

  • Post Creation/Installation Document.

    Hello, Is there any formal template for a document, Post Creation/Installation of Oracle Database? As in Control File Locations, Log File location, Environment settings, etc. etc. that is required to be maintained after installing the Oracle Server o

  • Problem with JFormattedTextField

    Hi, I Want to set Max length of text in JFormattedTextField.. I've tried to extend PlainDocument and override insertString and updateString, but it doesn't work. How can do it. Thanks.

  • Zen Neeon 5 GB playlist prob

    I have got Zen Neeon 5 GB. Mp3 player. I have created a playlist on Zen Neeon. There are 3 mp3 each one. It plays tracks but return to back from fourth track. It plays four tracks. How can I solve this problem.

  • Inability to download OS X Mavericks

    I am having difficulty downloading OS X Mavericks to my MBA, purchased in 2009, recently upgraded to Leopard 10.6.3 via purchased disk, then online download to 10.6.8.   I have 2 GB RAM plus: Macintosh HD:   Capacity:          79.55 GB (79,548,170,24

  • JavaScript Confirmation Dialog on Button

    Hi all, I have a Back Button which triggers the following JavaScript Function: <script language="javascript"> function backConfirm() {      msg = "<%=res.getString("BACK.CONFIRM")%>";      return confirm(msg); </script> The function gets called in my