ORA-00600: internal error code, arguments: [17183], [0x033134908], [], [],

Hi Exports,
I am getting the ORA-00600: internal error code, arguments: [17183], [0x033134908], [], [], [], [], [], []
The temporary tablespace of the database is full and i am trying to do the following steps.
SQL> select * from dba_temp_files;
FILE_NAME FILE_ID TABLESPACE_NAME BYTES Blocks Etat RELATIVE_FNO AUT MAXBYTES MAXBLOCKS INCREMENT_BY
USER_BYTES USER_BLOCKS
G:\ORADATA\TEMP01.DBF 1 TEMP 3.4359E+10 4,194,176 AVAILA 1 YES 3.4360E+10 4194302 80
3.4358E+10 4194048
J:\ORADATA\TIVOLIORTEMPTS.DBF 5 TIVOLIORTEMPTS 104857600 12,800 AVAILA 1 NO 0 0 0
103809024 12672
J:\ORADATA\TEMP_ORISSA_MASTER.TMP 2 TEMP_ORISSA_MASTER 10485760 1,280 AVAILA 1 YES 52428800 6400 128
9437184 1152
J:\ORADATA\TEMP_ORISSA_BENCHMARK.TMP 3 TEMP_ORISSA_BENCHMARK 680525824 83,072 AVAILA 1 YES 1073741824 131072 2
679477248 82944
J:\ORADATA\TEMP_ORISSA_TRANSACTION 4 TEMP_ORISSA_TRANSACTION 104857600 12,800 AVAILA 1 YES 1073741824 131072 2
103809024 12672
5 rows selected.
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP 3.4359E+10 0
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
5 rows selected.
SQL> CREATE TEMPORARY TABLESPACE MYTEMPFILE
2 TEMPFILE 'G:\ORADATA\TEMP001.dbf'
3 SIZE 1000M AUTOEXTEND ON NEXT 10M MAXSIZE 2000M;
Tablespace created.
SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE MYTEMPFILE;
Database altered.
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP 3.4359E+10 0
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
MYTEMPFILE 1048576 1047527424
6 rows selected.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES;
ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
MYTEMPFILE 11534336 1037041664
5 rows selected.
SQL> select STATUS,ENABLED,STATUS,BYTES/1024/1024 from v$tempfile;
Etat ENABLED Etat BYTES/1024/1024
OFFLIN READ WRITE OFFLIN 0
ONLINE READ WRITE ONLINE 100
ONLINE READ WRITE ONLINE 10
ONLINE READ WRITE ONLINE 649
ONLINE READ WRITE ONLINE 100
ONLINE READ WRITE ONLINE 1000
6 rows selected.
SQL> desc v$tempfile;
Name Null? Type
FILE# NUMBER
CREATION_CHANGE# NUMBER
CREATION_TIME DATE
TS# NUMBER
RFILE# NUMBER
STATUS VARCHAR2(7)
ENABLED VARCHAR2(10)
BYTES NUMBER
BLOCKS NUMBER
CREATE_BYTES NUMBER
BLOCK_SIZE NUMBER
NAME VARCHAR2(513)
SQL> select file#,STATUS,ENABLED,STATUS,BYTES/1024/1024 from v$tempfile;
FILE# Etat ENABLED Etat BYTES/1024/1024
1 OFFLIN READ WRITE OFFLIN 0
5 ONLINE READ WRITE ONLINE 100
2 ONLINE READ WRITE ONLINE 10
3 ONLINE READ WRITE ONLINE 649
4 ONLINE READ WRITE ONLINE 100
6 ONLINE READ WRITE ONLINE 1000
6 rows selected.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES;
ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' offline;
Database altered.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES;
ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
SQL> select * from dba_temp_files;
FILE_NAME FILE_ID TABLESPACE_NAME BYTES Blocks Etat RELATIVE_FNO AUT MAXBYTES MAXBLOCKS INCREMENT_BY
USER_BYTES USER_BLOCKS
G:\ORADATA\TEMP01.DBF 1 TEMP AVAILA
J:\ORADATA\TIVOLIORTEMPTS.DBF 5 TIVOLIORTEMPTS 104857600 12,800 AVAILA 1 NO 0 0 0
103809024 12672
J:\ORADATA\TEMP_ORISSA_MASTER.TMP 2 TEMP_ORISSA_MASTER 10485760 1,280 AVAILA 1 YES 52428800 6400 128
9437184 1152
J:\ORADATA\TEMP_ORISSA_BENCHMARK.TMP 3 TEMP_ORISSA_BENCHMARK 680525824 83,072 AVAILA 1 YES 1073741824 131072 2
679477248 82944
J:\ORADATA\TEMP_ORISSA_TRANSACTION 4 TEMP_ORISSA_TRANSACTION 104857600 12,800 AVAILA 1 YES 1073741824 131072 2
103809024 12672
G:\ORADATA\TEMP001.DBF 6 MYTEMPFILE 1048576000 128,000 AVAILA 1 YES 2097152000 256000 1280
1047527424 127872
6 rows selected.
SQL> select file#,STATUS,ENABLED,STATUS,BYTES/1024/1024 from v$tempfile;
FILE# Etat ENABLED Etat BYTES/1024/1024
1 OFFLIN READ WRITE OFFLIN 0
5 ONLINE READ WRITE ONLINE 100
2 ONLINE READ WRITE ONLINE 10
3 ONLINE READ WRITE ONLINE 649
4 ONLINE READ WRITE ONLINE 100
6 ONLINE READ WRITE ONLINE 1000
6 rows selected.
SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp;
Database altered.
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
MYTEMPFILE 28311552 1020264448
5 rows selected.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' online;
Database altered.
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP 3.4359E+10 0
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
MYTEMPFILE 28311552 1020264448
6 rows selected.
SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE MYTEMPFILE;
Database altered.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES;
ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' offline;
Database altered.
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES;
ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' DROP INCLUDING DATAFILES
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
SQL> ALTER DATABASE TEMPFILE 'G:\ORADATA\TEMP01.DBF' online;
Database altered.
SQL> ALTER DATABASE DEFAULT TEMPORARY TABLESPACE temp;
Database altered.
SQL> select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$TEMP_SPACE_HEADER;
TABLESPACE_NAME BYTES_USED BYTES_FREE
TEMP 3.4359E+10 0
TEMP_ORISSA_MASTER 4194304 6291456
TEMP_ORISSA_BENCHMARK 680525824 0
TEMP_ORISSA_TRANSACTION 37748736 67108864
TIVOLIORTEMPTS 1048576 103809024
MYTEMPFILE 32505856 1016070144
6 rows selected.
SQL> exit
I am not able to drop the Temp file as it is used by some users.
When i checked my Alert Log then i am getting the ora-600 error....
When i check metalink for this argument i found that its a bug in 91 &10gR2
Please suggest some solution of this problem.
Is it a serious issue of database.

Robert Geier wrote:
If you kill the sessions using the tempfile, or restart the database you may be able to drop it. Or you could try to shrink the tempfile instead of drop.
Not sure why you are doing that though ? If the temp tablespace is full, check what is using the space, or add another tempfile to the tablespace.No I am not killing the sessions... But i just checked using following query that some users are using the temp Tablespace at that time. But i did not kill any session.
select 'alter system kill session '''||a.sid||','||a.serial#||''' immediate;'
from
v$session a,
v$sort_usage b,
v$process c,
v$parameter d
where
d.name = 'db_block_size'
and
a.saddr = b.session_addr
and
a.paddr = c.addr
and
b.tablespace='TEMP'
and
a.status='ACTIVE'
order by
b.tablespace,
b.segfile#,
b.segblk#,
b.blocks;

Similar Messages

  • ORA-00600: internal error code, arguments: [ktsircinfo_num1]

    While taking export of a table received EXP error and while dropping/selecting the same gor ora-600 errors.
    . . exporting table TEST4
    EXP-00003: no storage definition found for segment(29, 371385)
    SQL >Drop table test4 cascade;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    sql> Desc test4;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    I dont want to log TAR with oracle right now... I tried dropping and recreating Undo tablespace but still did not help much . Database version is 9204

    hi
    read metalink ID - 153788.1
    CHeers

  • ORA-00600: internal error code, arguments: [unable to load XDB library]

    hi everybody ;
    i have 9.2.0.7 db runs on SLES9 on host A. and i take full rman database backup to make a new database on different host ( host B ) with different file structure. ( sid is the same ) i had already 1 database on host B. after this duplicate now there are 2 database on host B.
    i take daily full database rman backup on the new host for my new database and there is no problem. when i try to take extra full export backup i get an error ;
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    *** 2010-08-05 09:46:12.868
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    as i search ; i have to stop the database and listener and set the LD_LIBRARY_PATH variable. how can i make this without make any mistake for the first database runs on Host B.
    because 2 database must be up and running on host B. can you explaın these operation step by step ?
    thank you ....

    craft wrote:
    any idea ?
    >any idea ?
    your database is out off support you should consider to upgrade. ORA-00600 indicate for bug

  • Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]

    Hi All,
    I am getting the error "Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]" while running a package. Could not able to get detailed info on this. Please someone help in resolving the above error.
    Thanks,
    Karthi

    http://orafaq.com/wiki/ORA-00600
    You can follow Nikolay's advice or try to find a workaround yourself by rewriting your query using a somehow different approach
    Regards
    Etbin

  • ORA-00600: internal error code, arguments: [25012], [19], [21], [], [], [],

    when i execute dbcheck in db13, i receive this message:
    ORA-00600: internal error code, arguments: [25012], [19], [21], [], [], [], [], []  
    i have Oracle 9.2.0 and i don't find any note in the OSS notes.

    This may point you in the right direction?
    Look at Note 758563 - Oracle Metalink access for SAP customers.
    Oracle Metalink WebSite is:
    https://metalink.oracle.com/metalink/plsql/f?p=200:101:5428529246127535152
    Metalink Username and Password deleted by Moderator.
    Please do not post this kind of information in the forum.
    Thanks.
    Then do a search on ORA-00600: internal error code, arguments: [25012]
    This should get you started.
    Message was edited by: Christian Graf

  • ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59D

    Can anyone please try check out this ORA-600 error, ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59DA4],
    [2], [], [], [], [], [].
    My db went down abruptly due to power source ....now the database mounts successfully but when u try opening the db i.e. alter database open; it comes up with the error. Plz kindly treat urgently.Thanks

    For all kind of internal errors, you should open SR (Service Request) in metalink. You need to contact Oracle Support
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500]

    Hi people,
    Do you have any idea about this error: ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500], [6], [40], [85], [85], [], [].
    Thanks in advance.
    Marcos Freitas

    Duplicate Thread:
    ORA-00600: internal error code, arguments: [kksscl-inf-inl-loop], [2500]
    C.

  • ORA-00600: internal error code, arguments: [12333], [0], [0], [3], [], [],

    Could you tell me to to handle the following error?
    ORA-00600: internal error code, arguments: [12333], [0], [0], [3], [], [], [], []
    Thanks a lot

    Could you please give me more detail information?
    Thanks

  • ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [],.....

    Hi,
    While connecting with database, I got the following error,
    ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [], [], [], [], []
    I am using oracle 9i. Can anyone tell me the solution of that error ?
    Thanks and Regards,
    Hiren

    many people are here because they lack that optionIt's not false, indeed, but if nobody had the same error, there is no chance to solve it.
    At least a complete system/operation description is necessary to indicates some valid ways to investigate.
    Nicolas.

  • ORA-00600: internal error code, arguments: [ktbdchk1: bad dscn], [], [], []

    Hi,
    Can anyone tell me how to resolve this error
    ORA-00600: internal error code, arguments: [ktbdchk1: bad dscn], [], [], [], [], [], [], []
    ORA-06512: at "ProcName", line 7
    ORA-06512: at line 17
    thx

    Most of this type of errors (ORA-600) you need report to Oracle Support or check the metalink for released fix or possible workaround.
    Anyway this error is fixed in:
    10.1.0.4 patchset
    9.2.0.7 patchset (released for Windows only, for other platforms expecting soon)
    10gR2 (not released yet)

  • ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], []

    Hi,
    Using owb 11.2.0.3 and encountering
    ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], []
    this error when a proces sflow runs a mapping.
    It fails and data remains unchanged.
    When proces sflow next runs it succeeds.
    Any ideas?
    Thanks

    Don't multipost, please. Stay in your original thread ORA-00600: internal error code, arguments: [kglpin-bad-lock], [0x70000062E067FC8], [], [], [], [], [], [], [], [], [], […
    Mod: locking.

  • ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [],

    Question by Oracler:
    10.2.0.4 Linux RAC
    ORA-00600: internal error code, arguments: [12269], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    ORA-00600: internal error code, arguments: [733], [1936597240], [pga heap], [], [], [], [], []
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    该数据库在NAT后,当前现象,用PL/SQL Developer 连接进行某个SQL 查询时,会直接报ORA-3113,但是在SQLPLUS 下是正常的。如何诊断?
    Wed Aug 1 23:09:25 2012
    Thread 1 advanced to log sequence 352 (LGWR switch)
    Current log# 2 seq# 352 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Thu Aug 2 23:10:20 2012
    Thread 1 advanced to log sequence 353 (LGWR switch)
    Current log# 1 seq# 353 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Fri Aug 3 23:11:22 2012
    Thread 1 advanced to log sequence 354 (LGWR switch)
    Current log# 2 seq# 354 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Sat Aug 4 14:00:02 2012
    Thread 1 advanced to log sequence 355 (LGWR switch)
    Current log# 1 seq# 355 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Sun Aug 5 04:00:20 2012
    Thread 1 advanced to log sequence 356 (LGWR switch)
    Current log# 2 seq# 356 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Sun Aug 5 23:13:35 2012
    Thread 1 advanced to log sequence 357 (LGWR switch)
    Current log# 1 seq# 357 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Mon Aug 6 23:14:33 2012
    Thread 1 advanced to log sequence 358 (LGWR switch)
    Current log# 2 seq# 358 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Tue Aug 7 11:08:23 2012
    Thread 1 advanced to log sequence 359 (LGWR switch)
    Current log# 1 seq# 359 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Tue Aug 7 23:15:26 2012
    Thread 1 advanced to log sequence 360 (LGWR switch)
    Current log# 2 seq# 360 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Wed Aug 8 23:16:20 2012
    Thread 1 advanced to log sequence 361 (LGWR switch)
    Current log# 1 seq# 361 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Thu Aug 9 23:17:15 2012
    Thread 1 advanced to log sequence 362 (LGWR switch)
    Current log# 2 seq# 362 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Fri Aug 10 19:59:57 2012
    Thread 1 advanced to log sequence 363 (LGWR switch)
    Current log# 1 seq# 363 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Sat Aug 11 08:00:21 2012
    Thread 1 advanced to log sequence 364 (LGWR switch)
    Current log# 2 seq# 364 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Sat Aug 11 23:19:09 2012
    Thread 1 advanced to log sequence 365 (LGWR switch)
    Current log# 1 seq# 365 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Sun Aug 12 23:20:00 2012
    Thread 1 advanced to log sequence 366 (LGWR switch)
    Current log# 2 seq# 366 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Mon Aug 13 23:20:56 2012
    Thread 1 advanced to log sequence 367 (LGWR switch)
    Current log# 1 seq# 367 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Tue Aug 14 16:59:57 2012
    Thread 1 advanced to log sequence 368 (LGWR switch)
    Current log# 2 seq# 368 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Wed Aug 15 07:00:23 2012
    Thread 1 advanced to log sequence 369 (LGWR switch)
    Current log# 1 seq# 369 mem# 0: +DATA/orcl/onlinelog/group_1.257.766685683
    Wed Aug 15 10:46:42 2012
    Errors in file /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/udump/orcl1_ora_26736.trc:
    ORA-00600: internal error code, arguments: [12269], [], [], [], [], [], [], []
    Wed Aug 15 10:46:43 2012
    Trace dumping is performing id=[cdmp_20120815104643]
    Wed Aug 15 10:47:57 2012
    Errors in file /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/udump/orcl1_ora_26736.trc:
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    Wed Aug 15 10:47:58 2012
    Trace dumping is performing id=[cdmp_20120815104758]
    Wed Aug 15 10:54:03 2012
    Errors in file /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/udump/orcl1_ora_26736.trc:
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    Wed Aug 15 10:54:04 2012
    Trace dumping is performing id=[cdmp_20120815105404]
    Wed Aug 15 10:55:10 2012
    Errors in file /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/udump/orcl1_ora_26736.trc:
    ORA-00600: internal error code, arguments: [733], [1936597240], [pga heap], [], [], [], [], []
    Wed Aug 15 10:55:11 2012
    Trace dumping is performing id=[cdmp_20120815105511]
    Wed Aug 15 10:56:11 2012
    WARNING: inbound connection timed out (ORA-3136)
    Wed Aug 15 14:19:17 2012
    Errors in file /home/oracle/oracle/product/10.2.0/db_1/admin/orcl/udump/orcl1_ora_6528.trc:
    ORA-00600: internal error code, arguments: [12316], [], [], [], [], [], [], []
    Wed Aug 15 14:19:18 2012
    Trace dumping is performing id=[cdmp_20120815141918]
    Wed Aug 15 15:24:14 2012
    WARNING: inbound connection timed out (ORA-3136)
    Wed Aug 15 22:00:07 2012
    Thread 1 advanced to log sequence 370 (LGWR switch)
    Current log# 2 seq# 370 mem# 0: +DATA/orcl/onlinelog/group_2.258.766685683
    Thu Aug 16 09:38:40 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 09:45:08 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 10:18:16 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 10:18:22 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 10:38:57 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 13:46:42 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 13:51:09 2012
    WARNING: inbound connection timed out (ORA-3136)
    Thu Aug 16 14:12:58 2012
    WARNING: inbound connection timed out (ORA-3136)
    节点2
    Wed Aug 15 03:00:42 2012
    Thread 2 advanced to log sequence 571 (LGWR switch)
    Current log# 3 seq# 571 mem# 0: +DATA/orcl/onlinelog/group_3.265.766686179
    Wed Aug 15 10:47:03 2012
    Trace dumping is performing id=[cdmp_20120815104643]
    Wed Aug 15 10:48:18 2012
    Trace dumping is performing id=[cdmp_20120815104758]
    Wed Aug 15 10:54:24 2012
    Trace dumping is performing id=[cdmp_20120815105404]
    Wed Aug 15 10:55:31 2012
    Trace dumping is performing id=[cdmp_20120815105511]
    Wed Aug 15 13:12:29 2012
    Thread 2 advanced to log sequence 572 (LGWR switch)
    Current log# 4 seq# 572 mem# 0: +DATA/orcl/onlinelog/group_4.266.766686179
    Wed Aug 15 14:19:38 2012
    Trace dumping is performing id=[cdmp_20120815141918]
    Wed Aug 15 22:00:10 2012
    Thread 2 advanced to log sequence 573 (LGWR switch)
    Current log# 3 seq# 573 mem# 0: +DATA/orcl/onlinelog/group_3.265.766686179
    Thu Aug 16 13:13:48 2012
    Thread 2 advanced to log sequence 574 (LGWR switch)
    Current log# 4 seq# 574 mem# 0: +DATA/orcl/onlinelog/group_4.266.766686179
    后续的验证,发现 sqldeveloper 3.0.04和 pl/sql developer 8.0.0.1483 在查询大表的时候都会报3113,唯有SQLPLUS 没问题。
    目前定位于,PL/SQL DEV NAT后的数据库,31493 行的 ORA-3113,25463 行的 正常返回。
    最新进展,在服务器端设置
    To enable tracing at the server, find the sqlnet.ora file for the server and create the following lines in it:
    TRACE_TIMESTAMP_SERVER = ON
    TRACE_LEVEL_SERVER = 16
    TRACE_UNIQUE_SERVER = ON
    后,本来3113 的查询可以正常出来了,但是关闭trace后,又不正常了。
    Solution
    问题最终定位在 CISCO ASA 防火墙的 SQLNet inspect,关闭就OK了。

    ORA-00600 12333 usually means there was a communications error between the client and server. If you kill a session or perform a shutdown while a users connected you could potentially get this error. There's other reasons too. I think you're probably right that Oracle support will tell you to upgrade if you file a TAR with them.
    Did this error crash your database or does it happen frequently? If the answer is no then I wouldn't worry about it unless the end user has said something about it. If this is a problem then I'd contact Oracle support.
    I'm also running 8.1.7.2 and get maybe 1-2 of these errors a month from the same PC. In our case this error didn't correspond with a database shutdown or a killed session. We also tried reinstalling the client software and this didn't fix it either. I think our error may be because of this one PC being on a very old part of our network that probably needs upgrading.

  • ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []

    Hi,
    Does anyone has solution to the below problem
    ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []
    Thanks and Regards

    That we have already researched earlier but we are trying to find out exact solution as per second argument ...is taken. Because for first argument a bug already exists and it is resolved if we apply the interim patch .What is the bug/patch number you are referring to?
    Tell me one thing ...
    if an ORA -600 error has ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []
    and the patch is available for ORA-00600: internal error code, arguments: [kqlidp0:no user], [1292], [], []
    Can we apply that RDBMS server patch for 11.1.0.7 database...Yes.
    Thanks,
    Hussein

  • ORA-00600: internal error code, arguments: [kkqsgqls:1], [], [], [], [], []

    Hi All
    i am getting an ORA-00600 saying
    ORA-00600: internal error code, arguments: [kkqsgqls:1], [], [], [], [], [], [], []
    I am getting this error when i am trying u execute the query
    SELECT hou.name operating_unit
    ,aps.vendor_name supplier_name
    ,aps.segment1 supplier_number
    FROM ap_invoices ai
    ,hr_operating_units hou
    ,ap_suppliers aps          
    UNION ALL
    SELECT hou.name operating_unit
    ,aps.vendor_name supplier_name
    ,aps.segment1 supplier_number
    FROM ap_invoices ai
    ,hr_operating_units hou
    ,ap_suppliers aps
    Can any one help me out for solving this error

    Hi , Nicolas
    I dint find solution for thin even in mta link... any how.. it think its better if i raise SR ... any how thank q Nicolas
    Praveen Gollu

  • ORA-00600: internal error code, arguments: [SKGMBUSY], [1], [0], [0], [0], [], [], []

    What are the possible causes of the following error:
    ORA-00600: internal error code, arguments: [SKGMBUSY], [1], [0], [0], [0], [], [], []
    Can issuing an SQL from an applicatoin using ODBC drivers cause the above error to occur ? If so, what can a
    developer do to prevent this error from happening ?
    Thanks for your help.

    What are the possible causes of the following error:
    ORA-00600: internal error code, arguments: [SKGMBUSY], [1], [0], [0], [0], [], [], []
    Can issuing an SQL from an applicatoin using ODBC drivers cause the above error to occur ? If so, what can a
    developer do to prevent this error from happening ?
    Thanks for your help. This sounds like a problem with the shared memory segement on the server.
    You developer can do nothing to prevent this. I think this has nothing to do with ODBC, because ODBC is on PC and the connect to the server is by SQL*Net.
    Does this occur often ?
    Is there a SQL Statement in the trace file ?
    Is it always the same statement ?
    What db version do you have ?
    Cheers
    Thomas

Maybe you are looking for

  • Material consumption by Equip during outside repair process

    Hi All, if I send one equipment for repair outside(eg. Telephone), first time during repair process he replaced Wire, next time after few month suppose he replaced Keypad. the both materials he(third party) changed are not maintained in our material

  • Dynamic Columns in ALV GRID

    Hi Folks, can any body please give some input on the follwoing. i want to display material created by and material created on for each material based on material selection from selction screen dynamically. like s_mat = 1, 2,3. o/p must be mat1 |crete

  • Protect PDF files with a password

    Hi everyone, Do you know if there's a way to protect PDF documents with a password? I don't mean those apps (e.g. Google Reader) that let you password-protect your files just while you're using/viewing them on the iPad, I'd like an app that if you wa

  • Is It Possible to Blank Out the iMac Screen While Mirroring?

    I have my iMac hooked up to a Sony Bravia HDTV and would like to know... I am mirroring the displays so whatever shows up on my iMac shows up on my Sony TV, can I black out the screen on the iMac so I can only see the images on the Sony TV? Or do I h

  • My iPhone 5c rear camera won't work and the led light doesn't work either

    At first just snapchat wouldn't work and then I tried my actual camera and neither camera worked. I turned it off and on again and the front facing camera works but the rear facing one doesn't. Snapchat wont use either one. Then I pulled up my settin