Why I always get the error(ORA-00600)?

Why I always get the error(ORA-00600)?
My database Oracle 9.2.0.1.0 I installed Oracle Jdeveloper 9i on my computer.
OS:windows2000
My program:
Class.forName("oracle.jdbc.driver.OracleDriver");
con =java.sql.DriverManager.getConnection("jdbc:oracle:thin:@server:1521:db","developer","12345");
java.sql.Statement stmt=con.createStatement();
java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
while (rs.next()){              
     //getInformation
     String fjbh=rs.getString("task_title");
If I use this in a common java program(like MyParser.java). It will work well:
D:\JavaApp> java MyParser
but If I put the code into a JSP file . It will not work.I tried several times.
I find that the statment:
     java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
will throw the exception.It seemd that I can connect to the database ,
but can not execute some sql statment.
If I execute this sql statment:
     select sysdate from dual ;
     or
     select task_ID from task ; --task_id is a column with the type NUMBER(10)
it will work.
but if I execute :
     select Task_Title from task where task_id=1; --Task_Title is a column with the type VARCHAR(50)
     or
     select t.task_text.getCLOBVal() task_Text from task t where task_ID=1;
               --task_text is a column with the type XMLTYPE, I use this column save XMLFile.
it will not work.
the detail error information as follow:
java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], []

It is a database bug (an ORA-0600 almost always is). In this case it is bug# 1725012. You can see the details from MetaLink. There are some patches (by platform) available you should see which may apply to you.

Similar Messages

  • Why i always get the message "Oops! Something just went wrong on our server! We've logged the prbl"

    why i always get the message "Oops! Something just went wrong on our server! We've logged the problem and will fix it as soon as possible. Sorry for the inconvenience." everytime i added new apps on eprintcenter.

    I will need a little more information in order to help out. What model of printer is it that you own? Are you able to ePrint with the machine when you send emails to it? Have you every been able to successfully download apps to the machine without getting the error message? Do the apps that you download successfully download at any time after that error and later work?
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • RMAN backup restore leads to the error "ORA-00600: internal error code, arguments: [kccsbck_first], [2], [2349545192]" on DB startup

    Hi All,
    DB:11.2.0.3.0
    OS: Sun Solaris SPARC 64 bits
    I am facing an issue -  RMAN backup restore leads to the error "ORA-00600: internal error code, arguments: , , " on DB startup. Restored from RMAN backup DB test2 to DB test1.
    <p mcekeep="true">  $ sqlplus / as sysdba
    <p mcekeep="true">   SQL*Plus: Release 11.2.0.3.0   Production on Sun Oct 6 09:31:28 2013
    <p mcekeep="true">   Copyright (c) 1982, 2011,   Oracle.  All rights reserved.
    <p mcekeep="true">   Connected to an idle instance.
    <p mcekeep="true">  
    SQL> startup
    ORACLE instance started.
    Total System Global Area 4277059584 bytes
    Fixed Size                  2166160 bytes
    Variable Size            1493176944 bytes
    Database Buffers         2768240640 bytes
    Redo Buffers               13475840 bytes
    ORA-00600: internal error code, arguments: , , ,
    SQL> exit
    DB test2 database validated:
    RMAN> validate Database;
    No issues reported.
    Could anyone please let me the what's the cause of this error
    Thanks for your time
    Regards,
    user10088255

    HI,
    CASE : I
    C:\>set ORACLE_SID=xxxx
    C:\>sqlplus sys/XXXXX@rosen as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 29 12:28:00 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area   3423965184 bytes
    Fixed Size                      2180544 bytes
    Variable Size                2080377408 bytes
    Database Buffers           1325400064 bytes
    Redo Buffers                   16007168 bytes
    ORA-00600: internal error code, arguments: [kccsbck_first], [1], [3978145973],
    Solution:   AFTER GETTING  ORA-00600, SHUT THE DATABASE AND STARTUP IT INTO MOUNT STAGE  AND  THEN ALTER  DATABASE   TO OPEN STAGE .
    SQL> shut immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 3423965184 bytes
    Fixed Size                      2180544 bytes
    Variable Size                 2080377408 bytes
    Database Buffers           1325400064 bytes
    Redo Buffers                    16007168 bytes
    Database mounted.
    SQL> alter database open;
    Database altered.
    SQL> select name,open_mode from v$database;
    NAME      OPEN_MODE
    ROSEN     READ WRITE
    CASE :: II
    C:\>sqlplus sys/XXXX@royalton as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 29 12:37:37 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  3423965184 bytes
    Fixed Size                      2180544 bytes
    Variable Size                  1979714112 bytes
    Database Buffers            1426063360 bytes
    Redo Buffers                  16007168 bytes
    ORA-00600: internal error code, arguments: [kccsbck_first], [1], [73515151],[], [], [], [], [], [], [], [], []
    Solution :  As in above case, I have started the database in mount and then alter it to the open mode but it doesnot work out. After some analysis ,troubleshooting and googling, we have decided to flush the shared pool  component of the SGA . So, we have started the database in mount stage and then flush the shared pool and further alter it to open stage . Below are the steps performed to solve this issue .
    SQL> shut immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    C:\>set ORACLE_SID= royalton
    C:\>sqlplus sys/xxxxxxxx@royalton  as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 29 12:28:00 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 3423965184 bytes
    Fixed Size                     2180544 bytes
    Variable Size                 2080377408 bytes
    Database Buffers            1325400064 bytes
    Redo Buffers                  16007168 bytes
    Database mounted.
    SQL> alter system flush shared_pool;
    SQL> alter database open
    Database altered.
    SQL> select name,open_mode from v$database;
    NAME            OPEN_MODE
    ROYALTON        READ WRITE
    Conclusion : Though this is not the solution but a workaround to solve ORA-00600  which is having same argument as above, then you may follow the above steps.
    Please chek this link : One Can Succeed at Almost Anything For Which He Has Enthusiasm...: ORA-00600: internal error code, arguments: [kccsbck_f…

  • Only in my PC I get the error ORA-03113

    Hi
    I have tried to run a simple QUERY (SELECT * FROM marcas;) but if the table has more than 2,000 records I get the error ORA-03113, but if I run the same query in other PC I don't have problems. If the table has less tahn 2,000 I don't have problems in my PC.
    I have SQL*Plus: Release 9.2.0.1.0
    Why?...I need help!!!!! tanks!!!

    Hi,
    could be a network problem. Check your Oracle Client installation using others tools like tnsping. Sometime firewalls or similar can interrupt a connection. Check also your pc with applications that use a persistent connection like a long file transfert.
    Hope this helps
    Sam

  • I try to export my Imovie and I always get the error code"Unable to prepare project for publishing...File already open with write permission"  it even does it when I am just trying to export to my external hard drive to save the file

    I try to export my Imovie and I always get the error code"Unable to prepare project for publishing...File already open with write permission"  it even does it when I am just trying to export to my external hard drive to save the file

    Thanks!!! I had same error (with -49) and the mac had an external hard drive attached.. and it was doing a backup.  Stopped, disconnected and the project exported!

  • I am trying to listen BBC radio news from BBC App, but on pressing the button I always get the error "there was an error playing this radio feed". What is the source of this error and how can I remove it?

    I am trying to listen BBC radio news from BBC App, but on pressing the button "live radio" I always get the error "there was an error playing this radio feed". What is the source of this error and how can I remove it?

    That is probably just a generic error message and you might not ever know what is causing it. Assuming that you have been able to play live radio with the app in the past (I know nothing about the app) and assuming that all other Internet related functions (Safari, email, etc.) are working properly on your iPad, quit the app completely and reboot your iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If that fails to resolve the issue, you might want to reboot your router, unplug it for about 30 seconds and then plug it in again.

  • Why do I get the error message: "The file "iTunes Library" cannot be read because it was created by a newer version of iTune." I am using iTunes9.1.1 which, I believe, is the highest for OS 10.4.11 ?

    Why do I get the error message: "The file "iTunes Library" cannot be read because it was created by a newer version of iTune." I am using iTunes9.1.1 which, I believe, is the highest for OS 10.4.11 ?

    Hello,
    Did you reinstall lately?
    My 10.4.11 Drive seemes to have iTunes 7.6.2 on it, have you tried Software update to see if iTunes is listed?
    Another 10.4.11 drive has iTunes 6.05 on it... I hate upgrading iTunes, seems worse at every upgrade.
    The 10.5.8 drive I'm booted from now has iTunes 8.02 on it.

  • I get the message lightroom 5.5 is availeble, i downloaded it, but i always get the error, lightroon.msi is missing, fault 1714, can not uninstall 5.5 ( and i just want to install that ??? )

    i get the message lightroom V5.5 is availeble, i downloaded it, but i always get the error, lightroon.msi is missing, fault 1714, can not uninstall V5.5 ( and i just want to install that ??? )

    Lightroom 4.2 Installation Issue

  • Why do I get the error message "iTunes Match could not download because disconnected from network?  I'm connected to the internet during that time with Safari so am I not connected to the network?

    Why do I get the error message "iTunes Match could not be updated because you were disconnected from the network during processing."  I'm on the internet during all of this.  What disconnect is the message referring to?  Itunes is frozen now.  I keep clicking OK but it just comes back with no action.

    Hello FredJay,
    Thank you for contacting Apple Support Communities.
    iTunes Match needs a network connection to work, either Wi-Fi, cellular or wired. See the following:
    Make sure you have an active Internet connection
    Be sure your computer or device has an active Internet connection by loading a webpage using Safari or another web browser.
    On an iOS device with cellular support, if you are not on a Wi-Fi network, try enabling 3G cellular data1 for iTunes Match.
    For iOS 6, tap Settings > iTunes & App Stores > Use Cellular Data > On
    For iOS 5.1.1 or earlier, tap Settings > iTunes & App Store > Use Cellular Data > On
    1Fees may be associated with downloading over cellular networks; contact your wireless carrier for details.
    From:
    iTunes Store: Troubleshooting iTunes Match
    http://support.apple.com/kb/TS4054
    Regards,
    Jeff D.

  • Why am I getting the error message disallowed key characters in Safari on my mac?

    Why am I getting the error message dissallowed key characters while browsing the web on my mac?

    As there have been no further responses to this thread, I've finally marked Google Chrome as my default browser on both computers.

  • Why do I get the error message "unable to load page (HTTP 502) when I try to open Mobile Web?

    I have an LG Octane 3 basic phone.   Does everything I need, phone and text, and I never was interested in web or e-mail capabilities until I recently upgraded our plan to the "More Everything" and was able to use data and check e-mail and access the internet.   Whenever I try to open Mobile Web, I get the error message "unable to load page (HTTP 502)".    As of March 31, 2015, all of us basic phone users lose the "Mobile Email" app on our phones, and will have to access web versions of our e-mail via the web.  Which is currently unavailable and doesn't work.
    Over a week ago, did a chat session with a tech support rep, and she indicated that either she or an engineer would contact me with how to fix the problem.   Have not heard anything from anybody, and the deadline is approaching quickly.   Have no need of all the excess features of a smart phone, nor do I wish to be forced to jettison a perfectly working phone for my needs and buy something I don't want to be able to do 2 simple things.............check e-mail to see if there's something that needs to be answered right away, and to check traffic reports when I'm on the road, or find something in an area with which I'm not familiar.     Not really too much to ask, you would think....   )
    Has anyone else had this same problem, and if so, how do we fix it....???  My next move is a phone call, but those haven't always been very productive.
    If any of you have any ideas why this error keeps coming up and the web can't load, and some on how to fix it, I would really appreciate some advice.
    Thanks in advance.
    Karen

    Since the chat session got no reply, I contacted Verizon by phone and a very nice level 2 tech created a trouble ticket and sent it up the food chain.  Got a call back, maybe 2 days later, and had a nice, although very long session with a higher level tech.  They had determined that the browser for the LG Octane is an old one and no longer supported by Verizon.    We tried everything we could to download the Opera browser, but since I was totally unable to get Mobile Web to work, couldn't do it.   The only other possible "fix" was to totally reset the phone to factory specs and try it again.   That would mean a lot of work on my part to move anything I didn't want to disappear off the phone, and find a place to forward texts that had to be saved.   Caught our tenants lying about why the rent was late (again), and need that for when I put them back on a lease....  
    Long story short is that unless we try this total reset, which isn't a sure fix, either, anyone who isn't able to access the Mobile Web with the LG Octane will have to change their plan to avoid paying for data that you can't access using any method. 
    I ran a test with an app that I knew was no longer valid.....that was sending photos to PixPlace.   Got the exact same error message as when trying to access Mobile Web to get the web version of my e-mail.   That just verified that the 502 error is, at least in the LG Octane, for an app that no longer works.   After today, we'll get the same thing when we try to access Mobile E-Mail.
    Have to admit, it's a real ****-off, but this shouldn't surprise me, since Verizon won't repair older copper phone lines if you are in an area where FIOS is offered. 
    I am going to immediately change my husband's and my cell phone plan to one without data, and see what I can find that will still give unlimited calls and text.  The way my luck runs, they won't offer one for a decent price.  The other half has some very long-winded friends and he was always running over minutes, and some months are very text-heavy and I'd go over my limit.   Absolutely HATE touch screens, and am not looking forward to having to get a new phone.  

  • Why am I getting the error: error getting license License Server communication problem W_ADEPT_CORE_EXPIRED when I try to download a book from the public library using Adobe Digital Editions. It has been working for a few months, but now I suddenly get th

    I have checked and the Adobe Digital Editions is authorized. The library book doesn't expire for another 14 days.  These have been the only two suggestions that I have found in other forums.  Does anyone have any other suggestions?

    I am having this exact issue. I just downloaded a book and went to open it and got this exact problem.
    I purchased he book through indigo/kobo edition and paid for it and immediately went to open it and am getting the same error
    Error getting License. License Server Communication Problem only mine says  Bad Device key after.
    Not sure why someone has not answered this question yet...i am using windows 7 and this is how i always do it. Never had this problem before when purchasing a book.
    i hope someone answers this soon.

  • Getting the error ORA-07445: exception encountered: core dump [PC:0x10000]

    Hi,
    I am getting the following error in alert.log when raising an event using wf_event.raise() API and the sql session is being closed saying ORA-03113: end-of-file on communication channel.
    This error is happening only in 11gR2 only, its working fine in 11gR1 and 10g instances.
    ORA-07445: exception encountered: core dump [PC:0x10000] [SIGSEGV] [ADDR:0x10000] [PC:0x10000] [Address not mapped to object] [] ssexhd: crashing the process... Shadow_Core_Dump = PARTIAL
    <msg time='2009-09-25T07:07:50.296-07:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='rws60079rems' host_addr='139.185.21.219' module='SQLTools.exe'
    pid='18261'>
    <txt>Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x10000]
    [PC:0x10000, {empty}] [flags: 0x0, count: 1]
    </txt>
    </msg>
    <msg time='2009-09-25T07:07:50.413-07:00' org_id='oracle' comp_id='rdbms'
    msg_id='3420300351' type='INCIDENT_ERROR' group='Access Violation'
    level='1' host_id='rws60079rems' host_addr='139.185.21.219'
    prob_key='ORA 7445 [PC:0x10000]' upstream_comp='' downstream_comp=''
    ecid='' errid='142805'
    detail_path='/slot/ems3456/oracle/db/tech_st/11.2.0/admin/atg212x3_rws60079rem
    s/diag/rdbms/atg212x3/atg212x3/trace/atg212x3_ora_18261.trc'>
    <txt>Errors in file
    /slot/ems3456/oracle/db/tech_st/11.2.0/admin/atg212x3_rws60079rems/diag/rdbms/
    atg212x3/atg212x3/trace/atg212x3_ora_18261.trc (incident=142805):
    ORA-07445: exception encountered: core dump [PC:0x10000] [SIGSEGV]
    [ADDR:0x10000] [PC:0x10000] [Address not mapped to object] []
    </txt>
    </msg>
    <msg time='2009-09-25T07:07:56.424-07:00' org_id='oracle' comp_id='rdbms'
    msg_id='dbgripsto_sweep_staged_obj:14105:70631439' type='ERROR'
    group='ami_comp'
    level='8' host_id='rws60079rems' host_addr='139.185.21.219'>
    <txt>Sweep [inc][142805]: completed
    </txt>
    </msg>
    Trace file
    /slot/ems3456/oracle/db/tech_st/11.2.0/admin/atg212x3_rws60079rems/diag/rdbms/
    atg212x3/atg212x3/trace/atg212x3_ora_18261.trc
    Trace file
    /slot/ems3456/oracle/db/tech_st/11.2.0/admin/atg212x3_rws60079rems/diag/rdbms/
    atg212x3/atg212x3/trace/atg212x3_ora_18261.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /slot/ems3456/oracle/db/tech_st/11.2.0
    System name: Linux
    Node name: rws60079rems
    Release: 2.6.9-78.0.0.0.1.ELhugemem
    Version: #1 SMP Fri Jul 25 14:53:18 EDT 2008
    Machine: i686
    Instance name: atg212x3
    Redo thread mounted by this instance: 1
    Oracle process number: 20
    Unix process pid: 18261, image: oracle@rws60079rems
    *** 2009-09-25 07:07:50.292
    *** SESSION ID:(10.3141) 2009-09-25 07:07:50.292
    *** CLIENT ID:() 2009-09-25 07:07:50.292
    *** SERVICE NAME:(SYS$USERS) 2009-09-25 07:07:50.292
    *** MODULE NAME:(SQLTools.exe) 2009-09-25 07:07:50.292
    *** ACTION NAME:() 2009-09-25 07:07:50.292
    Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x10000]
    [PC:0x10000, {empty}] [flags: 0x0, count: 1]
    DDE: Problem Key 'ORA 7445 [PC:0x10000]' was flood controlled (0x4)
    (incident: 142805)
    ORA-07445: exception encountered: core dump [PC:0x10000] [SIGSEGV]
    [ADDR:0x10000] [PC:0x10000] [Address not mapped to object] []
    ssexhd: crashing the process...
    Shadow_Core_Dump = PARTIAL
    Edited by: sarojak on Sep 29, 2009 1:01 AM

    Have you logged a call with Oracle support? There are many causes of 7445's and oracle supports web site has a handy set of documents about them. Also they have:- : Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool. I would highly recomend talking to them.
    https://metalink.oracle.com/

  • Getting the error ORA-27001: unsupported device type

    Hi ,
    While I am starting to backup via RMAN I am getting the following error. I kept my backup files on my disk and configured the channel as
    RMAN> SHOW DEFAULT DEVICE TYPE;
    RMAN configuration parameters are:
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    RMAN> restore tablespace user_undo;
    Starting restore at 19-DEC-06
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 12/19/2006 17:00:36
    ORA-19554: error allocating device, device type: DISC, device name:
    ORA-27001: unsupported device type
    When I checked in the v$backup_device its giving my the following result
    SQL> SELECT * FROM V$BACKUP_DEVICE;
    DEVICE_TYPE
    DEVICE_NAME
    SBT_TAPE
    Could anyone please help me out.
    Thanks

    RMAN> SHOW DEFAULT DEVICE TYPE;
    RMAN configuration parameters are:
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    RMAN-03002: failure of restore command at 12/19/2006
    17:00:36
    ORA-19554: error allocating device, device type:
    DISC, device name:> ORA-27001: unsupported device type
    Is it possible that you have line similar to the following when you enter
    show all;
    CONFIGURE CHANNEL DEVICE TYPE DISC FORMAT <path>

  • Why am I getting the error message, "the iPod "..." cannot be synced because a duplicate file name was specified"?

    Whenever I plug my ipod into my laptop, I keep getting this error message, and then it freezes iTunes and will not sync anything onto my ipod anymore.

    Delete the iPod Photo Cache folder.  Its location can be found here:
    iTunes: Photo sync creates iPod Photo Cache folder

Maybe you are looking for

  • How can I change the color of interactive image label box background.

    Interactive image labels are a bit overwhelming in appearance. Can I change the label background color or make it partially transparent? I have tried several things and looked this up on Lynda.com training but no info.

  • Make pacman more verbose?

    Is there a way to make pacman more verbose in showing what packages are being installed or updated? For example, when doing a system update, you get a long list of packages that will be downloaded and installed. Most of them are packages you already

  • Third Party Order Delivery Costs ( COGS for Purchasing)

    Hello Experts We have a Scenario where in its a 3rd Party Order direct shipment Process where the Shipping is done by a Logistics Vendor! So->PR>PO>Inbound Del->GR->IR>Goods Issue-->Customer Invoice. Now the Issue we have is Delivery Costs(Freight,In

  • Drawing tool behaviour in Flash CC

    Hello, I'm using Flash for about 10 years now, and recently use the new flash CC for my new projects. I'm really disappointed with the new drawing tool. I mean, the new behaviour of the old brush tool. What did you do to it ? it has always been hard

  • Hooking up an iMac by ethernet?

    So I have a 2011 27" iMac with less-than-stellar WiFi (constant dropouts, amongst other things), and after a few trips into the Apple Store for maintenance, they determined that it's the $900 logic board that's faulty. I've since bought a Retina MBP