Ora-07445: Integer Divide by zero

hi all,
i have this error in my alert log.
ORA-07445: exception encountered: core dump [skgxpdmpctx()+343] [SIGFPE] [Integer divide by zero] [0x4001BFFF
when this error occur many times the db went down, what's this error about? have you experience this before..
pls guide me or give me some precedures in detail on how to resolved this error.
DB:
Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
PL/SQL Release 9.2.0.7.0 - Production
CORE 9.2.0.7.0 Production
TNS for Linux: Version 9.2.0.7.0 - Production
NLSRTL Version 9.2.0.7.0 - Production
OS:
Red Hat Linux Advanced Server release 2.1AS/\m (Pensacola)
thanks in advanced,

It's bug, and fixed in 9.2.0.7
ALERT: ORA-7445 SKGXPDMPCTX Instance Crash Possible After Applying 9.2.0.5 or 9.2.0.6 Patchset
Bug 4059639 - ORA-7445 SKGXPDMPCTX Instance Crash with 9.2.0.5 or 9.2.0.6 Patchset
Possible Symptoms
~~~~~~~~~~~~~~~~~
Instance failure and a message similar to the following in the alert log:
ORA-07445: exception encountered: core dump [skgxpdmpctx()+183] [SIGFPE]
[Integer divide by zero] [0x4001BE3F] [] []
Workaround
~~~~~~~~~~
Run in single instance mode or apply the fixes.
Enter to metalink.oracle.com and enter to this url:
http://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=4059639
Download 76Kb patch (Patch 4059639 )
You need p4059639_9206_LINUX.zip file

Similar Messages

  • ORA-07445: exception encountered in the database and the databasde wentdown

    Hi,
    I got the eblow errors in the alert log file. and the database went donw after this errors. Can anybody suggests the cause of the error.
    Errors in file /ORADATA/proddb/9.2.0/admin/PROD_dgoracluster/udump/prod_ora_17784.trc:
    ORA-07445: exception encountered: core dump [kssrem()+177] [SIGSEGV] [Address not mapped to object] [0x4] [] []
    ORA-03135: connection lost contact
    Tue Jan 19 11:31:49 2010
    Errors in file /ORADATA/proddb/9.2.0/admin/PROD_dgoracluster/udump/prod_ora_17784.trc:
    ORA-07445: exception encountered: core dump [kghssgmm()+83] [SIGFPE] [Integer divide by zero] [0xAD0357D] [] []
    ORA-07445: exception encountered: core dump [kssrem()+177] [SIGSEGV] [Address not mapped to object] [0x4] [] []
    ORA-03135: connection lost contact
    Tue Jan 19 11:31:51 2010
    Errors in file /ORADATA/proddb/9.2.0/admin/PROD_dgoracluster/bdump/prod_pmon_4625.trc:
    ORA-07445: exception encountered: core dump [kggchk()+72] [SIGSEGV] [Address not mapped to object] [0x17] [] []
    Tue Jan 19 11:31:55 2010
    MMON: terminating instance due to error 472
    Instance terminated by MMON, pid = 4643
    Thanks,
    Prashanth.

    hi, initially you can check trace files also to get to know what the problem is.
    you can look in metalink for ora-600 lookup tool which provides information for ora-7445 errors also.
    if not found anything, then raise a SR with oracle support

  • ORA-07445 in the alert log when inserting into table with XMLType column

    I'm trying to insert an xml-document into a table with a schema-based XMLType column. When I try to insert a row (using plsql-developer) - oracle is busy for a few seconds and then the connection to oracle is lost.
    Below you''ll find the following to recreate the problem:
    a) contents from the alert log
    b) create script for the table
    c) the before-insert trigger
    d) the xml-schema
    e) code for registering the schema
    f) the test program
    g) platform information
    Alert Log:
    Fri Aug 17 00:44:11 2007
    Errors in file /oracle/app/oracle/product/10.2.0/db_1/admin/dntspilot2/udump/dntspilot2_ora_13807.trc:
    ORA-07445: exception encountered: core dump [SIGSEGV] [Address not mapped to object] [475177] [] [] []
    Create script for the table:
    CREATE TABLE "DNTSB"."SIGNATURETABLE"
    (     "XML_DOCUMENT" "SYS"."XMLTYPE" ,
    "TS" TIMESTAMP (6) WITH TIME ZONE NOT NULL ENABLE
    ) XMLTYPE COLUMN "XML_DOCUMENT" XMLSCHEMA "http://www.sporfori.fo/schemas/www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd" ELEMENT "Object"
    ROWDEPENDENCIES ;
    Before-insert trigger:
    create or replace trigger BIS_SIGNATURETABLE
    before insert on signaturetable
    for each row
    declare
    -- local variables here
    l_sigtab_rec signaturetable%rowtype;
    begin
    if (:new.xml_document is not null) then
    :new.xml_document.schemavalidate();
    end if;
    l_sigtab_rec.xml_document := :new.xml_document;
    end BIS_SIGNATURETABLE2;
    XML-Schema (xmldsig-core-schema.xsd):
    =====================================================================================
    <?xml version="1.0" encoding="utf-8"?>
    <!-- Schema for XML Signatures
    http://www.w3.org/2000/09/xmldsig#
    $Revision: 1.1 $ on $Date: 2002/02/08 20:32:26 $ by $Author: reagle $
    Copyright 2001 The Internet Society and W3C (Massachusetts Institute
    of Technology, Institut National de Recherche en Informatique et en
    Automatique, Keio University). All Rights Reserved.
    http://www.w3.org/Consortium/Legal/
    This document is governed by the W3C Software License [1] as described
    in the FAQ [2].
    [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
    [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
    -->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xdb="http://xmlns.oracle.com/xdb"
    targetNamespace="http://www.w3.org/2000/09/xmldsig#" version="0.1" elementFormDefault="qualified">
    <!-- Basic Types Defined for Signatures -->
    <xs:simpleType name="CryptoBinary">
    <xs:restriction base="xs:base64Binary">
    </xs:restriction>
    </xs:simpleType>
    <!-- Start Signature -->
    <xs:element name="Signature" type="ds:SignatureType"/>
    <xs:complexType name="SignatureType">
    <xs:sequence>
    <xs:element ref="ds:SignedInfo"/>
    <xs:element ref="ds:SignatureValue"/>
    <xs:element ref="ds:KeyInfo" minOccurs="0"/>
    <xs:element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <xs:element name="SignatureValue" type="ds:SignatureValueType"/>
    <xs:complexType name="SignatureValueType">
    <xs:simpleContent>
    <xs:extension base="xs:base64Binary">
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:extension>
    </xs:simpleContent>
    </xs:complexType>
    <!-- Start SignedInfo -->
    <xs:element name="SignedInfo" type="ds:SignedInfoType"/>
    <xs:complexType name="SignedInfoType">
    <xs:sequence>
    <xs:element ref="ds:CanonicalizationMethod"/>
    <xs:element ref="ds:SignatureMethod"/>
    <xs:element ref="ds:Reference" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <xs:element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
    <xs:complexType name="CanonicalizationMethodType" mixed="true">
    <xs:sequence>
    <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
    <!-- (0,unbounded) elements from (1,1) namespace -->
    </xs:sequence>
    <xs:attribute name="Algorithm" type="xs:anyURI" use="required"/>
    </xs:complexType>
    <xs:element name="SignatureMethod" type="ds:SignatureMethodType"/>
    <xs:complexType name="SignatureMethodType" mixed="true">
    <xs:sequence>
    <xs:element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/>
    <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
    <!-- (0,unbounded) elements from (1,1) external namespace -->
    </xs:sequence>
    <xs:attribute name="Algorithm" type="xs:anyURI" use="required"/>
    </xs:complexType>
    <!-- Start Reference -->
    <xs:element name="Reference" type="ds:ReferenceType"/>
    <xs:complexType name="ReferenceType">
    <xs:sequence>
    <xs:element ref="ds:Transforms" minOccurs="0"/>
    <xs:element ref="ds:DigestMethod"/>
    <xs:element ref="ds:DigestValue"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    <xs:attribute name="URI" type="xs:anyURI" use="optional"/>
    <xs:attribute name="Type" type="xs:anyURI" use="optional"/>
    </xs:complexType>
    <xs:element name="Transforms" type="ds:TransformsType"/>
    <xs:complexType name="TransformsType">
    <xs:sequence>
    <xs:element ref="ds:Transform" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="Transform" type="ds:TransformType"/>
    <xs:complexType name="TransformType" mixed="true">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:any namespace="##other" processContents="lax"/>
    <!-- (1,1) elements from (0,unbounded) namespaces -->
    <xs:element name="XPath" type="xs:string"/>
    </xs:choice>
    <xs:attribute name="Algorithm" type="xs:anyURI" use="required"/>
    </xs:complexType>
    <!-- End Reference -->
    <xs:element name="DigestMethod" type="ds:DigestMethodType"/>
    <xs:complexType name="DigestMethodType" mixed="true">
    <xs:sequence>
    <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="Algorithm" type="xs:anyURI" use="required"/>
    </xs:complexType>
    <xs:element name="DigestValue" type="ds:DigestValueType"/>
    <xs:simpleType name="DigestValueType">
    <xs:restriction base="xs:base64Binary"/>
    </xs:simpleType>
    <!-- End SignedInfo -->
    <!-- Start KeyInfo -->
    <xs:element name="KeyInfo" type="ds:KeyInfoType"/>
    <xs:complexType name="KeyInfoType" mixed="true">
    <xs:choice maxOccurs="unbounded">
    <xs:element ref="ds:KeyName"/>
    <xs:element ref="ds:KeyValue"/>
    <xs:element ref="ds:RetrievalMethod"/>
    <xs:element ref="ds:X509Data"/>
    <xs:element ref="ds:PGPData"/>
    <xs:element ref="ds:SPKIData"/>
    <xs:element ref="ds:MgmtData"/>
    <xs:any processContents="lax" namespace="##other"/>
    <!-- (1,1) elements from (0,unbounded) namespaces -->
    </xs:choice>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <xs:element name="KeyName" type="xs:string"/>
    <xs:element name="MgmtData" type="xs:string"/>
    <xs:element name="KeyValue" type="ds:KeyValueType"/>
    <xs:complexType name="KeyValueType" mixed="true">
    <xs:choice>
    <xs:element ref="ds:DSAKeyValue"/>
    <xs:element ref="ds:RSAKeyValue"/>
    <xs:any namespace="##other" processContents="lax"/>
    </xs:choice>
    </xs:complexType>
    <xs:element name="RetrievalMethod" type="ds:RetrievalMethodType"/>
    <xs:complexType name="RetrievalMethodType">
    <xs:sequence>
    <xs:element ref="ds:Transforms" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="URI" type="xs:anyURI"/>
    <xs:attribute name="Type" type="xs:anyURI" use="optional"/>
    </xs:complexType>
    <!-- Start X509Data -->
    <xs:element name="X509Data" type="ds:X509DataType"/>
    <xs:complexType name="X509DataType">
    <xs:sequence maxOccurs="unbounded">
    <xs:choice>
    <xs:element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/>
    <xs:element name="X509SKI" type="xs:base64Binary"/>
    <xs:element name="X509SubjectName" type="xs:string"/>
    <xs:element name="X509Certificate" type="xs:base64Binary"/>
    <xs:element name="X509CRL" type="xs:base64Binary"/>
    <xs:any namespace="##other" processContents="lax"/>
    </xs:choice>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="X509IssuerSerialType">
    <xs:sequence>
    <xs:element name="X509IssuerName" type="xs:string"/>
    <xs:element name="X509SerialNumber" type="xs:integer"/>
    </xs:sequence>
    </xs:complexType>
    <!-- End X509Data -->
    <!-- Begin PGPData -->
    <xs:element name="PGPData" type="ds:PGPDataType"/>
    <xs:complexType name="PGPDataType">
    <xs:choice>
    <xs:sequence>
    <xs:element name="PGPKeyID" type="xs:base64Binary"/>
    <xs:element name="PGPKeyPacket" type="xs:base64Binary" minOccurs="0"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:sequence>
    <xs:element name="PGPKeyPacket" type="xs:base64Binary"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:choice>
    </xs:complexType>
    <!-- End PGPData -->
    <!-- Begin SPKIData -->
    <xs:element name="SPKIData" type="ds:SPKIDataType"/>
    <xs:complexType name="SPKIDataType">
    <xs:sequence maxOccurs="unbounded">
    <xs:element name="SPKISexp" type="xs:base64Binary"/>
    <xs:any namespace="##other" processContents="lax" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <!-- End SPKIData -->
    <!-- End KeyInfo -->
    <!-- Start Object (Manifest, SignatureProperty) -->
    <xs:element name="Object" type="ds:ObjectType"/>
    <xs:complexType name="ObjectType" mixed="true">
    <xs:sequence minOccurs="0" maxOccurs="unbounded">
    <xs:any namespace="##any" processContents="lax"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    <xs:attribute name="MimeType" type="xs:string" use="optional"/> <!-- add a grep facet -->
    <xs:attribute name="Encoding" type="xs:anyURI" use="optional"/>
    </xs:complexType>
    <xs:element name="Manifest" type="ds:ManifestType"/>
    <xs:complexType name="ManifestType">
    <xs:sequence>
    <xs:element ref="ds:Reference" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <xs:element name="SignatureProperties" type="ds:SignaturePropertiesType"/>
    <xs:complexType name="SignaturePropertiesType">
    <xs:sequence>
    <xs:element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <xs:element name="SignatureProperty" type="ds:SignaturePropertyType"/>
    <xs:complexType name="SignaturePropertyType" mixed="true">
    <xs:choice maxOccurs="unbounded">
    <xs:any namespace="##other" processContents="lax"/>
    <!-- (1,1) elements from (1,unbounded) namespaces -->
    </xs:choice>
    <xs:attribute name="Target" type="xs:anyURI" use="required"/>
    <xs:attribute name="Id" type="xs:ID" use="optional"/>
    </xs:complexType>
    <!-- End Object (Manifest, SignatureProperty) -->
    <!-- Start Algorithm Parameters -->
    <xs:simpleType name="HMACOutputLengthType">
    <xs:restriction base="xs:integer"/>
    </xs:simpleType>
    <!-- Start KeyValue Element-types -->
    <xs:element name="DSAKeyValue" type="ds:DSAKeyValueType"/>
    <xs:complexType name="DSAKeyValueType">
    <xs:sequence>
    <xs:sequence minOccurs="0">
    <xs:element name="P" type="ds:CryptoBinary"/>
    <xs:element name="Q" type="ds:CryptoBinary"/>
    </xs:sequence>
    <xs:element name="G" type="ds:CryptoBinary" minOccurs="0"/>
    <xs:element name="Y" type="ds:CryptoBinary"/>
    <xs:element name="J" type="ds:CryptoBinary" minOccurs="0"/>
    <xs:sequence minOccurs="0">
    <xs:element name="Seed" type="ds:CryptoBinary"/>
    <xs:element name="PgenCounter" type="ds:CryptoBinary"/>
    </xs:sequence>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="RSAKeyValue" type="ds:RSAKeyValueType"/>
    <xs:complexType name="RSAKeyValueType">
    <xs:sequence>
    <xs:element name="Modulus" type="ds:CryptoBinary"/>
    <xs:element name="Exponent" type="ds:CryptoBinary"/>
    </xs:sequence>
    </xs:complexType>
    <!-- End KeyValue Element-types -->
    <!-- End Signature -->
    </xs:schema>
    ===============================================================================
    Code for registering the xml-schema
    begin
    dbms_xmlschema.deleteSchema('http://xmlns.oracle.com/xdb/schemas/DNTSB/www.sporfori.fo/schemas/www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd',
    dbms_xmlschema.DELETE_CASCADE_FORCE);
    end;
    begin
    DBMS_XMLSCHEMA.REGISTERURI(
    schemaurl => 'http://www.sporfori.fo/schemas/www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd',
    schemadocuri => 'http://www.sporfori.fo/schemas/www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd',
    local => TRUE,
    gentypes => TRUE,
    genbean => FALSE,
    gentables => TRUE,
    force => FALSE,
    owner => 'DNTSB',
    options => 0);
    end;
    Test program
    -- Created on 17-07-2006 by EEJ
    declare
    XML_TEXT3 CLOB := '<Object xmlns="http://www.w3.org/2000/09/xmldsig#">
                                  <SignatureProperties>
                                       <SignatureProperty Target="">
                                            <Timestamp xmlns="http://www.sporfori.fo/schemas/dnts/general/2006/11/14">2007-05-10T12:00:00-05:00</Timestamp>
                                       </SignatureProperty>
                                  </SignatureProperties>
                             </Object>';
    xmldoc xmltype;
    begin
    xmldoc := xmltype(xml_text3);
    insert into signaturetable
    (xml_document, ts)
    values
    (xmldoc, current_timestamp);
    end;
    Platform information
    Operating system:
    -bash-3.00$ uname -a
    SunOS dntsdb 5.10 Generic_125101-09 i86pc i386 i86pc
    SQLPlus:
    SQL*Plus: Release 10.2.0.3.0 - Production on Fri Aug 17 00:15:13 2007
    Copyright (c) 1982, 2006, Oracle. All Rights Reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning and Data Mining options
    Kind Regards,
    Eyðun

    You should report this in a service request on http://metalink.oracle.com.
    It is a shame that you put all the effort here to describe your problem, but on the other hand you can now also copy & paste the question to Oracle Support.
    Because you are using 10.2.0.3; I am guessing that you have a valid service contract...

  • ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7FF7FC5299B] [ADDR:0x11FFFFFFE] [UNABLE_TO_READ] []

    Hi,
    I have some issues regarding standby database.
    Oracle version : 10.2.0.1.0 on windows 2003R2 64bit.
    MRP process is not active in standby database.yesterday  I have re-boot standby server,but still MRP process in not running.
    In Alert log I found following errors:-
    Mon Jan 20 12:33:41 2014
    Successful mount of redo thread 1, with mount id 2124244128
    Mon Jan 20 12:33:41 2014
    Physical Standby Database mounted.
    ARCt started with pid=46, OS id=3088
    Mon Jan 20 12:33:42 2014
    ARCb: Becoming the heartbeat ARCH
    Completed: ALTER DATABASE   MOUNT
    Mon Jan 20 12:33:44 2014
    Starting Data Guard Broker (DMON)
    Mon Jan 20 12:33:49 2014
    alter database recover managed standby database disconnect from session
    MRP0 started with pid=47, OS id=2880
    Managed Standby Recovery not using Real Time Apply
    Media Recovery Log D:\MAXIMODATA\ARCHIVE_LOG\ARC10180_0751162859.001
    Mon Jan 20 12:33:56 2014
    Completed: alter database recover managed standby database disconnect from session
    Mon Jan 20 12:33:58 2014
    Errors in file c:\oracle\product\10.2.0\admin\eamdr\bdump\eamdr_mrp0_2880.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7FF7FC5299B] [ADDR:0x11FFFFFFE] [UNABLE_TO_READ] []
    Mon Jan 20 12:33:59 2014
    Errors in file c:\oracle\product\10.2.0\admin\eamdr\bdump\eamdr_mrp0_2880.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7FF7FC5299B] [ADDR:0x11FFFFFFE] [UNABLE_TO_READ] []
    Mon Jan 20 12:34:00 2014
    Recovery interrupted!
    Mon Jan 20 12:37:54 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[1]: Assigned to RFS process 4236
    RFS[1]: Identified database type as 'physical standby'
    Mon Jan 20 12:37:54 2014
    RFS LogMiner: Client disabled from further notification
    Mon Jan 20 12:46:17 2014
    db_recovery_file_dest_size of 10240 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 Jan 20 14:21:37 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[2]: Assigned to RFS process 4024
    RFS[2]: Identified database type as 'physical standby'
    RFS[2]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    Mon Jan 20 16:37:43 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[3]: Assigned to RFS process 3184
    RFS[3]: Identified database type as 'physical standby'
    RFS[3]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    Mon Jan 20 17:56:58 2014
    RFS[2]: Possible network disconnect with primary database
    Mon Jan 20 17:57:53 2014
    RFS[3]: Possible network disconnect with primary database
    Mon Jan 20 18:00:00 2014
    RFS[1]: Possible network disconnect with primary database
    Mon Jan 20 21:36:08 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[4]: Assigned to RFS process 4664
    RFS[4]: Identified database type as 'physical standby'
    Mon Jan 20 21:36:09 2014
    RFS[5]: Archived Log: 'D:\MAXIMODATA\ARCHIVE_LOG\STANDBY\ARC10196_0751162859.001'
    Mon Jan 20 22:34:08 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[6]: Assigned to RFS process 2888
    RFS[6]: Identified database type as 'physical standby'
    RFS[6]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    Tue Jan 21 00:25:17 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[7]: Assigned to RFS process 3824
    RFS[7]: Identified database type as 'physical standby'
    RFS[7]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    Tue Jan 21 05:30:43 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[8]: Assigned to RFS process 4568
    RFS[8]: Identified database type as 'physical standby'
    RFS[8]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    Tue Jan 21 10:00:24 2014
    Redo Shipping Client Connected as PUBLIC
    -- Connected User is Valid
    RFS[9]: Assigned to RFS process 3860
    RFS[9]: Identified database type as 'physical standby'
    RFS[9]: Successfully opened standby log 10: 'D:\MAXIMODATA\ORADATA\MAXPROD\STANDBY10'
    I Aler log I can see curent los are applying but due to MRP process is not active no more log syncing.
    Following process running in standby db but not MRP
    SQL> select process,status,sequence# from v$managed_standby;
    PROCESS   STATUS        SEQUENCE#
    ARCH      CLOSING           10195
    ARCH      CLOSING           10197
    ARCH      CLOSING           10198
    ARCH      CLOSING           10199
    ARCH      CLOSING           10200
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    PROCESS   STATUS        SEQUENCE#
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    PROCESS   STATUS        SEQUENCE#
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CONNECTED             0
    ARCH      CLOSING           10194
    RFS       IDLE                  0
    RFS       IDLE                  0
    RFS       IDLE                  0
    PROCESS   STATUS        SEQUENCE#
    RFS       IDLE                  0
    RFS       IDLE                  0
    RFS       IDLE                  0
    36 rows selected.
    And logs difference is also growing day by day.
    SQL> SELECT ARCH.THREAD# "Thread", ARCH.SEQUENCE# "Last Sequence Received", APPL
    .SEQUENCE# "Last Sequence Applied", (ARCH.SEQUENCE# - APPL.SEQUENCE#) "Differenc
    e"
      2  FROM
      3  (SELECT THREAD# ,SEQUENCE# FROM V$ARCHIVED_LOG WHERE (THREAD#,FIRST_TIME )
    IN (SELECT THREAD#,MAX(FIRST_TIME) FROM V$ARCHIVED_LOG GROUP BY THREAD#)) ARCH,
      4  (SELECT THREAD# ,SEQUENCE# FROM V$LOG_HISTORY WHERE (THREAD#,FIRST_TIME ) I
    N (SELECT THREAD#,MAX(FIRST_TIME) FROM V$LOG_HISTORY GROUP BY THREAD#)) APPL
      5  WHERE
      6  ARCH.THREAD# = APPL.THREAD#
      7  ORDER BY 1;
        Thread Last Sequence Received Last Sequence Applied Difference
             1                  10200                 10180         20
    Below are sga,pga parameters:
    SQL> sho parameter sga
    NAME                                 TYPE        VALUE
    lock_sga                             boolean     FALSE
    pre_page_sga                         boolean     FALSE
    sga_max_size                         big integer 4G
    sga_target                           big integer 1536M
    SQL> sho parameter pga
    NAME                                 TYPE        VALUE
    pga_aggregate_target                 big integer 194967296
    I have SR to Oracle support but not reply yet.
    Please help me the find out the solution.
    Regards,
    Meena

    Hi
    Did you these notes
    Doc ID 1327018.1
    Doc ID 456801.1
    Regards

  • Catching errors such as divide by zero and typing non-numeric characters

    Fellows: How do I extend following script to catch errors such as divide by zero and typing non-numeric characters.      Thanks
    This program takes two integers (whole numbers), then displays the sum, average, division,
    Modula of those numbers and finally the first number raised to the power of the second number.
    import java.io.*;
    public class HWOne
         public static void main(String[] args) throws IOException  // error handling
              // variable declaration
              String firstdigit, seconddigit;
              int first, second, sum, total, modus, power;
              float division;
              double average;
              BufferedReader myIn = new BufferedReader(new InputStreamReader(System.in));
              //Invoke user response
              System.out.print("Please enter first digit ");
                   firstdigit = myIn.readLine();
                   first = Integer.parseInt(firstdigit);
              System.out.print("Please enter second digit ");
                   seconddigit = myIn.readLine();
                   second = Integer.parseInt(seconddigit);
              //computations
              sum = first + second;
              average = (double)sum / (double)2;
              division = (float)first / (float)second;
              modus = first % second;
              power = (int)Math.pow(first, second);
              //Screen message
              System.out.println("Sum: " + sum);
              System.out.println("Average: " + average);
              System.out.println("Division: " + division);
              System.out.println("Modula: " + modus);
              System.out.println("Power: " + power);

    Have you learnt about try/catch statements yet?
    The parseInt method throws a NumberFormatException. So you place the call to that method inside a try statement and catch the exception.
    For divide by zero, you can use an if statement. If the divisor != 0 perform division.

  • ORA-07445 on Ubuntu 8.04

    Hello,
    I manage Oracle Database 10g Express Edition Release 10.2.0.1.0 on a Linux Ubuntu 8.04 server for some students.
    I've installed the package oracle-xe-universal
    Simple queries works fine but some like this one does'nt work :
    SQL> select nomf, nomp, prixp from ( commande co join client c on co.numc=c.numc ) join (produit p join fournisseur f on p.numf=f.numf ) on p.nomp=co.nomp where ( nomc = 'Jean');
    select nomf, nomp, prixp from ( commande co join client c on co.numc=c.numc ) join (produit p join fournisseur f on p.numf=f.numf ) on p.nomp=co.nomp where ( nomc = 'Jean')
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Then, if I try any other querie I have the following error :
    ERROR:
    ORA-03114: not connected to ORACLE
    Here is what it gives on alert_XE.log :
    Fri Feb 12 10:35:43 2010
    Errors in file /usr/lib/oracle/xe/app/oracle/admin/XE/udump/xe_ora_25191.trc:
    ORA-07445: exception encountered: core dump [koksspac()+211] [SIGSEGV] [Address not mapped to object] [0x48] [] []
    Can somebody help me ?

    I don't agree that the result (ora-7445, which is in fact an internal error) should occur in any circumstances.
    but, the platform isn't supported. so you don't have anywhere to go but to rewrite the sql and see if that works.
    if your question is answered, please mark the question as answered!

  • I'm getting ORA-07445 [kksLockDelete()+465] errors on a 10.2.0.3 Database

    Hello
    I am getting the following Error on our database when I run a procedure that takes many hours to complete:
    Mon Aug 23 10:39:43 2010
    Errors in file /oracle/admin/HLBCP/bdump/hlbcp_j000_27898.trc:
    ORA-07445: exception encountered: core dump [kksLockDelete()+465] [SIGSEGV] [Invalid permissions for mapped object [0x000000048] [] []
    It seems that when the DB is under pressure or a select with a large result set is executed this error occurs, and kills my procedure
    As I understand that SIGSEGV refers to OS (C Compiler) / Hardware issues? Is this correct?
    How can I test the OS and Compiler to ensure they are in a healthy condition?
    I Currently have an SR opened with Oracle but they are saying that 10.2.0.3 is desupported and will not be able to provide a fix.
    Upgrading to 10.2.0.4 is not an option for us.
    This particular database is contingency database (Using Dataguard)
    However from time to time we taken a Copy of the Contingency database and open in it on the contingency server to test it.
    (hence we discovered this issue)
    I am convinced that the issue we are having is hardware/OS related, as it does not happen on our Live Database which is on a different server.
    Has anyone encountered this issue before?
    How did you resolved it?
    _=The Output of the trace file=_
    /oracle/admin/MYDB1/bdump/MYDB1_j000_27898.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning and Data Mining options
    ORACLE_HOME = /oracle/database/10.2.0/db_1
    System name: HP-UX
    Node name: my_server
    Release: B.11.23
    Version: U
    Machine: ia64
    Instance name: MYDB1
    Redo thread mounted by this instance: 1
    Oracle process number: 22
    Unix process pid: 27898, image: oracle@my_server (J000)
    *** 2010-08-23 10:39:43.271
    *** ACTION NAME:(Transact MY Payments) 2010-08-23 10:39:43.270
    *** MODULE NAME:(MY_payment_pkg.transact;) 2010-08-23 10:39:43.270
    *** SERVICE NAME:(SYS$USERS) 2010-08-23 10:39:43.270
    *** SESSION ID:(303.22) 2010-08-23 10:39:43.270
    Exception signal: 11 (SIGSEGV), code: 2 (Invalid permissions for mapped object), addr: 0x48, PC: [0x4000000002a9a431, kksLockDelete()+465]
    r1: 60000000000b8f00 r20: c000000040e38fa0 br5: 0
    r2: c000000040e0c4e8 r21: 82 br6: c0000000003429b0
    r3: 0 r22: 80 br7: 4000000002a513f0
    r4: 0 r23: 0 ip: 4000000002a9a431
    r5: c000000000000408 r24: 9ffffffffcf73f30 iipa: 0
    r6: c00000000004f190 r25: c0000001edb7af58 cfm: c1e
    r7: 9ffffffffd7f8f58 r26: 4 um: 1a
    r8: c0000001f421a1d0 r27: c0000001edb7afc0 rsc: 1f
    r9: c0000001f4216b08 r28: 1fcd0 bsp: 9ffffffffd804708
    r10: c0000001f421a0c0 r29: c0151476 bspstore: 9ffffffffd804708
    r11: 0 r30: 0 rnat: ffffffff00000000
    r12: 9ffffffffffd3200 r31: c0151476 ccv: 1
    r13: 9ffffffffd465420 NaTs: 0 unat: 0
    r14: 12f00000000 PRs: 1c6c7 fpsr: 9804c8a74433f
    r15: c0000001f4216ab8 br0: 4000000002a9a3e0 pfs: c000000000000c1e
    r16: b br1: c0000000001f0c00 lc: 0
    r17: c0000001ec873e18 br2: 0 ec: 0
    r18: ffffffff br3: 0 isr: 9ffffffffd804708
    r19: c000000040e0a890 br4: 0 ifa: 0
    Reason code: 001c
    *** 2010-08-23 10:39:43.340
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [kksLockDelete()+465] [SIGSEGV] [Invalid permissions for mapped object] [0x000000048] [] []
    Current SQL statement for this session:
    SELECT COl1 , COL2 , NVL(COL3,0) , NVL(COL4,0) , NVL(COL5,0) FROM MY_PRODUCTS MP1 WHERE MP1.COL6 = :B2 AND DP1.COL3 = :B1
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    c0000001f41d2000 773 SCHEMA_OWNER.MY_TRANSACTIONRS
    c0000001f41e0088 237 package body SCHEMA_OWNER.MY_PAYMENT_PKG
    c0000001f41e0088 582 package body SCHEMA_OWNER.MY_PAYMENT_PKG
    c0000001f41e0a28 1 anonymous block
    c0000001f41e96b8 44 package body SCHEMA_OWNER.MY_JOB_PKG
    c0000001f41e96b8 181 package body SCHEMA_OWNER.MY_JOB_PKG
    c0000001f4209140 537 package body SCHEMA_OWNER.MY_JOB_SCHEDULE_PKG
    c0000001f4209140 573 package body SCHEMA_OWNER.MY_JOB_SCHEDULE_PKG
    c0000001f425b9e8 791 package body SCHEMA_OWNER.MY_PKG
    c0000001f4215df8 1 anonymous block
    Edited by: Grahambo on Aug 23, 2010 4:04 AM
    Edited by: Grahambo on Aug 23, 2010 4:05 AM

    I have already contacted oracle support
    they say 10.2.0.3 is now de supported and will not be able to provide a fix
    I have also tried the ora-600 look up tool but the BUG:
    Bug:4704981
    Is non-public

  • SSRS Expression divide by zero error

    Hi, I am getting an error in SSRS calculating the field that potentially divide by zero. may i ask your help to fix this issue. thanks.
    =First(Fields!CEQ_all.Value, "DailyUpdates_DS") = value is zero
    =Sum(Fields!Prod_Plan_Yield.Value, "DailyUpdates_DS")= value is 0.16
    --This is the codes in my field expression
    =IIF(First(Fields!CEQ_all.Value, "DailyUpdates_DS")>Sum(Fields!Prod_Plan_Yield.Value, "DailyUpdates_DS"),Sum(Fields!Prod_Plan_Yield.Value, "DailyUpdates_DS")/First(Fields!CEQ_all.Value, "DailyUpdates_DS"),1)

    try like this
    =IIF(First(Fields!CEQ_all.Value, "DailyUpdates_DS")>Sum(Fields!Prod_Plan_Yield.Value, "DailyUpdates_DS"),Sum(Fields!Prod_Plan_Yield.Value, "DailyUpdates_DS")/IIF(First(Fields!CEQ_all.Value, "DailyUpdates_DS")>0,First(Fields!CEQ_all.Value, "DailyUpdates_DS"),Nothing),1)
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Attempted to divide by zero. Error while executing the script

    Hi All,
    I using a script I found long back and I'm trying to use to get disk space info from different servers with separate credentials.
    I'm getting the below error and it has eaten my head but I'm not able to figure out where the problem lies in the code.
    Attempted to divide by zero.
    At D:\psscripts\ww.ps1:92 char:26
    + $freePercent = ($frspace/ <<<< $totSpace)*100
    + CategoryInfo : NotSpecified: (:) [], RuntimeException
    + FullyQualifiedErrorId : RuntimeException
    I'm open to use any other way to find me Disk Space with different credentials..here security isn't a question.
    This script uses computers.csv to reference the computer name and the referenced credentials in the script.
    Thanks in advance
    $freeSpaceFileName = "c:\script\FreeSpace.htm"
    $warning = 50
    $critical = 30
    New-Item -ItemType file $freeSpaceFileName -Force
    $ComputerList = Import-Csv -Path d:\Computers.csv;
    $CredentialList = @{
    Cred1 = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList 'laptop-pc\administrator', (ConvertTo-SecureString -String 'tamboli' -AsPlainText -Force);
    Cred2 = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList 'contoso\administrator', (ConvertTo-SecureString -String 'Atlantic12' -AsPlainText -Force);
    Function writeHtmlHeader
    param($fileName)
    $date = ( get-date ).ToString('dd/MM/yyyy HH:mm:ss')
    Add-Content $fileName "<html>"
    Add-Content $fileName "<head>"
    Add-Content $fileName "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>"
    Add-Content $fileName '<meta http-equiv="refresh" CONTENT="5">'
    Add-Content $fileName '<title>All Servers DiskSpace Report&copy;</title>'
    add-content $fileName '<STYLE TYPE="text/css">'
    add-content $fileName "<!--"
    add-content $fileName "td {"
    add-content $fileName "font-family: Tahoma;"
    add-content $fileName "font-size: 20px;"
    add-content $fileName "border-top: 1px solid #999999;"
    add-content $fileName "border-right: 1px solid #999999;"
    add-content $fileName "border-bottom: 1px solid #999999;"
    add-content $fileName "border-left: 1px solid #999999;"
    add-content $fileName "padding-top: 0px;"
    add-content $fileName "padding-right: 0px;"
    add-content $fileName "padding-bottom: 0px;"
    add-content $fileName "padding-left: 0px;"
    add-content $fileName "}"
    add-content $fileName "body {"
    add-content $fileName "margin-left: 5px;"
    add-content $fileName "margin-top: 5px;"
    add-content $fileName "margin-right: 0px;"
    add-content $fileName "margin-bottom: 10px;"
    add-content $fileName ""
    add-content $fileName "table {"
    add-content $fileName "border: thin solid #000000;"
    add-content $fileName "}"
    add-content $fileName "-->"
    add-content $fileName "</style>"
    Add-Content $fileName "</head>"
    Add-Content $fileName "<body>"
    add-content $fileName "<br></br>"
    add-content $fileName "<table width='100%' align=center>"
    add-content $fileName "<tr bgcolor='#CCCCCC'>"
    add-content $fileName "<td colspan='7' height='25' align='center'>"
    add-content $fileName "<font face='tahoma' color='#003399' size='5'><strong>All Servers DiskSpace Report &copy; - $date</strong></font>"
    add-content $fileName "</td>"
    add-content $fileName "</tr>"
    add-content $fileName "</table>"
    add-content $fileName "<br></br>"
    # Function to write the HTML Header to the file
    Function writeTableHeader
    param($fileName)
    Add-Content $fileName "<tr bgcolor=#CCCCCC>"
    Add-Content $fileName "<td width='10%' align='center'>Drive</td>"
    Add-Content $fileName "<td width='50%' align='center'>Drive Label</td>"
    Add-Content $fileName "<td width='10%' align='center'>Total Capacity(GB)</td>"
    Add-Content $fileName "<td width='10%' align='center'>Used Capacity(GB)</td>"
    Add-Content $fileName "<td width='10%' align='center'>Free Space(GB)</td>"
    Add-Content $fileName "<td width='10%' align='center'>Freespace %</td>"
    Add-Content $fileName "</tr>"
    Function writeHtmlFooter
    param($fileName)
    Add-Content $fileName "</body>"
    Add-Content $fileName "</html>"
    Function writeDiskInfo
    param($fileName,$devId,$volName,$frSpace,$totSpace)
    $totSpace=[math]::Round(($totSpace/1073741824),2)
    $frSpace=[Math]::Round(($frSpace/1073741824),2)
    $usedSpace = $totSpace - $frspace
    $usedSpace=[Math]::Round($usedSpace,2)
    $freePercent = ($frspace/$totSpace)*100
    $freePercent = [Math]::Round($freePercent,0)
    if ($freePercent -gt $warning)
    Add-Content $fileName "<tr>"
    Add-Content $fileName "<td>$devid</td>"
    Add-Content $fileName "<td>$volName</td>"
    Add-Content $fileName "<td>$totSpace</td>"
    Add-Content $fileName "<td>$usedSpace</td>"
    Add-Content $fileName "<td>$frSpace</td>"
    Add-Content $fileName "<td>$freePercent</td>"
    Add-Content $fileName "</tr>"
    elseif ($freePercent -le $critical)
    Add-Content $fileName "<tr>"
    Add-Content $fileName "<td>$devid</td>"
    Add-Content $fileName "<td>$volName</td>"
    Add-Content $fileName "<td>$totSpace</td>"
    Add-Content $fileName "<td>$usedSpace</td>"
    Add-Content $fileName "<td>$frSpace</td>"
    Add-Content $fileName "<td bgcolor='#FF0000' align=center>$freePercent</td>"
    #<td bgcolor='#FF0000' align=center>
    Add-Content $fileName "</tr>"
    else
    Add-Content $fileName "<tr>"
    Add-Content $fileName "<td>$devid</td>"
    Add-Content $fileName "<td>$volName</td>"
    Add-Content $fileName "<td>$totSpace</td>"
    Add-Content $fileName "<td>$usedSpace</td>"
    Add-Content $fileName "<td>$frSpace</td>"
    Add-Content $fileName "<td bgcolor='#FBB917' align=center>$freePercent</td>"
    # #FBB917
    Add-Content $fileName "</tr>"
    foreach ($computer in $ComputerList)
    Get-WmiObject -ComputerName $Computer.Name -Class Win32_LogicalDisk -Credential $CredentialList[$Computer.Credential] | Where-Object {$_.drivetype -eq 3}
    Write-Host $item.DeviceID $item.VolumeName $item.FreeSpace $item.Size
    writeDiskInfo $freeSpaceFileName $item.DeviceID $item.VolumeName $item.FreeSpace $item.Size
    writeHtmlHeader $freeSpaceFileName
    foreach($computer.Name in Get-Content Computers.csv)
    Add-Content $freeSpaceFileName "<table width='100%'><tbody>"
    Add-Content $freeSpaceFileName "<tr bgcolor='#CCCCCC'>"
    Add-Content $freeSpaceFileName "<td width='100%' align='center' colSpan=6><font face='tahoma' color='#003399' size='2'><strong> $server</strong></font></td>"
    Add-Content $freeSpaceFileName "</tr>"
    Add-Content $freeSpaceFileName "<br>"
    writeTableHeader $freeSpaceFileName
    Thanks,

    Hi Taher,
    You got the error "Attempted to divide by zero.", because the input variable $totSpace is null, please note the variable $item when you invoked the function writeDiskInfo:
    >>Get-WmiObject -ComputerName $Computer.Name -Class Win32_LogicalDisk -Credential $CredentialList[$Computer.Credential] |  Where-Object {$_.drivetype -eq 3}
    >>Write-Host  $item.DeviceID  $item.VolumeName $item.FreeSpace $item.Size
    >>writeDiskInfo $freeSpaceFileName $item.DeviceID $item.VolumeName $item.FreeSpace $item.Size
    And you haven't defined the variable $item before you used it, so please refer to the script below:
    foreach ($computer in $ComputerList)
    $items = Get-WmiObject -ComputerName $Computer.Name -Class Win32_LogicalDisk -Credential $CredentialList[$Computer.Credential] | Where-Object {$_.drivetype -eq 3}
    foreach($item in $items){
    Write-Host $item.DeviceID $item.VolumeName $item.FreeSpace $item.Size
    writeDiskInfo $freeSpaceFileName $item.DeviceID $item.VolumeName $item.FreeSpace $item.Size}
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • ORA-07445 error

    Hi All,
    I got following error while running a plsql package which accesses data from cube(using DBMS_AW.execute). Olap version: 11.2.0.1
    Message: Access violation errors have been found in the alert log.
    Info from trace file:
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0xFFFFFFFFFFFFFFF4] [PC:0x2A3C79A, xsFSOSIZE()+4] [flags: 0x0, count: 1]
    Incident 561 created, dump file: /u1/oracle/diag/rdbms/andb/ANDB4/incident/incdir_561/ANDB4_ora_26892_i561.trc
    ORA-07445: exception encountered: core dump [xsFSOSIZE()+4] [SIGSEGV] [ADDR:0xFFFFFFFFFFFFFFF4] [PC:0x2A3C79A] [Address not mapped to object] []
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    Any idea on this?
    Thanks

    I am also facing the error and the same error is appeared in the alert.log frequently . Please help to resolve it
    ORA-07445: exception encountered: core dump [kkqljpmpr()+30] [SIGSEGV] [ADDR:0x78] [PC:0x1CB9322] [Address not mapped to object] []
    Thu Nov 03 17:39:49 2011
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x78] [PC:0x1CB9322, kkqljpmpr()+30] [flags: 0x0, count: 1]
    Errors in file /data/applications/oracle/diag/rdbms/orcl/orcl/trace/orcl_ora_8293.trc (incident=17700):
    ORA-07445: exception encountered: core dump [kkqljpmpr()+30] [SIGSEGV] [ADDR:0x78] [PC:0x1CB9322] [Address not mapped to object] []
    Thu Nov 03 17:40:33 2011
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x78] [PC:0x1CB9322, kkqljpmpr()+30] [flags: 0x0, count: 1]
    Errors in file /data/applications/oracle/diag/rdbms/orcl/orcl/trace/orcl_ora_8299.trc (incident=17683):
    ORA-07445: exception encountered: core dump [kkqljpmpr()+30] [SIGSEGV] [ADDR:0x78] [PC:0x1CB9322] [Address not mapped to object] []
    Thu Nov 03 17:40:35 2011
    Sweep [inc][17700]: completed
    Sweep [inc][17683]: completed
    Sweep [inc][17652]: completed
    Thu Nov 03 17:41:28 2011

  • ORA-07445 (solaris 9.0.) when inserting into LONG column

    i am getting a core-dump when inserting into a table w/ long column. running 9.0.1 on solaris.
    ORA-07445: exception encountered: core dump [kghtshrt()+68] [SIGSEGV] [Address not mapped to object] [0x387BBF0] [] []
    if anyone has ANY input - please provide it ... i am desperate at this point.
    i am trying to avoid upgrading to 9.2.0 to solve this problem.
    regards -
    jerome

    You should report this in a service request on http://metalink.oracle.com.
    It is a shame that you put all the effort here to describe your problem, but on the other hand you can now also copy & paste the question to Oracle Support.
    Because you are using 10.2.0.3; I am guessing that you have a valid service contract...

  • Ora-07445 reported in the alert log file

    Hi all,
    We are using the following platform:-
    OS: Solaris Operating System (SPARC 32-bit)
    Oracle Server - Enterprise Edition / Product Version: 9.2.0.5.0
    We encountered the following problem:-
    There is Ora-07445 reported in the alert log file.
    "ORA-07445: exception encountered: core dump [kgghash()+308] [SIGSEGV] [Address not mapped to object] [0x3222
    000] [] []reported in the database."
    These errors are signaled in more than 3 independent, unexplained, occurrences every day.
    When this error occurred while User was accessing the application system, by right the case will be shown on the system, but they were no case found.
    alert log are as below:-
    Fri Jul 27 09:12:30 2007
    Errors in file /disc3/oracle9205/RFDB/udump/rfdb_ora_27371.trc:
    ORA-07445: exception encountered: core dump [kgghash()+340] [SIGSEGV] [Address not mapped to object] [0x3184000] [] []
    Fri Jul 27 09:22:10 2007
    Thread 1 advanced to log sequence 10730
    Current log# 2 seq# 10730 mem# 0: /disc3/oracle9205/RFDB/RDO/logRFDB2a.rdo
    Current log# 2 seq# 10730 mem# 1: /disc3/oracle9205/RFDB/RDO/logRFDB2b.rdo
    Fri Jul 27 09:29:26 2007
    Errors in file /disc3/oracle9205/RFDB/udump/rfdb_ora_27372.trc:
    ORA-07445: exception encountered: core dump [kgghash()+296] [SIGSEGV] [Address not mapped to object] [0x3182000] [] []
    The applications have encountered ora-3113 after a short period of time followed by ora-3114.
    application log:-
    RF0120-1 2007-Jul-27 09:46:57] Load m[RF0120-1 2007-Jul-27 09:29:30] SQLCODE: -3113
    [RF0120-1 2007-Jul-27 09:29:30] Error Code -4105 returning from get score pan no.
    [RF0120-1 2007-Jul-27 09:29:30] Message type :120
    [RF0120-1 2007-Jul-27 09:29:30] Primary Account Number(PAN) DE0
    02 :5440640155262702
    [RF0120-1 2007-Jul-27 09:29:30] Processing code DE003 :003000
    [RF0120-1 2007-Jul-27 09:29:30] Transaction amount DE004 :000000000001
    [RF0120-1 2007-Jul-27 09:29:30] Settlement amount DE005 :000000000000
    [RF0120-1 2007-Jul-27 09:29:30] Transmission Date and time
    DE007 :0727092717
    [RF0120-1 2007-Jul-27 09:29:30] Settlement conversion rate DE009 :60263158
    [RF0120-1 2007-Jul-27 09:29:30] System trace audit no. DE011 :754710
    [RF0120-1 2007-Jul-27 09:29:30] Local transaction time DE012 :092717
    [RF0120-1 2007-Jul-27 09:29:30] Local transaction date DE013 :0727
    [RF0120-1 2007-Jul-27 09:29:30] Expiration date D
    E014 :0712
    [RF0120-1 2007-Jul-27 09:29:30] Settlement date DE015 :0727
    [RF0120-1 2007-Jul-27 09:29:30] Merchant type DE018 :5311
    [RF0120-1 2007-Jul-27 09:29:30] Point-of-service(POS) entry code DE022 :051
    [RF0120-1 2007-Jul-27 09:29:30] Acquiring inst. ID code DE032 :001912
    [RF0120-1 2007-Jul-27 09:29:30] Forwarding Inst. ID code DE033 :001912
    [RF0120-1 2007-Jul-27 09:29:30] Retrieval ref. no.
    DE037 :754710356390
    [RF0120-1 2007-Jul-27 09:29:30] Autholization ID response DE038 :356390
    [RF0120-1 2007-Jul-27 09:29:30] Response code DE039 :00
    [RF0120-1 2007-Jul-27 09:29:30] Card acceptor terminal ID DE041 :19306002
    [RF0120-1 2007-Jul-27 09:29:30] Card acceptor ID code DE042 :000001106
    020132
    [RF0120-1 2007-Jul-27 09:29:30] Card acceptor Name/Location
    What could have caused the above mentioned errors i.e Ora-07445 ; ora-3113 / ora-3114? How to resolve the problem.
    Please help .
    Thanks.

    i am also facing the same some time in ora 9.2.0.6 on Sun OS 9 SPARC 64-bits
    Errors in file /oracle/oracle9i/admin/FINPROD/udump/finprod_ora_6076.trc:
    ORA-07445: exception encountered: core dump [0000000100FDE088] [SIGSEGV] [Address not mapped to object] [0x00000013A] [] []
    Thu Aug 30 08:52:39 2007
    Errors in file /oracle/oracle9i/admin/FINPROD/udump/finprod_ora_6078.trc:
    ORA-07445: exception encountered: core dump [0000000100FDE088] [SIGSEGV] [Address not mapped to object] [0x00000013A] [] []
    Thu Aug 30 09:41:49 2007

  • Linux 10g versus Windows XP 10g Issue - ORA-07445: exception encountered

    I did a full database export using exp from a 10g Linux database:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
    PL/SQL Release 10.2.0.2.0 - Production
    "CORE     10.2.0.2.0     Production"
    TNS for Linux: Version 10.2.0.2.0 - Production
    NLSRTL Version 10.2.0.2.0 - ProductionLinux version:
    Red Hat Enterprise Linux ES release 4 (Nahant Update 5)I installed Oracle 10g on Windows XP:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - ProductionWindows XP version is:
    System:
        Microsoft Windows XP
        Professional
        Version 2002
        Service Pack 3
    Intel(R) Core(TM)2 CPU
    6300 @ 1.86GHz
    1.86 GHz, 3.25 GM or RAMI performed a full database import after creating the required tablespaces from the 10g database on Linux to Windows.
    On the Windows 10g database, I set Maximum SGA size to 1300 MB, and Total SGA size to 1000 MB. I set Aggregate PGA Target to 500 MB.
    This Windows box is going to be used by at most 2 developers for a change to our application that is not backward compatible (with respect to the database) with earlier versions of the application that uses the database. I was asked to create this so we could develop this branch without affecting the rest of the development team that are working on other enhancements on the Linux box.
    I then ran some packages that refresh the data in a set of tables. This runs through some code that exercises a lot of the database so I could uncover any issues.
    At a specific point in the execution of these packages I get the following error:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [_qkkIsOJKey+299] [PC:0x1E58F73] [ADDR:0x80] [UNABLE_TO_READ] []I read the trace file and isolated it to a single, somewhat complex query. I tore the query apart into smaller queries, trying to isolate what was causing the issue. Whenever the core dump occurred, I was able to recover by simply closing the connection and opening a new connection. In my testing I found the specific query that raises the exception, and a less performing version of that query that does not cause the exception. Please note that this exception has never occurred on the Linux box (nor has it occurred on the beta or production database), and the code has been in place for close to 2 years.
    The code that causes the issue:
    SELECT UNIQUE
           oc.ogc_case_id AS oc_ogc_case_id,
           ogc.ogc_number AS ogc_number
      FROM (SELECT SUBSTR (REPLACE (afd.field_text, '-', '' ), 1, 6 )    AS ogc_number
              FROM ewoc_hw_snap.activity_field_data afd
             WHERE afd.afdcd_activity_field_data_key = (SELECT afdc.activity_field_data_key
                                                          FROM ewoc_hw_snap.activity_field_data_codes afdc
                                                         WHERE afdc.name = 'Case Number'
           ) ogc
      LEFT OUTER JOIN lct_snap.ogc_cases oc
            ON oc.ogc_number  = ogc.ogc_numberThe code that returns the same data, only slower, and does not raise the exception:
    SELECT UNIQUE
           (SELECT oc.ogc_case_id FROM lct_snap.ogc_cases oc WHERE oc.ogc_number = ogc.ogc_number ) AS oc_ogc_case_id,
           ogc.ogc_number AS ogc_number
      FROM (SELECT SUBSTR (REPLACE (afd.field_text, '-', '' ), 1, 6 )    AS ogc_number
              FROM ewoc_hw_snap.activity_field_data afd
             WHERE afd.afdcd_activity_field_data_key = (SELECT afdc.activity_field_data_key
                                                          FROM ewoc_hw_snap.activity_field_data_codes afdc
                                                         WHERE afdc.name = 'Case Number'
           ) ogcI executed both queries in SQL Developer version 3.0.04. SQL Developer gives the error message: No more data to read from socket
    Any ideas?
    The query shown above is as simple as I could pare it down to and still raise and then fix the issue. The fix to the package is not as simple as the second query shown above since there is more than one column of data that I need to return from the lct_snap.ogc_cases table. In any case, I shouldn't have to forgo using the LEFT OUTER JOIN. There must be something wrong with the Windows database. I didn't want to patch the Windows database without first checking on this forum to see if anyone had any less intensive potential solutions.
    I searched and found so many posts with the ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] error, that I realize it's a somewhat generic error message.
    Edited by: Starlight Rider on Jun 2, 2011 10:01 AM

    Check this metalink note : 452951.1
    Regards
    Raj

  • Problem Description: ORA-07445: exception encountered: core dump [drexumcx(

    Hi,
    let me know which solution option i wish to pursue:
    1. The fix for unpublished Bug 5160122 "TEXT QUERY DEADLOCK WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX]" is included in
    Oracle RDBMS 11.1.0 and newer. In Oracle RDBMS 11.1.0 and newer, this problem should no longer occur.
    OR
    2. The fix for unpublished Bug 5160122 "TEXT QUERY DEADLOCK WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX]" is included in
    Oracle RDBMS 10.2.0.5.0. With the 10.2.0.5.0 patchset installed, this problem should no longer occur.
    OR
    3. With the fix for unpublished Bug 5160122 "TEXT QUERY DEADLOCK WITH GATHER_STATS_JOB, THEN COREDUMP ORA-7445 [DREXUMCX]" installed
    against 10.2.0.4.0 on Linux x86-64, this problem should no longer occur.
    Regards.
    Prasad

    Problem Description: ORA-07445: exception encountered: core dump [drexumcx(
    stop MULTI-POSTING same problem

  • 11.1.0.7 solaris 两节点rac 因ora-07445 kjcvmsc()+232错误导致一个实例重启

    有一套两节点11.1.0.7版本的数据库,一节点因ora-07445 kjcvmsc()+232错误导致实例重启,在mos上没有查到关于ora-07445 kjcvmsc()+232的太多信息,请ML帮忙看下。
    alert日志报错信息
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x69] [PC:0x104C7A0A8, kjcvmsc()+232]
    Errors in file /export/home/oracle/oracle/diag/rdbms/statdb/statdb1/trace/statdb1_pmon_25373.trc  (incident=3048117):
    ORA-07445: exception encountered: core dump [kjcvmsc()+232] [SIGSEGV] [ADDR:0x69] [PC:0x104C7A0A8] [Address not mapped to object] []
    Incident details in: /export/home/oracle/oracle/diag/rdbms/statdb/statdb1/incident/incdir_3048117/statdb1_pmon_25373_i3048117.trc
    Fri Aug 24 22:58:22 2012
    Trace dumping is performing id=[cdmp_20120824225822]
    Errors in file /export/home/oracle/oracle/diag/rdbms/statdb/statdb1/trace/statdb1_pmon_25373.trc:
    ORA-00602: internal programming exception
    ORA-07445: exception encountered: core dump [kjcvmsc()+232] [SIGSEGV] [ADDR:0x69] [PC:0x104C7A0A8] [Address not mapped to object] []
    PMON (ospid: 25373): terminating the instance due to error 602
    System state dump is made for local instance
    System State dumped to trace file /export/home/oracle/oracle/diag/rdbms/statdb/statdb1/trace/statdb1_diag_25379.trc
    Fri Aug 24 22:58:27 2012
    ORA-1092 : opitsk aborting process报错里提到的trc都已经发到ML邮箱。
    因以前这个节点上运行SYS_AUTO_SQL_TUNING_TASK任务老如下报错,导致运行此任务的session一直挂起不释放,每天运行都会生成一个,pmon一直释放不了这些session。后来把这个任务disable掉后不再报如下错误了,但是以前运行的session还是挂在那里。
    Setting Resource Manager plan SCHEDULER[0x2C53]:DEFAULT_MAINTENANCE_PLAN via scheduler window
    Setting Resource Manager plan DEFAULT_MAINTENANCE_PLAN via parameter
    Mon Aug 20 22:00:08 2012
    Begin automatic SQL Tuning Advisor run for special tuning task  "SYS_AUTO_SQL_TUNING_TASK"
    Mon Aug 20 23:10:15 2012
    Process 0x0x69c01bf98 appears to be hung in Auto SQL Tuning task
    Current time = 1345475414, process death time = 1345475408
    Attempting to kill process 0x0x69c01bf98 with OS pid = 26066
    OSD kill succeeded for process 0x69c01bf98

    11.1.0.7.0 - 64bit Production + SunOS +RAC
    *** 2012-08-24 22:58:19.465
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x69] [PC:0x104C7A0A8, kjcvmsc()+232]
    *** 2012-08-24 22:58:19.803
    Incident 3048117 created, dump file: /export/home/oracle/oracle/diag/rdbms/statdb/statdb1/incident/incdir_3048117/statdb1_pmon_25373_i3048117.trc
    ORA-07445: exception encountered: core dump [kjcvmsc()+232] [SIGSEGV] [ADDR:0x69] [PC:0x104C7A0A8] [Address not mapped to object] []
    PMON: fatal error while deleting s.o. 6a0447338 in this tree:
    SO: 0x69c01afa0, type: 2, owner: 0x0, flag: INIT/-/-/0x00 if: 0x3 c: 0x3
    proc=0x69c01afa0, name=process, file=ksu.h LINE:10706 ID:, pg=1
    (process) Oracle pid:84, ser:17, calls cur/top: 0x6a7e299a0/0x0
              flags : (0x1) DEAD
              flags2: (0x10),  flags3: (0x0)
              int error: 0, call error: 0, sess error: 0, txn error 0
    ksudlp FALSE at location: 0
      (post info) last post received: 0 0 159
                  last post received-location: kcl2.h LINE:3650 ID:kclcget
                  last process to post me: 69c009030 1 6
                  last post sent: 0 0 41
                  last post sent-location: ksv2.h LINE:1600 ID:ksvpst: checkpool
                  last process posted by me: 758010ff0 140 0
      (latch info) wait_event=0 bits=0
      O/S info: user: oracle, term: UNKNOWN, ospid: 4402 (DEAD)
      OSD pid info: Unix process pid: 4402, image: oracle@nsstat1 (J001)pmon 在deleting SO 0x6a0447338的时候遇到了fatal error ORA-07445:kjcvmsc
    SO 0x6a0447338 对应一个分布式锁DX
        SO: 0x6a0447338, type: 69, owner: 0x69cf39fc0, flag: INIT/-/-/0x00 if: 0x1 c: 0x1
         proc=0x69c01afa0, name=k2q_lock, file=k2q.h LINE:489 ID:, pg=1
        (k2qlock) hdl=0x69d9c48f8, mod=0x1, cln=0x10a0d49e8 flg=0x00, typ=110, ilz=240
        Dumping DX instance lock value (healthy):
            mgc: QNXD id1: 0xa0a5a7f0 id2: 0xd156c8d8 fmtid: 0x0004ac1e gtrid: STATDB.54867ca2.7.29.7864844
            typ: 0x2 flg: 0x00000004 state: 0x01
            tottx: 2  txncnt: 1  ptcnt: 0  ftcnt: 0  lastx: 0
            totbr: 2  brncnt: 1  fbcnt: 0  bvec: 0x00000001
            prep uba: 0x00000000.0000.00 glbl sscn: 0x0000.00000000
            prep scn: 0xffff.ffffffff cmt scn: 0xffff.ffffffff
            Local txn information:
                xid: 0x0007.01d.0078020c uba: 0x00000000.0000.00 sscn: 0x0000.00000000 inst: 1 state: 0x9
            Branch information:
                id2: 0xd156c8d8 inst: 1 state: 0x0 uid: 0x00000041
    (k2g table)
    error 602 detected in background process
    ORA-00602: internal programming exception
    ORA-07445: exception encountered: core dump [kjcvmsc()+232] [SIGSEGV] [ADDR:0x69] [PC:0x104C7A0A8] [Address not mapped to object] []

Maybe you are looking for

  • [ERROR]While running appsTier

    Dear, We have problems when cloning applications from production to development. Problem encountered is when running "*appTier*". But by the time the process is running up a few errors, and enclosed them in an attachment. for the problem you can see

  • Installation Oracle 8.1.7 on RedHat 7.0

    I have the follow error-message on the installation of oracle 8.1.7 on a RedHat 7.0 : /oracle/ID1/lib//libagtsh.so: file not recognized: File format not recognized collect2: ld returned 1 exit status make: *** [oracle/ID1/rdbms/lib/extproc] Fehler 1

  • .rmt file missing from firmware download

    The readme file included with the firmware download zip file states to look for a .rmt file. There are only .txt files and a .bin file in the zip file. Are the instruction wrong/obsolete or should there be a .rmt file in the .zip file or is the .bin

  • Profit center wise reports

    How can we get profit center wise Trial balance P&L Balance sheet

  • CS2 PDF Export Presets

    Hi everyone. i managed it to export single pages as pdf from .indd files. (see http://www.adobeforums.com/webx/?13@@.59b67ccb/2) but now i wanna use diffrent presets like "high quality print" or something. i tried a few things but none of them worked