SQL-Query with JDBC returns error ORA-00600

Hi,
I try to execute a SQL-Query using JDeveloper 3.2.3 and the Oracle JDBC-Library 8.1.7
The following statement
'ResultSet rset=stmt.executeQuery(SQL-String);'
where stmt is Statement returns a Database-Error
ORA-00600 with the Arguments [ttcgcshnd-1], [0] [], [], [], [], [], []
when the SQL-String queries Varchar2 or CHAR-Columns.
The Query returns correct values for numeric fields.
The Database-Server is running on Oracle 9i
Does anybody know, what could be the reason?
Thanks, Harold

I found many forums about it also, but I still haven't got solution yet.
They talk about the cause, and report to oracle group and so on,
but I still don't know how to solve my problem and how to enable my oracle 9i jdbc driver working.
Need help please

Similar Messages

  • SQL query with parameter returns empty result set, please help !!!

    Hi there,
    When I use the following query :
    <sql:query var="beroepsthemas" >
    select *
    from beroepsthemas
    where beroepsthemaid = ?
    <sql:param value="12"/>
    </sql:query>
    When I want to browse the result set with :
    <c:forEach items="${beroepsthemas.rows}" var="rij">
    it shows no records. But it must return at least one.
    All my jsp pages with sql queries and parameters have the same problem.
    This is all on my test environment. I'm using Ubuntu 5.10, Netbeans5.0, JDK 1.5_06, application runs in Bundeled Tomcat 5.5.9, MySQL 4.1.12, mysql-connector3.1.6
    When the same code is run on the live environment, it works just fine.
    The difference is :
    Mysql 4.1.10a, tomcat5.5.9, mysql-connector3.1.6
    What can there be wrong !!

    When the same code is run on the live environment, it
    works just fine.
    The difference is :
    Mysql 4.1.10a, tomcat5.5.9, mysql-connector3.1.6
    I didn't catch this. I think you may need to update the database driver.

  • Internal error ORA-00600: internal error code, arguments: [25025], [24]

    Hi ,
    OS :HP-UX 64bit 11.23
    Oracle Version 10.2.0.1
    I'm trying to open the database but it's not working as I expect . Then I created the controlfile and restart the database but I've got the same error
    SQL>Alter database open;
    ORA-00600: internal error code, arguments: [25025], [24], [], [], [], [], [], []
    Sun Mar 20 22:48:28 2011
    Error 600 happened during db open, shutting down database
    USER: terminating instance due to error 600
    Instance terminated by USER, pid = 12666
    ORA-1092 signalled during: alter database open...
    Please help
    Best regard
    Tien

    Hi
    All what you see is the content of alert.log file
    SQL>STARTUP mount
    --->success
    SQL> ALTER DATABASE OPEN ;
    -----> Internal error ORA-00600: internal error code, arguments: [25025], [24]
    then
    Shutdown immediate
    SQL>startup nomount
    SQL>@create_control.sql ( from command ALTER DATABASE BACKUP controlfile to trace'
    ----->success
    SQL>alter database mount
    ----->success
    SQL>alter database open;
    ---> got the same error
    Best regard
    Tien

  • XMLQuery SQL Error: ORA-00600: internal error code,

    Hi guys,
    I am trying to use XML feature of Oracle DB. What I am trying to implement is having XMLTYpe field in table and have some values in it and then query that table using XMLQuery(...). I started with example here : http://www.psoug.org/reference/xmlquery.html .
    I am able to create table, Insert data into table, but when I tried to run SELECT query it does not work
    "SELECT person_id, XMLQuery(
    'for $i in /PDRecord
    where $i /PDName = "Daniel Morgan"
    order by $i/PDName
    return $i/PDName'
    passing by value person_data
    RETURNING CONTENT) XMLData
    FROM person_data; "
    It throws error like
    "Error report:
    SQL Error: ORA-00600: internal error code, arguments: [qmxqrwRewExpr:1], [], [], [], [], [], [], []
    00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"
    Am I missing any thing? or is my Oracle 10g DB is not compatible with XMLType ?
    Please help.

    Hi Marco,
    Thanks for replying.
    Oracle Database 10g Release 10.2.0.1.0 - Production. so as per you said it should work. I am sorry for being dumb, but I am not DBA guy. can you tell me how to check if XMLDB is installed properly? how can I look at DBA_REGISTRY and what kind of information I will find under DBA_REGISTRY?
    BTW I found another way of querying XMLType columns from here http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96620/xdb04cre.htm which uses extract(), existsNode(), etc.. function to accomplish some of the task. As of now I am still digging in it, so not sure which one will be better to use. I mean the link that I showed on my first thread or the above link.
    I am still curious why wouldnt my first thread query work.
    Thanks again.

  • Java.sql.SQLException: Listener refused the connection with the following error: ORA-12514, TNS:listener does not currently know of service requested in connect descriptor

    Good Day,
    I'm encountering this problem
         java.sql.SQLException: Listener refused the connection with the following error:
         ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    here's the java code
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    String url = "jdbc:oracle:thin:@//10.143.85.21/UCSL";
    String userName = "mssoriano";
    String passWord = "mssoriano_4319";
    conn = DriverManager.getConnection(url, userName, passWord);
    and here's my tnsnames.ora
    UCSL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 10.143.85.21)(PORT = 1521))
        (CONNECT_DATA =
          (SID = psusldb11)
    Please do let me know if what may the cause of the problem and how to solve this. Thank you and God bless.

    Hi,
    see this example
    Connect to Oracle DB via JDBC driver
    Frank

  • Using 'Function Returning SQL Query' with Flash charts

    I have created a pl/sql function that returns a SQL query as a varchar2 of this form:
    select null link
    <x value> value
    <Series1 y value> Series 1 Label
    <Series2 y value> Series 2 Label
    <Series3 y value> Series 3 Label
    from tablea a
    join tableb b
    on a.col = b.col
    order by <x value>
    If I now call the function from a Flash Chart Series SQL box with the Query Source Type set to 'Function Returning SQL Query' like this:
    return functionname(to_date('30-sep-2010', 'dd-mon-yyyy'))
    it parses correctly and the page is saved; however, when I run the page I don't get any output - nor any error messages or other indication of a problem.
    Now, if I call the function in a SQL client, capture the SQL query output using dbms_output and paste that into the Flash Chart Series SQL box - changing the Query Source Type to SQL Query - and save the page it works fine when I run it and returns a multi-series flash chart.
    Can anyone suggest either;
    1. What have I might have missed or done wrong?
    2. Any way to usefully diagnose the problem...
    I have tried using the Apex debugger - which is very nice, by the way - but it doesn't provide any info on what my problem might be. I even tried writing my own debug messages from my function using the apex_debug_message package - got nothing...
    Thanks,
    Eric

    Hi Eric,
    Try expressing the source as this:
    begin
       return functionname(to_date('30-sep-2010', 'dd-mon-yyyy'));
    end;That works fine for me, and if I take out the begin-end and the trailing semicolon from the return statement I get the same behavior as you.
    It does mention in the help for the source (only during the wizard though) that this source type has to be expressed that way, but I agree it would be helpful if the tool would validate for this format when 'Function Returning SQL Query' is used or give some sort of indication of the trouble. Anyway, this should get you going again.
    Hope this helps,
    John
    If you find this information useful, please remember to mark the post "helpful" or "correct" so that others may benefit as well.

  • Compiling error ORA-00600 with Forms 6 and Database 10g

    Hi,
    I am using "Oracle Database 10g Enterprise Edition Release 10.1.0.4.0" and "Forms [32 Bit] Version 6.0.8.26.0 " with patch 17, when i compile a form that works with some tables in another database under dblink the error ORA-00600:internal error code, arguments:[16203],[],[],[],[],[],[],[] is displayed.
    If i word with reports or sqlplus no error is displayed.
    Before we installed 10g everything worked ok
    What is wrong with forms or do i need to configure something else?
    Regards
    Yuri V. López Manrique

    I searched for this error on Google and found the following blog:
    Is there a tool to troubleshoot ORA-00600 and ORA-07445 errors?
    February 27th, 2006 By Fahd Mirza
    ORA-00600 and ORA-07445 errors are the most esoteric errors in Oracle.
    There is a tool called “ORA-600/ORA-7445 Troubleshooter” available at Metalink. It asks for the first argument of ORA-600 error with an optional database version number.
    For example, to see the description of the error:
    ORA-00600: internal error code, arguments: [723], [25908], [25908], [memory leak]
    You enter 723 in the “ORA-600 First Argument” field. The first argument is a pointer to where in the code the error was caught and thus is the key information in identifying the problem.
    You can also embed (copy/paste) the “Call Stack Trace” there, and, when you click on the “Search Call Stack” button an advanced MetaLink search is performed to find documents containing relevant sections from the call stack.
    Call Stack extracts from the following files are supported:
    * Generic foreground and background server trace files located in background_dump_dest and user_dump_dest
    * OpenVMS NETV2 and BEQ log files located in ORA_ROOT:[NETWORK.LOG]
    * WINDOWS CORE.LOG files
    * GDB (debugger) backtrace call stacks (best endeavors)
    Of course you will need a login to Oracle's Metalink site.
    Hope that helps,
    c

  • Database crashed with error ORA-00600: internal error code, arguments

    Hi,
    Yesterday night one of our database was crashed and when I see the altert log file I found below errors
    Oracle 10g, AIX 5.3 platform
    Killing background process QMNC
    Tue Oct 14 20:22:07
    Errors in file /oracle/SID/saptrace/usertrace/sid_ora_6492356.trc:
    ORA-00600: internal error code, arguments: [ksb_shut_detached_process3], [QMNC], [], [], [], [], [], []
    Tue Oct 14 21:02:27 2008
    Adjusting the default value of parameter parallel_max_servers
    from 320 to 65 due to the value of parameter processes (80).
    trace file contains below errors
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [ksb_shut_detached_process3], [QMNC], [], [], [], [], [], []
          Call Stack Trace
    calling              call     entry                argument values in hex
    location             type     point                (? means dubious value)
    ksedst+001c          bl       ksedst1              700000010008000 ?
                                                       700000069243690 ?
    ksedmp+0290          bl       ksedst               104325D68 ?
    ksfdmp+0018          bl       03F599D0
    Anyone has any idea regarding this error? 
    Now the database is up, but would like to know why this has happened.
    Thank you
    KVR
    Edited by: KVR on Oct 15, 2008 10:03 AM

    Theres plenty of notes about ORA-00600... all depending on what is you Oracle version and what was running when the crash happen.
    If it was during the night maybe the system was updating statistics then you can check SAP Note 365421 ORA-00600 [1113] when generating statistics
    Regards
    Juan

  • 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.

  • Oracle error ORA-00600 when using Oracle 10g and Sun One Web Server 6.1

    I have a java application that was running under Solaris 8 and Oracle 9i. I am trying to get it up and running on a new server that is configured with Solaris 9 and Oracle 10g. Whenever the application tries to connect to the database it receives the following error: ORA-00600 [ttcgcshnd-1][0]. My research indicates that this is an internal Oracle error that represents a low level unexpected condition. I have looked through my configuration for the Web Server and I have not been able to determine the cause of this problem. My DBA tells me that we have the latest patch installed for Oracle! Has anyone encountered this problem before? Any help would be greatly appreciated!

    If the problem is also present in a SWING app, i.e. outside the web server, then it is porbably something external to the webserver.
    I think you should ensure that the driver and database are compatible with each other. It is very likely that you need a new jdbc driver for the new database.
    download from here http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101020.html
    try the ojdbc14.jar

  • Help pls Error ora 00600

    Dear all,
    I got the error in log file as the following :
    ORA-00600: internal error code, arguments: [kcbgtcr_4], [259591], [259299], [1152], [1], [], [], []
    Errors in file /ora8163/home/admin/seven/udump/ora_19985_seven.trc:
    ORA-00600: internal error code, arguments: [kcbgtcr_4], [259591], [259299], [1152], [1], [], [], []
    and here is the example trc file
    Dump file /ora8163/home/admin/seven/udump/ora_19985_seven.trc
    Oracle8i Enterprise Edition Release 8.1.6.3.0, 64 bit - Production
    With the Partitioning option
    JServer Release 8.1.6.3.0 - Production
    ORACLE_HOME = /ora8163/home
    System name:     HP-UX
    Node name:     slurpee
    Release:     B.11.00
    Version:     U
    Machine:     9000/800
    Instance name: seven
    Redo thread mounted by this instance: 1
    Oracle process number: 10
    Unix process pid: 19985, image: oracle@slurpee (TNS V1-V3)
    *** SESSION ID:(20.43829) 2006-02-24 23:00:05.909
    BH #25019 (0xc000000029bd08c0) file#: 21 rdba: 0x0541a811 (21/108561) class 4 ba: 0xc00000004acf4000
    set: 1, dbwrid: 0
    hash: [c00000002a7bfd40,c00000002a7bfd40], lru: [c000000029849ea0,c000000029ada500]
    LRU flags:
    ckptq: [NULL] fileq: [NULL]
    st: XCURRENT, md: NULL, rsop: 0x0, tch: 1
    flags: gotten_in_current_mode
    L:[0x0.0.0] H:[0x0.0.0] R:[0x0.0.0]
    buffer tsn: 10 rdba: 0x0541a811 (21/108561)
    scn: 0x0000.7dc4d705 seq: 0x02 flg: 0x00 tail: 0xd7051002
    frmt: 0x02 chkval: 0x0000 type: 0x10=DATA SEGMENT HEADER - UNLIMITED
    Extent Control Header
    Extent Header:: spare1: 0 space2: 0 #extents: 1 #blocks: 255
    last map 0x00000000 #maps: 0 offset: 2080
    Highwater:: 0x0541a812 ext#: 0 blk#: 0 ext size: 255
    #blocks in seg. hdr's freelists: 0
    #blocks below: 0
    mapblk 0x00000000 offset: 0
    Disk Lock:: Locked by scn: 0x0003.00c.00038409
    Map Header:: next 0x00000000 #extents: 1 obj#: 259591 flag: 0x40000000
    Extent Map
    0x0541a812 length: 255
    nfl = 1, nfb = 1 typ = 1 nxf = 1
    SEG LST:: flg: UNUSED lhd: 0x00000000 ltl: 0x00000000
    XCT LST:: flg: UNUSED lhd: 0x00000000 ltl: 0x00000000 xid: 0x0000.000.00000000
    *** 2006-02-24 23:00:05.936
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kcbgtcr_4], [259591], [259299], [1152], [1], [], [], []
    Current SQL statement for this session:
    SELECT a.tablespace_name as Tablespaces_Name,
         to_char(round(NVL(a.bytes / 1048576 , 0),2) ,'999,999' ) as "Total(MB)",
         to_char(round(NVL(u.bytes, 0)/ 1048576 ,2) ,'999,999' ) as "Used(MB)" ,
         to_char(round((NVL(a.bytes,0) - nvl(u.bytes,0))/ 1048576 ,2) ,'999,999' ) as "Free(MB)",
    to_char(round(NVL(NVL(u.bytes, 0) / a.bytes * 100, 0), 2 ),'99.99') || ' %' as "Used %"
    FROM (select tablespace_name, sum(decode(AUTOEXTENSIBLE,'NO',bytes,maxbytes)) bytes
    from dba_data_files
    group by tablespace_name
    union
    select tablespace_name, sum(decode(AUTOEXTENSIBLE,'NO',bytes,maxbytes)) bytes
    from dba_temp_files
    group by tablespace_name
    ) a,
    (select tablespace_name,sum(bytes) bytes
    from dba_extents
    group by tablespace_name
    union
    select tablespace_name, sum(bytes_cached) bytes
    from v$temp_extent_pool group by tablespace_name
    ) u
    WHERE a.tablespace_name = u.tablespace_name(+)
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedst + 399 ???? skdstinit C0000000003DACD7 ?
    800003FFEFFF9A20 ?
    8000000100070758 ?
    000000027 ?
    ksedmp + 247 ???? ksedst 000000000 ?
    8000000100060D80 ?
    000000000 ? 000000000 ?
    ksfdmp + 35 ???? ksedmp 800003FFEFFF8780 ?
    800003FFEFFF8CF0 ?
    000000000 ? 000400058 ?
    kgerinv + 163 ???? ksfdmp 000000000 ? 000400058 ?
    800000010005E058 ?
    4000000000200168 ?
    kgeasnmierr + 91 ???? kgerinv 800003FFEFFF8920 ?
    8000000100060D80 ?
    000000000 ?
    800000010005DE30 ?
    Thks for advance
    Chara

    There is ORA-600 utility / tool in metalink, paste your stuff there and see what comes out of it.
    It is definitely critical but mostly the answer is to apply oracle patches.

  • Trace Error - ORA-00600: internal error code

    Hi All:
    I'm using VB6, ADO 2.5, and the Oracle Provider for OLE DB. When I run the following SQL statment I get an Oracle trace error:
    SELECT a.VPATypeID AS ID,
    CASE WHEN NVL(c.Total,0) > 0 OR NVL(b.Total,0) > 0
    THEN a.Description
    ELSE CAST(a.Description || ' (N/A)' AS NVARCHAR2(255))
    END AS Description
    FROM VPAType a
    LEFT JOIN (SELECT DISTINCT VPATypeID AS Total,VPATypeID FROM VPADefault b WHERE b.VPSystemID = 3) b ON (a.VPATypeID=b.VPATypeID)
    LEFT JOIN (SELECT DISTINCT VPATypeID AS Total,VPATypeID FROM VPALinearDetail b WHERE b.VPSystemID = 3 AND b.Active > 0) c ON (a.VPATypeID=c.VPATypeID)
    WHERE a.VPATypeID NOT IN(1,2,3)
    UNION
    SELECT a.VPATypeID AS ID, a.Description FROM VPAType a WHERE VPATypeID IN(1,2,3)
    Here is a snippet of the trace file:
    *** SESSION ID:(25.38093) 2004-08-24 08:42:59.144
    *** 2004-08-24 08:42:59.144
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [qcplgnt : no null terminator], [], [], [], [], [], [], []
    Current SQL statement for this session:
    SELECT a.VPATypeID AS ID, CASE WHEN NVL(c.Total,:"SYS_B_00") > :"SYS_B_01" OR NVL(b.Total,:"SYS_B_02") > :"SYS_B_03" THEN a.Description ELSE CAST(a.Description || :"SYS_B_04" AS NVARCHAR2(:"SYS_B_05")) END AS Description FROM VPAType a LEFT JOIN (SELECT DISTINCT VPATypeID AS Total,VPATypeID FROM VPADefault b WHERE b.VPSystemID = :"SYS_B_06") b ON (a.VPATypeID=b.VPATypeID) LEFT JOIN (SELECT DISTINCT VPATypeID AS Total,VPATypeID FROM VPALinearDetail b WHERE b.VPSystemID = :"SYS_B_07" AND b.Active > :"SYS_B_08") c ON (a.VPATypeID=c.VPATypeID) WHERE a.VPATypeID NOT IN(:"SYS_B_09",:"SYS_B_10",:"SYS_B_11") UNION SELECT a.VPATypeID AS ID, a.Description FROM VPAType a WHERE VPATypeID IN(:"SYS_B_12",:"SYS_B_13",:"SYS_B_14")
    Can anyone help me out here and tell what might be causing the error?
    Note: No error is generated on the client machine and the requested recordset is returned will all the proper results.
    TIA,
    Doug.

    For further analysis see this description on metalink:
    ORA-600 [17281] "Error closing all cursors for an instantiation"
    Doc ID: Note:39361.1
    Werner

  • JDBC Connection Error ORA-12514

    Hi all,
    I am trying to connect to an Oracle database on my workstation. I am
    running Red Hat WS 4.x.
    The odbc string I am using is this:
    jdbc:oracle:thin:@//localhost:1521/danoracle
    I am getting the following error:
    Error getting JDBC connection using driver
    'oracle.jdbc.driver.OracleDriver' to database at
    'jdbc:oracle:thin:@//ddschwitrh4.er.xxxx.gov:1521/danoracle' for user
    'satin': java.sql.SQLException: Listener refused the connection with the
    following error:
    ORA-12514, TNS:listener does not currently know of service requested in
    connect descriptor

    It looks like the spam filter does not like the copyright line of the output in both commands.
    [oracle@ddschwitrh4 ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 28-FEB-2011 11:21:31
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date 03-FEB-2011 11:00:55
    Uptime 25 days 0 hr. 20 min. 35 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File /home/oracle/app/oracle/diag/tnslsnr/ddschwitrh4/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ddschwitrh4.er.xxxx.gov)(PORT=1521)))
    Services Summary...
    Service "danoraclXDB.er.xxxx.gov" has 1 instance(s).
    Instance "danoracl", status READY, has 1 handler(s) for this service...
    Service "danoracle.er.xxxx.gov" has 1 instance(s).
    Instance "danoracl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    [oracle@ddschwitrh4 ~]$ lsnrctl services
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 28-FEB-2011 11:22:32
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "danoraclXDB.er.xxxx.gov" has 1 instance(s).
    Instance "danoracl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: ddschwitrh4.er.xxxx.gov, pid: 20456>
    (ADDRESS=(PROTOCOL=tcp)(HOST=ddschwitrh4.er.xxxx.gov)(PORT=11097))
    Service "danoracle.er.xxxx.gov" has 1 instance(s).
    Instance "danoracl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:31020 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully

  • Need help with SQL Query with Inline View + Group by

    Hello Gurus,
    I would really appreciate your time and effort regarding this query. I have the following data set.
    Reference_No---Check_Number---Check_Date--------Description-------------------------------Invoice_Number----------Invoice_Type---Paid_Amount-----Vendor_Number
    1234567----------11223-------------- 7/5/2008----------paid for cleaning----------------------44345563------------------I-----------------*20.00*-------------19
    1234567----------11223--------------7/5/2008-----------Adjustment for bad quality---------44345563------------------A-----------------10.00------------19
    7654321----------11223--------------7/5/2008-----------Adjustment from last billing cycle-----23543556-------------------A--------------------50.00--------------19
    4653456----------11223--------------7/5/2008-----------paid for cleaning------------------------35654765--------------------I---------------------30.00-------------19
    Please Ignore '----', added it for clarity
    I am trying to write a query to aggregate paid_amount based on Reference_No, Check_Number, Payment_Date, Invoice_Number, Invoice_Type, Vendor_Number and display description with Invoice_type 'I' when there are multiple records with the same Reference_No, Check_Number, Payment_Date, Invoice_Number, Invoice_Type, Vendor_Number. When there are no multiple records I want to display the respective Description.
    The query should return the following data set
    Reference_No---Check_Number---Check_Date--------Description-------------------------------Invoice_Number----------Invoice_Type---Paid_Amount-----Vendor_Number
    1234567----------11223-------------- 7/5/2008----------paid for cleaning----------------------44345563------------------I-----------------*10.00*------------19
    7654321----------11223--------------7/5/2008-----------Adjustment from last billing cycle-----23543556-------------------A--------------------50.00--------------19
    4653456----------11223--------------7/5/2008-----------paid for cleaning------------------------35654765-------------------I---------------------30.00--------------19
    The following is my query. I am kind of lost.
    select B.Description, A.sequence_id,A.check_date, A.check_number, A.invoice_number, A.amount, A.vendor_number
    from (
    select sequence_id,check_date, check_number, invoice_number, sum(paid_amount) amount, vendor_number
    from INVOICE
    group by sequence_id,check_date, check_number, invoice_number, vendor_number
    ) A, INVOICE B
    where A.sequence_id = B.sequence_id
    Thanks,
    Nick

    It looks like it is a duplicate thread - correct me if i'm wrong in this case ->
    Need help with SQL Query with Inline View + Group by
    Regards.
    Satyaki De.

  • Database error :ORA-00600: internal error code, arguments:

    hello,
    I have a problem with error:ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [k2srec: should be another instan
    I recently make any change .this error  alwayls occured in some time.
    part tracer file:
    /home/oracle/admin/oradb/udump/oradb1_ora_1032272.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    ORACLE_HOME = /home/oracle/db10g
    System name:     AIX
    Node name:     dbserver1
    Release:     3
    Version:     5
    Machine:     00CDBFBC4C00
    Instance name: oradb1
    Redo thread mounted by this instance: 1
    Oracle process number: 56
    Unix process pid: 1032272, image: oracleoradb1@dbserver1
    *** SERVICE NAME:(oradb) 2010-04-30 07:36:04.290
    *** SESSION ID:(800.16685) 2010-04-30 07:36:04.290
    *** 2010-04-30 07:36:04.289
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [k2srec: should be another instan], [1], [], [], [], [], [], []
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedst+001c bl ksedst1 FFFFFFFFFFF9600 ? 000000000 ?
    ksedmp+0290 bl ksedst 1047C9C30 ?
    ksfdmp+0018 bl 03F535A4
    kgerinv+00dc bl _ptrgl              
    kgeasnmierr+0040 bl kgerinv 042420820 ? 000000000 ?
    FFFFFFFFFFF9A50 ? 000000000 ?
    70000004FBA68F0 ?
    k2srec+0360 bl 01FC219C
    kpotxrec+0058 bl k2srec FFFFFFFFFFFA150 ? 0105769C8 ?
    FFFFFFFFFFFA090 ?
    FFFFFFFFFFFBA18 ? 0FFFFA130 ?
    kpotxen+0914 bl kpotxrec 1048F2A8C ? 11015A658 ?
    700000010008000 ?
    opiodr+0adc bl _ptrgl              
    ttcpip+1004 bl _ptrgl              
    opitsk+1000 bl ttcpip 11015E550 ? 000000000 ?
    000000001 ? 000000000 ?
    001004000 ? 000000030 ?
    000000000 ? 000000030 ?
    opiino+0990 bl opitsk 000000000 ? 000000000 ?
    opiodr+0adc bl _ptrgl              
    opidrv+0474 bl opiodr 3C103BA990 ? 4103BC2B0 ?
    FFFFFFFFFFFF410 ? 0103BC6D8 ?
    sou2o+0090 bl opidrv 3C023373FC ? 400000020 ?
    FFFFFFFFFFFF410 ?
    opimai_real+01bc bl 01FC0DF4
    main+0098 bl opimai_real 000000000 ? 000000000 ?
    __start+0090 bl main 000000000 ? 000000000 ?
    --------------------- Binary Stack Dump ---------------------
    ========== FRAME [1] (ksedst+001c -> ksedst1) ==========
    Dump of memory from 0x0FFFFFFFFFFF92D0 to 0x0FFFFFFFFFFF9340
    FFFFFFFFFFF92D0 0FFFFFFF FFFF9340 42A42220 048F2A98 [.......@B." ..*.]
    FFFFFFFFFFF92E0 00000001 000D6520 00000000 00000000 [......e ........]
    FFFFFFFFFFF92F0 00000000 00000000 00000000 00000001 [................]
    FFFFFFFFFFF9300 0FFFFFFF FFFF9600 00000000 00000000 [................]
    FFFFFFFFFFF9310 00000000 10001048 00000000 00000001 [.......H........]
    FFFFFFFFFFF9320 00000000 00000000 00000000 00000003 [................]
    FFFFFFFFFFF9330 00000000 00000000 0FFFFFFF FFFF9340 [...............@]
    ========== FRAME [2] (ksedmp+0290 -> ksedst) ==========
    Dump of memory from 0x0FFFFFFFFFFF9340 to 0x0FFFFFFFFFFF9740
    FFFFFFFFFFF9340 0FFFFFFF FFFF9760 28A42844 FFFFA150 [.......`(.(D...P]
    FFFFFFFFFFF9350 00000001 000D6D54 00000000 41144844 [......mT....A.HD]
    FFFFFFFFFFF9360 00000000 41144844 0FFFFFFF FFFF8CFE [....A.HD........]
    FFFFFFFFFFF9370 00000001 047C9C30 00000000 00000000 [.....|.0........]
    FFFFFFFFFFF9380 00000001 10395030 80000000 0000F0B2 [.....9P0........]
    FFFFFFFFFFF9390 00000000 00000000 00000000 0000314A [..............1J]
    FFFFFFFFFFF93A0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF93B0 00000000 00000001 00000000 00000001 [................]
    FFFFFFFFFFF93C0 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF93E0 0FFFFFFF FFFF9430 00FFFFFF FFFF9458 [.......0.......X]
    FFFFFFFFFFF93F0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9400 00000000 00000001 00000000 048F2A98 [..............*.]
    FFFFFFFFFFF9410 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF9430 00000000 42420820 0FFFFFFF FFFF95E8 [....BB. ........]
    FFFFFFFFFFF9440 00000001 04CCB9B8 00000000 00000000 [................]
    FFFFFFFFFFF9450 00000000 00000000 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9460 00000000 000007DB 00000001 047BE308 [.............{..]
    FFFFFFFFFFF9470 00000000 00000000 00000000 256C6C75 [............%llu]
    FFFFFFFFFFF9480 00000000 00000000 00000000 00000002 [................]
    FFFFFFFFFFF9490 00000000 00000004 0FFFFFFF FFFF9950 [...............P]
    FFFFFFFFFFF94A0 00000000 00000001 00000001 102B14B1 [.............+..]
    FFFFFFFFFFF94B0 00000000 000007DB 00000000 00000000 [................]
    FFFFFFFFFFF94C0 00000001 102B0D88 00000000 00000001 [.....+..........]
    FFFFFFFFFFF94D0 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF94F0 0FFFFFFF FFFF95C0 28442048 4F16C444 [........(D HO..D]
    FFFFFFFFFFF9500 09000000 0003565C 00000000 00000000 [......V\........]
    FFFFFFFFFFF9510 00000000 00000004 07000000 4F16C3B8 [............O...]
    FFFFFFFFFFF9520 00000002 00000002 00000000 000010E4 [................]
    FFFFFFFFFFF9530 00000000 40002D91 00000000 0000002A [[email protected]........*]
    FFFFFFFFFFF9540 00000000 00000030 0000000A 0000000D [.......0........]
    FFFFFFFFFFF9550 00000012 0000001A 00000020 00000021 [........... ...!]
    FFFFFFFFFFF9560 0FFFFFFF FFFF963D 0FFFFFFF FFFF963C [.......=.......<]
    FFFFFFFFFFF9570 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9580 00000000 00000000 7FFFFFFE 00000002 [................]
    FFFFFFFFFFF9590 00000000 01020D78 00000001 102B0D78 [.......x.....+.x]
    FFFFFFFFFFF95A0 00000000 00000004 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF95B0 00000000 00000000 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF95C0 0FFFFFFF FFFF96F0 44A44B42 00000028 [........D.KB...(]
    FFFFFFFFFFF95D0 00000001 0001ED24 00000000 00000000 [.......$........]
    FFFFFFFFFFF95E0 0FFFFFFF FFFF97C0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF95F0 0FFFFFFF FFFF963C 0FFFFFFF FFFF9634 [.......<.......4]
    FFFFFFFFFFF9600 00000000 00000001 0FFFFFFF FFFF9650 [...............P]
    FFFFFFFFFFF9610 00000000 73686F75 00000000 6C642062 [....shou....ld b]
    FFFFFFFFFFF9620 00000000 6520616E 00000000 6F746865 [....e an....othe]
    FFFFFFFFFFF9630 00000001 256C6C75 00000000 31000000 [....%llu....1...]
    FFFFFFFFFFF9640 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9650 00FFFFFF FFFFBA20 00000000 00000001 [....... ........]
    FFFFFFFFFFF9660 00000001 048F2A98 00000001 048F2A8C [......*.......*.]
    FFFFFFFFFFF9670 00000000 00000080 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9680 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9690 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF96A0 00000000 42420820 00000000 00000000 [....BB. ........]
    FFFFFFFFFFF96B0 00000001 102B0D88 00000000 00000000 [.....+..........]
    FFFFFFFFFFF96C0 00000001 102B0D88 00000000 00000258 [.....+.........X]
    FFFFFFFFFFF96D0 0FFFFFFF FFFF9940 00000001 10576750 [[email protected]]
    FFFFFFFFFFF96E0 00000000 00000001 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF96F0 0FFFFFFF FFFF97D0 48A42088 00000000 [........H. .....]
    FFFFFFFFFFF9700 00000001 0001F01C 00000000 00000000 [................]
    FFFFFFFFFFF9710 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9720 0FFFFFFF FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF9730 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    ========== FRAME [3] (ksfdmp+0018 -> 03F535A4) ==========
    Dump of memory from 0x0FFFFFFFFFFF9760 to 0x0FFFFFFFFFFF97D0
    FFFFFFFFFFF9760 0FFFFFFF FFFF97D0 88A42844 00000001 [..........(D....]
    FFFFFFFFFFF9770 00000001 0478EADC 00000000 00000000 [.....x..........]
    FFFFFFFFFFF9780 00000000 00000000 00000001 04CCBB08 [................]
    FFFFFFFFFFF9790 00000003 FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF97A0 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    FFFFFFFFFFF97B0 00000000 00000000 00000001 102B35E0 [.............+5.]
    FFFFFFFFFFF97C0 00000001 10576750 00000001 102B0BF8 [.....WgP.....+..]
    ========== FRAME [4] (kgerinv+00dc -> _ptrgl) ==========
    Dump of memory from 0x0FFFFFFFFFFF97D0 to 0x0FFFFFFFFFFF9870
    FFFFFFFFFFF97D0 0FFFFFFF FFFF9870 00000001 048F2A98 [.......p......*.]
    FFFFFFFFFFF97E0 00000001 00022080 00000001 102E5600 [...... .......V.]
    FFFFFFFFFFF97F0 00000000 42420820 00000001 10366698 [....BB. .....6f.]
    FFFFFFFFFFF9800 00000001 102B0D78 00000000 00000000 [.....+.x........]
    FFFFFFFFFFF9810 07000000 4FBA68F0 00000001 10001048 [....O.h........H]
    FFFFFFFFFFF9820 00000000 00000000 00000001 102B0BF8 [.............+..]
    FFFFFFFFFFF9830 0FFFFFFF FFFF98E0 0FFFFFFF FFFF98E0 [................]
    FFFFFFFFFFF9840 0FFFFFFF FFFF98E0 22A44B41 7FFFFFFF [........".KA....]
    FFFFFFFFFFF9850 00000001 037BF9D4 07000000 10018148 [.....{.........H]
    FFFFFFFFFFF9860 00000001 102B0BF8 00000001 10576750 [.....+.......WgP]
    ========== FRAME [5] (kgeasnmierr+0040 -> kgerinv) ==========
    Dump of memory from 0x0FFFFFFFFFFF9870 to 0x0FFFFFFFFFFF98F0
    FFFFFFFFFFF9870 0FFFFFFF FFFF98F0 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9880 00000001 000250A4 00000001 048F2A98 [......P.......*.]
    FFFFFFFFFFF9890 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF98A0 00000000 42420820 00000000 00000000 [....BB. ........]
    FFFFFFFFFFF98B0 0FFFFFFF FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF98C0 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    FFFFFFFFFFF98D0 00000000 00000000 07000000 10018148 [...............H]
    FFFFFFFFFFF98E0 00000001 102B0D78 0FFFFFFF FFFF98F0 [.....+.x........]
    ========== FRAME [6] (k2srec+0360 -> 01FC219C) ==========
    Dump of memory from 0x0FFFFFFFFFFF98F0 to 0x0FFFFFFFFFFF9CF0
    FFFFFFFFFFF98F0 0FFFFFFF FFFFA020 24A42B81 FFFF97F0 [....... $.+.....]
    FFFFFFFFFFF9900 00000001 037BFEC4 00000000 00000000 [.....{..........]
    FFFFFFFFFFF9910 07000000 4EF3E6E0 00000000 000060B4 [....N.........`.]
    FFFFFFFFFFF9920 0FFFFFFF FFFFA150 0FFFFFFF FFFF9974 [.......P.......t]
    FFFFFFFFFFF9930 00000000 00000000 00000001 00000001 [................]
    FFFFFFFFFFF9940 00000000 00000000 00000000 00000001 [................]
    FFFFFFFFFFF9950 00000012 0000001A 00000020 00000021 [........... ...!]
    FFFFFFFFFFF9960 0FFFFFFF 00000003 00000000 00000000 [................]
    FFFFFFFFFFF9970 00000000 00000001 00000001 00000000 [................]
    FFFFFFFFFFF9980 00000001 102B0D78 00000000 00000024 [.....+.x.......$]
    FFFFFFFFFFF9990 00000000 00000000 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF99A0 00000000 00000100 00000000 00000000 [................]
    FFFFFFFFFFF99B0 00000000 00000000 00000000 00000002 [................]
    FFFFFFFFFFF99C0 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF99D0 00000001 102B0D78 00000000 00000000 [.....+.x........]
    FFFFFFFFFFF99E0 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF99F0 00000001 102B0BF8 0FFFFFFF FFFF9A00 [.....+..........]
    FFFFFFFFFFF9A00 0FFFFFFF FFFF9DD0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF9A10 00000001 007835C4 00000000 00000000 [.....x5.........]
    FFFFFFFFFFF9A20 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9A30 0FFFFFFF FFFF9BE0 46228082 00000000 [........F"......]
    FFFFFFFFFFF9A40 0FFFFFFF FFFFA7E0 00000001 10576750 [.............WgP]
    FFFFFFFFFFF9A50 0FFFFFFF FFFFA7E0 00000000 3F6CBD40 [............?l.@]
    FFFFFFFFFFF9A60 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9A70 00000000 0000006E 00000001 105967B0 [.......n.....Yg.]
    FFFFFFFFFFF9A80 00000001 037BFBFC 0FFFFFFF FFFF98F0 [.....{..........]
    FFFFFFFFFFF9A90 00000001 10366698 00000001 10394EF0 [.....6f......9N.]
    FFFFFFFFFFF9AA0 00000000 00000000 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9AB0 00000000 00000080 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9AC0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9AD0 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF9AE0 00000000 42420820 00000001 0488B9D8 [....BB. ........]
    FFFFFFFFFFF9AF0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9B00 07000000 4FBA68F0 00000000 00000000 [....O.h.........]
    FFFFFFFFFFF9B10 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF9B20 07000000 10018148 0FFFFFFF FFFF98F0 [.......H........]
    FFFFFFFFFFF9B30 00000000 00000000 00000000 00000000 [................]
    Repeat 8 times
    FFFFFFFFFFF9BC0 0FFFFFFF FFFFA020 24A44B81 00000000 [....... $.K.....]
    FFFFFFFFFFF9BD0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9BE0 0FFFFFFF FFFF9D60 00000000 00000000 [.......`........]
    FFFFFFFFFFF9BF0 0FFFFFFF FFFF9E80 00000000 00000000 [................]
    FFFFFFFFFFF9C00 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    FFFFFFFFFFF9C30 00000000 00000000 0FFFFFFF FFFF9DD0 [................]
    FFFFFFFFFFF9C40 00000001 10576FB0 00000000 00000000 [.....Wo.........]
    FFFFFFFFFFF9C50 00000001 10576FB0 00000000 00000200 [.....Wo.........]
    FFFFFFFFFFF9C60 0FFFFFFF FFFF9E50 00000001 10576A00 [.......P.....Wj.]
    FFFFFFFFFFF9C70 0FFFFFFF FFFF9DE0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF9C80 00000001 000A0EDC 00000001 0481E07C [...............|]
    FFFFFFFFFFF9C90 0FFFFFFF FFFF9E70 00000001 10366698 [.......p.....6f.]
    FFFFFFFFFFF9CA0 00000001 0481E358 00000001 0481E3B8 [.......X........]
    FFFFFFFFFFF9CB0 0FFFFFFF FFFF9DD0 00000000 00000000 [................]
    FFFFFFFFFFF9CC0 00000001 00ACA4C1 2C12AE92 00000000 [........,.......]
    FFFFFFFFFFF9CD0 0FFFFFFF FFFF9DD0 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9CE0 00000001 01D292D8 0FFFFFFF FFFFBA20 [............... ]
    ========== FRAME [7] (kpotxrec+0058 -> k2srec) ==========
    Dump of memory from 0x0FFFFFFFFFFFA020 to 0x0FFFFFFFFFFFA0C0
    FFFFFFFFFFFA020 0FFFFFFF FFFFA0C0 24A44B81 00000000 [........$.K.....]
    FFFFFFFFFFFA030 00000001 0389181C 2CBA66E5 47F30960 [........,.f.G..`]
    FFFFFFFFFFFA040 0FFFFFFF FFFFA150 07000000 4FBF7680 [.......P....O.v.]
    FFFFFFFFFFFA050 0FFFFFFF FFFFA150 00000000 105769C8 [.......P.....Wi.]
    FFFFFFFFFFFA060 0FFFFFFF FFFFA090 0FFFFFFF FFFFBA18 [................]
    FFFFFFFFFFFA070 00000000 FFFFA130 48408288 00000000 [.......0H@......]
    FFFFFFFFFFFA080 00000001 000BA50C 00000001 1016D102 [................]
    FFFFFFFFFFFA090 00000000 0000D0B0 00000000 00000354 [...............T]
    FFFFFFFFFFFA0A0 0FFFFFFF FFFFA150 0FFFFFFF FFFFBA18 [.......P........]
    FFFFFFFFFFFA0B0 0FFFFFFF FFFFA150 0FFFFFFF FFFFBCD0 [.......P........]
    ========== FRAME [8] (kpotxen+0914 -> kpotxrec) ==========
    Dump of memory from 0x0FFFFFFFFFFFA0C0 to 0x0FFFFFFFFFFFA250
    FFFFFFFFFFFA0C0 0FFFFFFF FFFFA250 00000000 44242082 [.......P....D$ .]
    FFFFFFFFFFFA0D0 00000001 03894418 0FFFFFFF FFFFBA20 [......D........ ]
    FFFFFFFFFFFA0E0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFFA0F0 00000001 048F2A8C 00000001 1015A658 [......*........X]
    FFFFFFFFFFFA100 07000000 10008000 07000000 4FBA68F0 [............O.h.]
    FFFFFFFFFFFA110 07000000 4EF0A9E8 00000001 10001048 [....N..........H]
    FFFFFFFFFFFA120 00000001 101EBFE8 07000000 3F6CBD20 [............?l. ]
    FFFFFFFFFFFA130 00000000 00000004 00000000 00000001 [................]
    FFFFFFFFFFFA140 00000000 00000206 07000000 100280C0 [................]
    FFFFFFFFFFFA150 44444444 00000014 00000025 0000000A [DDDD.......%....]
    FFFFFFFFFFFA160 0FFFFFFF FFFFA188 0FFFFFFF FFFFA19C [................]
    FFFFFFFFFFFA170 00000000 44444444 00000000 00000014 [....DDDD........]
    FFFFFFFFFFFA180 00000000 00000025 20A86E20 9BB6824A [.......% .n ...J]
    FFFFFFFFFFFA190 9B0470B3 E925DF3F 00000000 09DB0B01 [..p..%.?........]
    FFFFFFFFFFFA1A0 36444A48 88BF241A 81140E12 01000000 [6DJH..$.........]
    FFFFFFFFFFFA1B0 43544401 0007EE65 72707365 72766572 [CTD....erpserver]
    FFFFFFFFFFFA1C0 32FFFFFF FFFFA250 22242081 00000000 [2......P"$ .....]
    FFFFFFFFFFFA1D0 0FFFFFFF FFFFA250 00000000 00000000 [.......P........]
    FFFFFFFFFFFA1E0 00000001 10589828 00000001 105899F0 [.....X.(.....X..]
    FFFFFFFFFFFA1F0 0FFFFFFF FFFFBCD0 00000001 102E5600 [..............V.]
    FFFFFFFFFFFA200 00000000 42420820 00000001 0488B9D8 [....BB. ........]
    FFFFFFFFFFFA210 00000000 00000068 00000000 00000000 [.......h........]
    FFFFFFFFFFFA220 00000001 10043910 00000001 1015E6A8 [......9.........]
    FFFFFFFFFFFA230 0FFFFFFF FFFFA7E0 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFFA240 00000001 10001048 0FFFFFFF FFFFA250 [.......H.......P]
    ========== FRAME [9] (opiodr+0adc -> _ptrgl) ==========
    Dump of memory from 0x0FFFFFFFFFFFA250 to 0x0FFFFFFFFFFFA650
    FFFFFFFFFFFA250 0FFFFFFF FFFFB5F0 26A42B81 FFFFAA00 [........&.+.....]
    I appreciate any idea.
    regards.

    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    Dumping last 2 granules of Transferred Memory
    Granule Header dump for 7000000353fe000, hdrsz=64, gran size=4194304
    Dump of memory from 0x07000000353FE000 to 0x07000000353FE040
    7000000353FE000 07000000 353C0000 07000000 353C0000 [....5<......5<..]
    7000000353FE010 00002000 00000000 00000000 000001E9 [.. .............]
    7000000353FE020 000001F8 0000003E 00002000 00000000 [.......>.. .....]
    7000000353FE030 00000000 00000001 00000093 00000000 [................]
    Granule Dump for 700000035000000, size=32768
    Dump of memory from 0x0700000035000000 to 0x0700000035008000
    700000035000000 07000000 35000000 07000000 35C00000 [....5.......5...]
    700000035000010 00000000 00000000 07000000 100358F0 [..............X.]
    700000035000020 07000000 35000020 07000000 35000020 [....5.. ....5.. ]
    700000035000030 07000000 353BFFF0 07000000 353BFFF0 [....5;......5;..]
    700000035000040 00000000 00000000 FFFBFFE0 4BDA17E3 [............K...]
    700000035000050 01000000 01020200 C0B38F00 003BFF89 [.............;..]
    700000035000060 00000000 00000000 07000000 10037138 [..............q8]
    700000035000070 07000000 10037138 00000000 00000000 [......q8........]
    700000035000080 00000000 00000000 00000000 00000000 [................]
    Repeat 501 times
    700000035001FE0 C0B38F00 003BE001 07000000 35000058 [.....;......5..X]
    700000035001FF0 07000000 35000030 07000000 35000030 [....5..0....5..0]
    700000035002000 00000000 00000000 00000000 00000000 [................]
    Repeat 1535 times
    Done Dumping transfer, resize ops and granules.
    Dump of memory from 0x070000004DB38090 to 0x070000004DB38208
    70000004DB38090 07000000 4DBEE560 07000000 4DBEE5B0 [....M..`....M...]
    70000004DB380A0 00000006 000000B4 00050000 000001B2 [................]
    70000004DB380B0 00000000 00000000 0C000100 00000045 [...............E]
    70000004DB380C0 00000000 00000000 00000220 00760000 [........... .v..]
    70000004DB380D0 00000001 0000045A 00000000 00000000 [.......Z........]
    70000004DB380E0 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    70000004DB38110 00000000 00000000 07000000 4DB38118 [............M...]
    70000004DB38120 07000000 4DB38118 07000000 4DB37FB0 [....M.......M...]
    70000004DB38130 07000000 4DB382A0 00000000 00000000 [....M...........]
    70000004DB38140 00000000 00000000 00000003 00000000 [................]
    70000004DB38150 00000000 00000000 00000000 00000000 [................]
    70000004DB38160 00010000 00000006 00000006 00000007 [................]
    70000004DB38170 00000007 00000006 00000B40 00000000 [...........@....]
    70000004DB38180 44454641 554C5400 00000000 00000000 [DEFAULT.........]
    70000004DB38190 00000000 00070000 00000003 00002000 [.............. .]
    70000004DB381A0 00000002 00050006 07000000 4DB6B230 [............M..0]
    70000004DB381B0 00000001 00000000 00000000 00000000 [................]
    70000004DB381C0 00000035 FE233D2F 00000000 0057E5DC [...5.#=/.....W..]
    70000004DB381D0 00000000 003A6260 00000000 0003617A [.....:b`......az]
    70000004DB381E0 00000000 00000000 00000000 00000235 [...............5]
    70000004DB381F0 00000000 00001472 00000000 000000DE [.......r........]
    70000004DB38200 00000000 000007D5 [........]
    KCBS: disable_kcbsbpd is 0
    KCBS: bufcnt = 180, nb_kcbsds = 180
    KCBS: fbufcnt = 37
    KCBS: Tot bufs in set segwise
    KCBS: nbseg[0] is 15
    KCBS: nbseg[1] is 15
    KCBS: nbseg[2] is 15
    KCBS: nbseg[3] is 15
    KCBS: nbseg[4] is 15
    KCBS: nbseg[5] is 15
    KCBS: nbseg[6] is 15
    KCBS: nbseg[7] is 15
    KCBS: nbseg[8] is 15
    KCBS: nbseg[9] is 15
    KCBS: nbseg[10] is 15
    KCBS: nbseg[11] is 15
    KCBS: Act cnt = 90
    KCBS: bufcnt = 180, nb_kcbsds = 180
    KCBS: fbufcnt = 37
    KCBS: Tot bufs in set segwise
    KCBS: nbseg[0] is 15
    KCBS: nbseg[1] is 15
    KCBS: nbseg[2] is 15
    KCBS: nbseg[3] is 15
    KCBS: nbseg[4] is 15
    KCBS: nbseg[5] is 15
    KCBS: nbseg[6] is 15
    KCBS: nbseg[7] is 15
    KCBS: nbseg[8] is 15
    KCBS: nbseg[9] is 15
    KCBS: nbseg[10] is 15
    KCBS: nbseg[11] is 15
    KCBS: Act cnt = 90
    KSOLS: Begin dumping all object level stats elements
    KSOLS: Done dumping all elements. Exiting.
    Dump event group for SESSION
    Dump event group for SYSTEM

Maybe you are looking for

  • Problem with reception

    I traveled abroad this summer right after I bought my computer. Before I left I could get perfect reception on my computer's wireless from anywhere in my house, and I could pick up other wireless at coffeeshops and such. Upon returning I've found I c

  • Map directions won't load unless using current location

    Does anyone else have this problem with the Maps app? If I map a location, then ask for directions to or from my "current location," the routes display immediately. But if I try to use any other location (for example, from my contacts), it displays a

  • Improving TV display

    This isn't really Front Row specific but I don't know where to post it and I assume that people here will have the best answers due to the intended uses of Front Row. I have an iMac hooked up to a 55" Sony HDTV. Front Row looks pretty good on it so t

  • Photoshop Elements 12: Windows Leicense Key on secondary Mac

    I've purchased Photoshop Elements 12 from the officially Adobe Web Page. I could only select Windows or Mac Amazon is selling a Windows/Mac Version for the same Price as Adobe.  Now I want to use Photoshop Elements as permitted in the License Agreeme

  • No printers appear in Printer Setup Utility

    While trying to get my MacBook to communicate with a Dell 1710 laser (connected by USB), I eventually resorted to selecting the "Reset Printer System" command in Printer Setup Utility. This caused all printers to disappear from the Print & Fax contro