Hi, I am getting ora-600 during xml db installtion.

  2   stmt_basiclob   varchar2(3000);
  3   stmt_seclob     varchar2(3000);
  4  begin
  5    stmt_basiclob := ' create table XDB.XDB$RESOURCE of sys.xmltype ' ||
  6                     ' xmlschema "http://xmlns.oracle.com/xdb/XDBResource.xsd" ' ||
  7                     '      id ''' || '8758D485E6004793E034080020B242C6' || ''' ' ||
  8                     ' element "Resource" id 734 ' ||
  9                     ' type XDB.XDB$RESOURCE_T ';
10    stmt_seclob := stmt_basiclob || ' lob (xmldata.xmllob) store as securefile ';
11
12    if (:usesecfiles = 'YES') then
13     execute immediate stmt_seclob;
14    else
15     execute immediate stmt_basiclob;
16    end if;
17  end;
18  /
declare
ERROR at line 1:
ORA-00600: internal error code, arguments: [ktsladdfcb-bsz], [1], [], [], [], [], [], [], [], [], [], []
ORA-06512: at line 13
and below objects are invalid,
Warning: XDB now invalid, invalid objects found:
object_name                                 object_type
DBMS_XDB_ADMIN                             PACKAGE BODY
DBMS_RESCONFIG                             PACKAGE BODY
I have tried multiple times with dbca and manuall installtion. But still no luck? Requesting some expert advises. Thanks

In a forum of volunteers there is no such thing as urgent. Your of urgent must be considere abuse of this forum.
Also this is not an Oracle issue.
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • ORA-600 during Apply of patch 3.1.2.00.02

    I receice during installation of ApEx patch 3.1.2.00.02 following errors in the apxpatch.log
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kokegPinLob1], [], [], [], [], [],
    ORA-06512: at line 548
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kokegPinLob1], [], [], [], [], [],
    ORA-06512: at line 438
    I can reproduce the issue with a 11.1.0.6 or 10.2.0.4 database, but not with a 10.1.0.5 database.
    First I was thinking taht this issue realted to
    BUG: 6922966 SELECT QUERY WITH TABLE CONTAIN CLOB COLUMN ORA-600 [KOKEGPINLOB1]
    but applying one off patch for this bug on Linux x86 using a 10.2.0.4 database not solving the issue.
    Any ideas?
    Other people who see this error?
    it seems that ApEx working fine after patch installation and the errors can be ignored, but I cannot be sure about it.

    These errors are definetly caused by the 2 scripts mentioned above (and bellow):
    1. patch/patches/3.1.2/patch_6988690.sql
    2. patch/patches/3.1.2/patch_7298321.sql
    Also I was able to reproduce the issue internally.
    These errors are encountered when there is at least one additional language loaded beside English.
    These 2 patch scripts are updating the wwv_flow_page_plugs with an UPDATE statement similar with the following one:
    update wwv_flow_page_plugs
    set plug_source = s
    where flow_id between 4400 and 4409 ...
    In this case 4400 is the flow_id for the Application Migration Project. For a default installation this ID is the only within the interval [4400,4409]
    If you load an additional language (like French) then an additional flow_id is created for that language (like 4402).
    The above UPDATE statement works successfully when there is only 1 row to be updated but fails if it finds 2 rows.
    This seems to be related with the size of the "s" variable that is being constructed in these 2 scripts.
    I have filled Bug 7451277 for this issue. This is currently being screened.
    Regards,
    Bogdan

  • Getting ora-01756 during IMPORT of (packaged) application

    Hi experts,
    I am trying to install one of the packaged apps from otn into my APEX 3.1 on XE under WinXP and get the following error.
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of statement was unsuccessful. ORA-01756: ...
    Error installing application.
    Same thing happens when IMPORING an app into the same Workspace from which I have EXPORTED it.
    It installs properly on apex.oracle.com!!
    Possibly it has to do with NLS SETTINGS for Switzerland?
    Grand separator in numerical characters could be '
    Any ideas, anyone with the same problems?
    Thanks in front,
    Lutz
    Edited by: [email protected] on Dec 11, 2008 7:59 PM
    Edited by: [email protected] on Dec 11, 2008 8:16 PM
    Edited by: [email protected] on Dec 11, 2008 8:26 PM

    I have found a workaround:
    instead of using a Swiss OS I installed a German version of WIN XP
    now everything works fine.
    I guess it has to do with a ' which is missing somewhere in the code.
    With Swiss locale ' is used as a grand separator which might cause the ORA-01756 thrown by the installer.
    BR,
    Lutz
    =;-)

  • ORA 600 [kkqvmRmViewFromLst1] error

    Hi,
    I am using Binary XML DB .
    Here is the DB banner info.
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    "CORE 11.2.0.1.0 Production"
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    I am getting ORA 600 [kkqvmRmViewFromLst1] error while executing a query
    SELECT AGTAB1.AGREEMENT_ID AS agreement_ID
         FROM TNMAB_AGREEMENT_XML A ,
         XMLTable('/Agreement'
         PASSING A.AGREEMENT_XML COLUMNS AGREEMENT_ID VARCHAR2(20) path 'Identifier' ,
         SHP_PTY_CUST_HOLDER XMLType PATH 'ShippingPartyGroups/ShippingParties/CustomerHolder' ,
         NAMED_CUSTOMER_GROUPS XMLType PATH 'NamedCustomerGroups/NamedCustomer/SAP_IDs/StringWrappers' ) AGTAB1 ,
         XMLTable('/Agreement'
         PASSING A.AGREEMENT_XML COLUMNS NAMED_CUSTOMER_GROUPS XMLType PATH 'NamedCustomerGroups/NamedCustomer/SAP_IDs/StringWrappers' ) AGTAB2 ,
         XMLTable('/CustomerHolder' PASSING AGTAB1.SHP_PTY_CUST_HOLDER
         COLUMNS SAP_ID VARCHAR2(10) PATH 'SAP_ID') x2,
         XMLTable('/StringWrappers'
         PASSING AGTAB2.NAMED_CUSTOMER_GROUPS COLUMNS SAP_ID VARCHAR2(10) PATH 'SAP_ID') x3      
         WHERE (X2.SAP_ID IN ('3163494000') OR
         X3.SAP_ID IN ('3163494000')) group by AGTAB1.AGREEMENT_ID
    Please advise
    Thanks

    I am getting ORA 600 [kkqvmRmViewFromLst1] error while executing a queryAn ORA 600 error is a untrapped oracle software error an should be dealt with by creating an SR (service request) via support.oracle.com

  • ORA-04031 during export on CTX-index

    Hi !
    I get ORA-04031 during export when an interMedia CTX-Index should get exported. The exact error message is:
    unable to allocate 4072 bytes of shared memory ("shared pool", "DBMS_SYS_SQL", "PL/SQL MPCODE", "BAMIMA: BAM Buffer")
    followed by
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: in "SYS.DBMS_SQL", line 9
    ORA-06512: in "SYS.DBMS_EXPORT_EXTENSION", line 244
    Any hints for me what I could do?
    TIA,
    Stefan

    Interesting.  You should open a  thread with a more relevant title about views with pk / fk constraints.
    I don't have a way to solve your problem --- to identify such views.
    Hemant K Chitale

  • Problem with generating xml and nested cursor (ora-600)

    I have a problem with generating xml (with dbms_xmlquery or xmlgen) and nested cursors.
    When I execute the following command, I get a ORA-600 error:
    select dbms_xmlquery.getxml('select mst_id
    , mst_source
    , cursor(select per.*
    , cursor(select ftm_fdf_number
    , ftm_value
    from t_feature_master
    where ftm_mstr_id = pers_master_id ) as features
    from t_person per
    where pers_master_id = mst_id ) as persons
    from f_master
    where mst_id = 3059435')
    from dual;
    <?xml version = '1.0'?>
    <ERROR>oracle.xml.sql.OracleXMLSQLException: ORA-00600: internal error code, arguments: [kokbnp2], [1731], [], [], [], [], [], []
    </ERROR>
    The problem is the second cursor (t_feature_master).
    I want to generate this:
    <master>
    <..>
    <persons>
    <..>
    <features>
    <..>
    </features>
    </persons>
    <persons>
    <..>
    <features>
    <..>
    </features>
    </persons>
    </master>
    If i execute the select-statement in sql-plus, then I get the next result.
    MST_ID MST_SOURCE PERSONS
    3059435 GG CURSOR STATEMENT : 3
    CURSOR STATEMENT : 3
    PERS_MASTER_ID PERS_TITLE PERS_INITI PERS_FIRSTNAME PERS_MIDDL PERS_LASTNAME
    3059435 W. Name
    CURSOR STATEMENT : 15
    FTM_FDF_NUMBER FTM_VALUE
    1 [email protected]
    10 ....
    I use Oracle 8.1.7.4 with Oracle XDK v9.2.0.5.0.
    Is this a bug and do somebody know a workaround?

    Very simple...Drop all type objects and nested tables and create them again. You will get no error. I'll explain the reason later.

  • I get Ora-00600 when I try to fetch large data via Xml

    Hi all
    I user Oracle8i ver 8.1.6, when I execute the following
    procedure:
    PROCEDURE TTG_EXEC_SQL (SELECT_STATMENT in VarChar2, Result Out
    Clob, err_no Out Number) IS
    -- This Procedure excutes SELECT command and return the result
    data throw Xml CLOB parameter.
    QueryCtx DBMS_XMLquery.CtxType;
    ErrorNum NUMBER;
    ErrorMsg VARCHAR2(200);
    RES1 CLOB;
    Begin
    QueryCtx := DBMS_XMLQuery.NewContext( Select_Statment );
    DBMS_XMLQuery.setRaiseException(QueryCtx, true);
    DBMS_XMLQuery.setRaiseNoRowsException(QueryCtx, true);
    DBMS_XMLQuery.propagateOriginalException(QueryCtx,true);
    ResULT := DBMS_XMLQuery.getXML(QueryCtx);
    DBMS_XMLQuery.CloseContext(QueryCtx);
    Exception
    when others then
    DBMS_XMLQuery.getExceptionContent (QueryCtx,ErrorNum,
    ErrorMsg);
    ERR_NO := NVL(ErrorNum,0);
    END;
    I get Ora-00600 error when the retrived data is more than 800
    records.
    can any one help me Pls ASAP.
    THNX
    Husam

    Can you get the query result with SQL command alone?

  • Getting ORA-17629 and ORA-17627 during setting up of data guard

    Hi All,
    I am working on data guard setup, and getting ORA-17629 and ORA-17627. The orapwd file was copied to DR server, but still getting the same error when doing a duplicate database command.
    RMAN> run{
    2> allocate channel c1 type disk;
    3> allocate channel c2 type disk;
    4> allocate auxiliary channel a1 type disk;
    5> allocate auxiliary channel a2 type disk;
    6> duplicate target database for standby from active database
    7> spfile
    8> set db_unique_name='DRTELPRD'
    9> set standby_file_management='AUTO'
    10> set FAL_CLIENT='DRTELPRD'
    11> set FAL_SERVER='TELRPD'
    12> nofilenamecheck;
    13> }
    allocated channel: c1
    channel c1: SID=950 device type=DISK
    allocated channel: c2
    channel c2: SID=942 device type=DISK
    allocated channel: a1
    channel a1: SID=97 device type=DISK
    allocated channel: a2
    channel a2: SID=96 device type=DISK
    Starting Duplicate Db at 26-AUG-11
    contents of Memory Script:
    backup as copy reuse
    file 'e:\app\product\11.1.0\db_1\DATABASE\PWDtelprd.ORA' auxiliary format
    'e:\app\product\11.1.0\db_1\DATABASE\PWDdrtelprd.ORA' file
    'E:\APP\PRODUCT\11.1.0\DB_1\DATABASE\SPFILETELPRD.ORA' auxiliary format
    'E:\APP\PRODUCT\11.1.0\DB_1\DATABASE\SPFILEDRTELPRD.ORA' ;
    sql clone "alter system set spfile= ''E:\APP\PRODUCT\11.1.0\DB_1\DATABASE\SPF
    ILEDRTELPRD.ORA''";
    executing Memory Script
    Starting backup at 26-AUG-11
    RMAN-03009: failure of backup command on c1 channel at 08/26/2011 14:44:17
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01031: insufficient privileges
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    released channel: c1
    released channel: c2
    released channel: a1
    released channel: a2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 08/26/2011 14:44:17
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on c2 channel at 08/26/2011 14:44:17
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01031: insufficient privileges
    ORA-17629: Cannot connect to the remote database server
    RMAN>

    Thanks for your instructions. It worked very good. But, I am getting errors for redo01.log files. The redo log files are not created.
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\ORADATA\TELPRD\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Errors in file e:\app\diag\rdbms\drtelprd\drtelprd\trace\drtelprd_mrp0_352.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\ORADATA\TELPRD\REDO01.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Clearing online redo logfile 1 E:\ORACLE\ORADATA\TELPRD\REDO01.LOG
    Clearing online log 1 of thread 1 sequence number 3418
    Errors in file e:\app\diag\rdbms\drtelprd\drtelprd\trace\drtelprd_mrp0_352.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\ORADATA\TELPRD\REDO01.LOG'

  • Getting error ORA-600 [kkpo_rcinfo_defstg:objnotfound]

    Version 11.2.0.2 RAC Unix...Help me.

    Please refer metalink for this.
    ORA-600 [kkpo_rcinfo_defstg:objnotfound] [ID 1292287.1]. This seems to be a bug.

  • ORA-600 in standby alert log

    We have recently migrated our database from Solaris to Linux (RHEL5) and since this migration we are seeing weird errors related to archive log shipping to the remote standby site and a corresponding ORA-600 in the standby site.
    What's interesting is everything gets resolved by itself, it always seems to happen during the heavy database load when there is frequent log switch happening (~3 min). So initially it tries to archive to the remote site and it fails with the following error in the primary alert log.
    Errors in file /app/oracle/admin/UIIP01/bdump/uiip01_arc1_9772.trc:
    ORA-00272: error writing archive log
    Mon Jul 14 10:57:36 2008
    FAL[server, ARC1]: FAL archive failed, see trace file.
    Mon Jul 14 10:57:36 2008
    Errors in file /app/oracle/admin/UIIP01/bdump/uiip01_arc1_9772.trc:
    ORA-16055: FAL request rejected
    ARCH: FAL archive failed. Archiver continuing
    Mon Jul 14 10:57:36 2008
    ORACLE Instance UIIP01 - Archival Error. Archiver continuing.
    And then we see a ORA-600 on standby database related to this which complains about redo block corruption.
    Mon Jul 14 09:57:32 2008
    Errors in file /app/oracle/admin/UIIP01/udump/uiip01_rfs_12775.trc:
    ORA-00600: internal error code, arguments: [kcrrrfswda.11], [4], [368], [], [], [], [], []
    Mon Jul 14 09:57:36 2008
    And the trace file has this wonderful block corruption error..
    Corrupt redo block 424432 detected: bad checksum
    Flag: 0x1 Format: 0x22 Block: 0x000679f0 Seq: 0x000006ef Beg: 0x150 Cks:0xa2e5
    ----- Dump of Corrupt Redo Buffer -----
    *** 2008-07-14 09:57:32.550
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kcrrrfswda.11], [4], [368], [], [], [], [], []
    So ARC tries to resend this redo log again and it succeeds, end of the day all we have is a bunch of these ORA- errors in our alert logs, triggering off our monitors and these errors resolve themselves without any manual intervention, opened a tar with Oracle support as this is not affecting our primary database, they are in no hurry to get this one prioritized and also they are reluctant to accept that it's a bug that resolves itself.
    Just wanted to get it out here to see if anyone experienced a similar problem, let me know if you need any more details.
    As I said earlier this behaviour happens only during peak loads espceially when we have full 500M redo logs that are being archived.
    Thanks in Advance.

    Thanks Madrid!..
    I scoured thru these metalink notes before looking for possible solutions and almost all of them were closed citing a customer problem related to OS, firewall, network, etc or some were closed saying requested data not provided.
    Looks as if they were never successfully closed with a resolution.
    I just want to assure myself that the redo corruption that standby is reporting will not haunt me later, when I am doing a recovery or even a crash recovery using redo logs?..
    I have multiplexed my logs, just in case and have all the block checking parameters enabled on both primary and standby databases.
    Thanks,
    Ramki

  • ORA-600 (QMXISTOREXOBEL1) ERROR

    I have a Customet that obtain the following
    error:
    ORA-00600: internal error code, arguments: [qmxiStoreXobEl1], [10], [258], [1], [],
    when he insert an xml document in a xmlType column.
    He use:
    OS: Linux SuSE 2.1 A.S.
    DB: ORACLE 10g
    He registred the xmlSchema on database. Some xml document are stored correctly, other obtain the error like before.
    Any suggestion or idea is appreciated.
    Thank you
    Paola

    user12003658 wrote:
    The application has generated ORA-600 [17059] error in 9.2.0.7 database. I looked up in Metalink for this particular error. Looks like the number of child cursors against a single parent object has reached 32768. I can verify this in the trace file too. The solution in the metalink doc suggest that i should increase the limit to 65536. How can i increase the child cursor limit? The other cursor related initialization parameters in the database are:
    CURSOR_SHARING=exact
    CURSOR_SPACE_FOR_TIME=false
    OPEN_CURSORS=500
    SESSION_CACHED_CURSORS=0
    Thanks in advance..Getting ORA-00600 internal errors, you need to check metalink "ORA-00600 error lookup" to find the cause and solution that's offered by Oracle Support.
    As you're using unsupported 9i version, you can't get any feedback from support :(

  • Ora-600 publishing translation

    Getting following error when publishing translation:
    ORA-20001: Sync error: WWV_FLOW_ICON_BAR.ICON_IMAGE_ALT ORA-00600: internal error code, arguments: [kkxlsb csid mismatch], [871], [871], [1], [2], [], [], []
    Problem happened in 1.6 and after upgrading to 2.0.
    DB is 10g Release 1running on Itanium. Character set is UTF-8 (For Developer 6i compatibility).
    Start of dump file is below.
    Please advise.
    Dump file e:\oracle\admin\db\udump\db_ora_2960.trc
    Tue Nov 15 17:11:30 2005
    ORACLE V10.1.0.2.0 - 64bit Production vsnsta=0
    vsnsql=13 vsnxtr=3
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Windows Server 2003 Version V5.2
    CPU : 1 - type 2200, 1 Physical Cores
    Process Affinity: 0x0000000000000000
    Memory (A/P) : PH:623M/2039M, PG:4760M/5949M
    Instance name: db
    Redo thread mounted by this instance: 1
    Oracle process number: 35
    Windows thread id: 2960, image: ORACLE.EXE (SHAD)
    *** ACTION NAME:(PAGE 4755) 2005-11-15 17:11:30.318
    *** MODULE NAME:(HTML DB:APPLICATION 4000) 2005-11-15 17:11:30.318
    *** SERVICE NAME:(db) 2005-11-15 17:11:30.318
    *** CLIENT ID:(DBOWN:12787257745529832838) 2005-11-15 17:11:30.318
    *** SESSION ID:(138.36224) 2005-11-15 17:11:30.318
    *** 2005-11-15 17:11:30.318
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kkxlsb csid mismatch], [871], [871], [1], [2], [], [], []
    Current SQL statement for this session:
    declare
    l_flow_id number := 107;
    l_language varchar2(30) := 'zh-cn';
    l_translate_from_flow_table varchar2(255) := 'WWV_FLOW_ICON_BAR';
    l_translate_from_flow_column varchar2(255) := 'ICON_IMAGE_ALT';
    l_value varchar2(32767);
    begin
    for c1 in (
    select translated_flow_id, translate_to_id, translate_from_id, translate_to_text v
    from wwv_flow_translatable_text$
    where flow_id = l_flow_id
    and translate_from_flow_table = l_translate_from_flow_table
    and translate_from_flow_column = l_translate_from_flow_column
    and translate_to_lang_code = l_language
    ) loop
    l_value := dbms_lob.substr(to_clob(c1.v),dbms_lob.getlength(c1.v),1);
    if lengthb(l_value) > 4000 then
    for i in reverse 1..length(l_value) loop
    if lengthb(substr(l_value,1,i)) <= 4000 then
    l_value := substr(l_value,1,i);
    exit;
    end if;
    end loop;
    end if;
    update WWV_FLOW_ICON_BAR set ICON_IMAGE_ALT = l_value
    where FLOW_ID = c1.translated_flow_id
    and ID = c1.TRANSLATE_TO_ID
    ; end loop;
    end;
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    00000000F683E148 783 package body SYS.DBMS_LOB
    00000000F87965D0 16 anonymous block
    00000000F659C7C8 111 procedure FLOWS_020000.WWV_FLOW_SYNC_TRANSLATIONS
    00000000F82A5950 13 anonymous block
    00000000F71CE028 1200 package body SYS.DBMS_SYS_SQL
    00000000F73C0F68 224 package body FLOWS_020000.WWV_EXECUTE_IMMEDIATE
    00000000F8B2F720 3791 package body FLOWS_020000.WWV_FLOW
    00000000F8B2F720 10856 package body FLOWS_020000.WWV_FLOW
    00000000F73C82B0 10 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    .kgerinv+416 CALL??? .ksfdmp+64 6FBEF6C4B50 000000003
    C000000000000612 6FBFE4C9AE0
    .kgeasnmierr+160 CALL??? .kgerinv+416 6FBEF6C4B50 6FBEF6C5AE8
    008E09C20 000000004
    .kkxlsb+2224 CALL??? .kgeasnmierr+160 6FBE0D3F168 6FBE0D3F160
    008E09C20 000000004
    .kkxlcsb+48 CALL??? .kkxlsb+2224 6FBE0D3F410 6FBE0D3F470
    6FBEF3CE808 000000070
    .pevm_icd_call_comm CALL??? .kkxlcsb+48 6FBE9759FE0 000000004
    on+1200 6FBEF3CE808 C000000000000691
    .pfrinstr_ICAL+272 CALL??? .pevm_icd_call_comm 6FBE9759FE0 000000000
    on+1200 6FBEF6C5AD8 6FBE0D3F4F0
    .pfrrun_no_tool+192 CALL??? .pfrinstr_ICAL+272 6FBE9759FE0 000000004
    6FBE975A048 C00000000000048C
    .pfrrun+2240 CALL??? .pfrrun_no_tool+192 6FBE9759FE0 000002001
    6FBE975A048 C000000000000593
    .plsql_run+1968 CALL??? .pfrrun+2240 0F6583138 C000000000000511
    6FBFD16C8B0 000000005
    .peicnt+576 CALL??? .plsql_run+1968 6FBEF6C5AD8 6FBE0D3FE70
    6FBE975A108 C000000000000309
    .kkxexe+976 CALL??? .peicnt+576 000000000 6FBE0D403C0
    C000000000000716 006B06D90
    .opiexe+21216 CALL??? .kkxexe+976 6FBE975A4B0 C000000000000FA7
    00612E060 0070F0000
    .opipls+4704 CALL??? .opiexe+21216 6FBE99003B0 6FBE99003B4
    0F66FFE18 C000000000001430
    .opiodr+3248 CALL??? .opipls+4704 000000066 6FBE0D41D88
    6FBEF6D11F0 C00000000000050F
    .rpidrus+384 CALL??? .opiodr+3248 6FBEF6C7198 6FBEF6C5AD8
    6FBE0D42380 00000000A
    .rpidru+256 CALL??? .rpidrus+384 6FBEF6C5AD8 C000000000000307
    005536440 000000000
    .rpiswu2+2112 CALL??? .rpidru+256 6FBE0D43DF0 C000000000002EE0
    005532980 0070F0000
    .rpidrv+3216 CALL??? .rpiswu2+2112 0FB63C7F8 000000084
    6FBE0D43E50 000000000
    .psddr0+1040 CALL??? .rpidrv+3216 000000000 6FBEF6C5AD8
    6FBE0D43BB0 6FBEF6D0868
    .psdnal+768 CALL??? .psddr0+1040 6FBE0D43F40 000000066
    000000000 000000000
    .pevm_EXIM+496 CALL??? .psdnal+768 6FBE0D450D0 6FBE0D450B0
    00000461D 6FBE94053B0
    .pfrinstr_EXIM+80 CALL??? .pevm_EXIM+496 6FBE964EEC0 6FBE964EEC8
    C000000000000308 6FBFD225210
    .pfrrun_no_tool+192 CALL??? .pfrinstr_EXIM+80 6FBE964EEC0 0F770D61C
    6FBE964EF28 C00000000000048C
    .pfrrun+2240 CALL??? .pfrrun_no_tool+192 6FBE964EEC0 000002001
    6FBE964EF28 C000000000000593
    .plsql_run+1968 CALL??? .pfrrun+2240 0F770D12A C000000000000511
    6FBFD16C8B0 000000002
    .peicnt+576 CALL??? .plsql_run+1968 6FBEF6C5AD8 6FBE0D44880
    6FBE964EFE8 C000000000000309
    .kkxexe+1840 CALL??? .peicnt+576 000000000 6FBE0D44DD0
    C000000000000716 006B070F0
    .opiexe+21216 CALL??? .kkxexe+1840 6FBE964F390 C000000000000FA7
    00612E060 0070F0000
    .opiall0+4832 CALL??? .opiexe+21216 6FBE990F808 6FBE990F80C
    0F73A9680 C000000000000A9D
    .opikpr+1536 CALL??? .opiall0+4832 006FA6E48 00000CC60
    6FBEF6D0868 6FBE0D4686C
    .opiodr+3248 CALL??? .opikpr+1536 000000065 6FBE9653BC0
    000001200 C00000000000050F
    .rpidrus+384 CALL??? .opiodr+3248 6FBEF6C7198 6FBEF6C5AD8
    6FBE0D47310 000000007
    .rpidru+256 CALL??? .rpidrus+384 6FBEF6C5AD8 C000000000000307
    005536440 000000000
    .rpiswu2+2112 CALL??? .rpidru+256 6FBE0D48D80 C000000000002EE0
    005532980 0070F0000
    .kprball+2608 CALL??? .rpiswu2+2112 0FB63C8C0 0FB63C8C6
    6FBE0D48E0E 000000000
    .kkxsexr+1280 CALL??? .kprball+2608 0FB63C7F8 6FBE0D48DD8
    C00000000000038A 005444980
    .kkxsexe+1904 CALL??? .kkxsexr+1280 000000000 000000001
    C000000000000610 005443D70
    .pevm_icd_call_comm CALL??? .kkxsexe+1904 000000000 6FBEF6D2404
    on+1200 6FBE948EE50 C000000000000691
    .pfrinstr_ICAL+272 CALL??? .pevm_icd_call_comm 6FBE97EF3E8 000000000
    on+1200 6FBEF6C5AD8 6FBE0D491D0
    .pfrrun_no_tool+192 CALL??? .pfrinstr_ICAL+272 6FBE97EF3E8 000000002
    6FBE97EF450 C00000000000048C
    .pfrrun+2240 CALL??? .pfrrun_no_tool+192 6FBE97EF3E8 000002001
    6FBE97EF450 C000000000000593
    .plsql_run+1968 CALL??? .pfrrun+2240 0F7EFB4F8 C000000000000511
    6FBFD16C8B0 000000003
    .peicnt+576 CALL??? .plsql_run+1968 6FBEF6C5AD8 6FBE0D49B50
    6FBE97EF510 C000000000000309
    .kkxexe+1840 CALL??? .peicnt+576 000000000 6FBE0D4A0A0
    C000000000000716 006B070F0
    .opiexe+21216 CALL??? .kkxexe+1840 6FBE97EF8B8 C000000000000FA7
    00612E060 0070F0000
    .kpoal8+3712 CALL??? .opiexe+21216 6FBE990FCB8 6FBE990FCBC
    0F61384E0 C000000000001838
    .opiodr+3248 CALL??? .kpoal8+3712 00000881F 6FBE0D4CD20
    6FBE0D4CCF8 C00000000000050F
    .ttcpip+1616 CALL??? .opiodr+3248 6FBEF6C7198 6FBEF6C5AD8
    6FBE0D4BB30 000000000
    .opitsk+1984 CALL??? .ttcpip+1616 6FBEF6CBA60 6FBE0D4D7BC
    6FBE0D4CCF8 000000000
    .opiino+2320 CALL??? .opitsk+1984 000000000 000000000
    C000000000000611 0058F5DD0
    .opiodr+3248 CALL??? .opiino+2320 6FBE0D4E8D0 6FBE0D4FC00
    6FBE992EC60 C00000000000050F
    .opidrv+3056 CALL??? .opiodr+3248 6FBEF6C7198 6FBEF6C5AD8
    6FBE0D4EBC0 000000000
    .sou2o+80 CALL??? .opidrv+3056 000000000 6FBE0D4F8F0
    6FBE0D4FBF0 C00000000000040B
    .opimai+384 CALL??? .sou2o+80 6FBE0D4FC20 00000003C
    000000004 6FBE0D4FBF0
    .OracleThreadStart+ CALL??? .opimai+384 6FBE0D4FBF0 6FBE0D4FC98
    6784 C000000000001C3C 000405800
    0000000077D24400 CALL??? .OracleThreadStart+ 6FBFB2457D4 C00000000000040C
    6784 077D24400 6FBE0D4FCCC
    --------------------- Binary Stack Dump ---------------------
    ========== FRAME [1] (.kgerinv+416 -> .ksfdmp+64) ==========
    Dump of memory from 0x000006FBE0D52180 to 0x000006FBE0D521E0
    6FBE0D52180 EF6C4B50 000006FB 00000003 00000000 [PKl.............]
    6FBE0D52190 00000612 C0000000 FE4C9AE0 000006FB [..........L.....]
    6FBE0D521A0 070F0000 00000000 EF6D2BA8 000006FB [.........+m.....]
    6FBE0D521B0 00000286 C0000000 00948D40 00000000 [........@.......]
    6FBE0D521C0 E0D521A8 000006FB 00000000 00000000 [.!..............]
    6FBE0D521D0 00000000 00000000 0000000E 00000000 [................]
    ========== FRAME [2] (.kgeasnmierr+160 -> .kgerinv+416) ==========
    Dump of memory from 0x000006FBE0D52120 to 0x000006FBE0D52178
    6FBE0D52120 EF6C4B50 000006FB EF6C5AE8 000006FB [PKl......Zl.....]
    6FBE0D52130 08E09C20 00000000 00000004 00000000 [ ...............]
    6FBE0D52140 E0D3F180 000006FB 00000590 C0000000 [................]
    6FBE0D52150 FE4CAE60 000006FB FF0FC000 000006FB [`.L.............]
    6FBE0D52160 06B5E860 00000000 EF6C4CB0 000006FB [`........Ll.....]
    6FBE0D52170 EF6C5E40 000006FB [@^l.....]
    ========== FRAME [3] (.kkxlsb+2224 -> .kgeasnmierr+160) ==========
    Dump of memory from 0x000006FBE0D520C8 to 0x000006FBE0D52150
    6FBE0D520C0 E0D3F168 000006FB [h.......]
    6FBE0D520D0 E0D3F160 000006FB 08E09C20 00000000 [`....... .......]
    6FBE0D520E0 00000004 00000000 00000000 00000000 [................]
    6FBE0D520F0 00000367 00000000 00000000 00000000 [g...............]
    6FBE0D52100 00000367 00000000 00000899 C0000000 [g...............]
    6FBE0D52110 02A314F0 00000000 00000000 00000000 [................]
    6FBE0D52120 EF6C4B50 000006FB EF6C5AE8 000006FB [PKl......Zl.....]
    6FBE0D52130 08E09C20 00000000 00000004 00000000 [ ...............]
    6FBE0D52140 E0D3F180 000006FB 00000590 C0000000 [................]
    ========== FRAME [4] (.kkxlcsb+48 -> .kkxlsb+2224) ==========
    Dump of memory from 0x000006FBE0D52040 to 0x000006FBE0D52068
    6FBE0D52040 E0D3F410 000006FB E0D3F470 000006FB [........p.......]
    6FBE0D52050 EF3CE808 000006FB 00000070 00000000 [..<.....p.......]
    6FBE0D52060 00000289 C0000000 [........]
    ========== FRAME [5] (.pevm_icd_call_common+1200 -> .kkxlcsb+48) ==========
    Dump of memory from 0x000006FBE0D52018 to 0x000006FBE0D52088
    6FBE0D52010 E9759FE0 000006FB [..u.....]
    6FBE0D52020 00000004 00000000 EF3CE808 000006FB [..........<.....]
    6FBE0D52030 00000691 C0000000 FD14EB30 000006FB [........0.......]
    6FBE0D52040 E0D3F410 000006FB E0D3F470 000006FB [........p.......]
    6FBE0D52050 EF3CE808 000006FB 00000070 00000000 [..<.....p.......]
    6FBE0D52060 00000289 C0000000 02A23FF0 00000000 [.........?......]
    6FBE0D52070 E0D52040 000006FB E0D3F474 000006FB [@ ......t.......]
    6FBE0D52080 E0D3F770 000006FB [p.......]
    ========== FRAME [6] (.pfrinstr_ICAL+272 -> .pevm_icd_call_common+1200) ==========
    Dump of memory from 0x000006FBE0D51FA8 to 0x000006FBE0D52000
    6FBE0D51FA0 E9759FE0 000006FB [..u.....]
    6FBE0D51FB0 00000000 00000000 EF6C5AD8 000006FB [.........Zl.....]
    6FBE0D51FC0 E0D3F4F0 000006FB E55A0490 000006FB [..........Z.....]
    6FBE0D51FD0 00000000 00000000 EF3CE808 000006FB [..........<.....]
    6FBE0D51FE0 00000592 C0000000 FD223450 000006FB [........P4".....]
    6FBE0D51FF0 00000004 00000000 00000000 00000000 [................]

    Refer below metalink doc
    *ORA-600 [15160] [ID 138428.1]*

  • 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

  • While trying to change password getting ora-00600 [4842] - Plz help

    while trying to change password getting ora-00600 [4842] - Plz help
    database : 9.2.0.4
    o/s : Linux

    Hi,
    when getting an ORA-600 you always should contact Oracle support please ;-)
    To diagnose an ORA-600 the stack trace will be necessary - see the trace file mentioned in the alert.log when the ORA-600 did happen.
    But FIRST OF ALL you should definitely apply patch set 9.2.0.8 and see if this error happens again (metalink.oracle.com ==> PATCHES ==> Quick Links ==> <your platform>). Support will ask you to do the same before they start diagnosing anything in this case.
    And please keep in mind that 9.2.0 has reached end of Premier Support more than 1 year ago.
    Kind regards
    Mike

  • Database give ORA-600 error after cold backup

    HI,
    I have oracle 10g install on linux system. i take cold backup of my database using
    sql> shutdown immediate
    and then copy all files to any other location.
    but when i start my database it gives me error like
    Errors in file /opt/oracle/fina/bdump/fina_smon_4422.trc:
    ORA-00607: Internal error occurred while making a change to a data block
    ORA-00600: internal error code, arguments: [4193], [136], [139], [], [], [], [], []
    Fri Dec  4 15:23:18 2009
    Errors in file /opt/oracle/fina/bdump/fina_smon_4422.trc:
    ORA-00600: internal error code, arguments: [4193], [67], [70], [], [], [], [], []
    Fri Dec  4 15:23:19 2009
    Doing block recovery for file 2 block 1702
    Block recovery from logseq 13, block 3531 to scn 758385
    Fri Dec  4 15:23:19 2009
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 13 Reading mem 0
      Mem# 0 errs 0: /opt/oracle/fina/dbs/redo01.log
    Block recovery completed at rba 13.3532.16, scn 0.758386
    Doing block recovery for file 2 block 153
    Block recovery from logseq 13, block 3531 to scn 758436
    Fri Dec  4 15:23:19 2009
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 13 Reading mem 0
      Mem# 0 errs 0: /opt/oracle/fina/dbs/redo01.log
    Block recovery completed at rba 13.3612.16, scn 0.758437
    Fri Dec  4 15:23:19 2009
    Errors in file /opt/oracle/fina/bdump/fina_smon_4422.trc:
    ORA-00607: Internal error occurred while making a change to a data block
    ORA-00600: internal error code, arguments: [4193], [67], [70], [], [], [], [], []
    Fri Dec  4 15:23:29 2009
    Errors in file /opt/oracle/fina/bdump/fina_smon_4422.trc:
    ORA-00600: internal error code, arguments: [4193], [136], [139], [], [], [], [], []
    Fri Dec  4 15:23:29 2009
    Errors in file /opt/oracle/fina/bdump/fina_pmon_4410.trc:
    ORA-00474: SMON process terminated with error
    Fri Dec  4 15:23:29 2009
    PMON: terminating instance due to error 474
    Instance terminated by PMON, pid = 4410i have seen this happen sometime after cold backup database give errors. is taking cold backup of database is not safe.
    Please suggest.

    Umesh,
    Since it is case of Ora 600, for which only last solution is oracle support, but i would like to mention that your are getting ORA-00600: internal error code, arguments: [4193].... So, this 4193 is cause to read following links too:
    http://www.orafaq.com/forum/t/47048/2/ and. see Metalink note 153788.1 and 39282.1.
    Regards
    Girish Sharma

Maybe you are looking for