Sh int errors

why does the input,output error come in sh int.

hi
do find a brief note on input as well as output errors.
Input Errors :
Includes runts, giants, no buffer, CRC, frame, overrun, and ignored counts. Other input-related errors can also cause the input errors count to be increased, and some datagrams may have more than one error; therefore, this sum may not balance with the sum of enumerated input error counts.
Output Errors :
Sum of all errors that prevented the final transmission of datagrams out of the interface being examined. Note that this may not balance with the sum of the enumerated output errors, as some datagrams may have more than one error and others may have errors that do not fall into any of the specifically tabulated categories.
regds

Similar Messages

  • Conversion failed when converting the varchar value to data type int error

    Hi, I am working on a report which is off of survey information and I am using dynamic pivot on multiple columns.
    I have questions like Did you use this parking tag for more than 250 hours? If yes specify number of hours.
    and the answers could be No, 302, 279, No and so on....
    All these answers are of varchar datatype and all this data comes from a partner application where we consume this data for internal reporting.
    When I am doing dynamic pivot I get the below error.
    Error: Conversion failed when converting the varchar value 'No' to data type int.
    Query
    DECLARE @Cols1 VARCHAR(MAX), @Cols0 VARCHAR(MAX), @Total VARCHAR(MAX), @SQL VARCHAR(MAX)
    SELECT @Cols1 = STUFF((SELECT ', ' + QUOTENAME(Question) FROM Question GROUP BY Question FOR XML PATH('')),1,2,'')
    SELECT @Cols0 = (SELECT ', COALESCE(' + QUOTENAME(Question) + ',0) as ' + QUOTENAME(Question) FROM Question GROUP BY Question FOR XML PATH(''))
    SET @SQL = 'SELECT QID, QNAME' + @Cols0 + '
    FROM (SELECT QID, QNAME, ANSWERS, Question
    FROM Question) T
    PIVOT (MAX(ANSWERS) FOR Question IN ('+@Cols1+')) AS P'
    EXECUTE (@SQL)
    I am using SQL Server 2008 R2.
    Please guide me to resolve this.
    Thanks in advance..........
    Ione

    create table questions (QID int, QNAME varchar(50), ANSWERS varchar(500), Question varchar(50))
    Insert into questions values(1,'a','b','c'), (2,'a2','b2','c2')
    DECLARE @Cols1 VARCHAR(MAX), @Cols0 VARCHAR(MAX), @Total VARCHAR(MAX), @SQL VARCHAR(MAX)
    SELECT @Cols1 = STUFF((SELECT ', ' + QUOTENAME(Question) FROM Questions GROUP BY Question FOR XML PATH('')),1,2,'')
    SELECT @Cols0 = (SELECT ', COALESCE(' + QUOTENAME(Question) + ',''0'') as ' + QUOTENAME(Question) FROM Questions GROUP BY Question FOR XML PATH(''))
    SET @SQL = 'SELECT QID, QNAME' + @Cols0 + '
    FROM (SELECT QID, QNAME, ANSWERS, Question
    FROM Questions) T
    PIVOT (MAX(ANSWERS) FOR Question IN ('+@Cols1+')) AS P'
    EXECUTE (@SQL)
    drop table questions

  • Cannot cast java.io.serialiazable to int Error

    Dear Members,
    I have procedure in AM which is as follows:
    public int countRecs(String headerID)
    int count=0;
    count= integer value assigned from SQL Query*
    return count;
    I am calling this procedure from the CO of the page as follows:
    String headerID="123"
    int     count=0;
    *Serialiazable para[]={headerID};*
    count=(int)am.invokeMethod("countRecs",headerID);
    When I am compiling my CO I am getting the below error:
    Cannot cast java.io.serialiazable to int
    Kindly please help me in resolving this error.
    Many thanks in advance.
    Best Regards,
    Arun Reddy D.

    the signature of the method you are invoking is
    public Serializable invokeMethod(String methodName,
    Serializable[] methodParams)
    so the return type is also serializable. so you should change your method signature accordingly
    public int countRecs(String headerID)
    int count=0;
    count= integer value assigned from SQL Query*
    return count;
    public String countRecs(String headerID)
    //just change last statement
    return ""+count;}
    your CO call should be
    count=(int)am.invokeMethod("countRecs",headerID);count = Integer.parseInt(am.invokeMethod("countRecs",para));
    so finally your count variable will hold an integer
    you may need to keep the above statement in try catch block
    Regards
    Ravi

  • C++2005 does not support default-int (error C4430)

    I've created NI Meas Studio 7 project (NI Dll) in C++2003 and converted one to C++2005.
    I can't compile the C++2005 project (error C4430: C++ does not support default-int). There are nidataproxy.h, nidataproxy.inl
    contain functions with default-int. What can I do to prevent that error?

    Hi Vitaly,
    This error resulted from changes that were made to the Visual C++ 2005 compiler. 
    This MSDN article explains more about Compiler Warning C4430 and what you need to do to fix it:
    http://msdn2.microsoft.com/en-us/library/ms173696.aspx
    Kristen
    National Instruments

  • Int error

    Hi,
    Just having a slight problem with int and null.
    I have these two snippets of code:
         * Gets the lowest price in the price array
         * @param prices1 the array.
         * @return the index number(s) of the low price
        public static int[] getPricesLow(double[] prices1)
            // Make an additional array to store index numbers
            int number1[] = new int[10];
            // Set a starting point
            double lowPrice = prices1[0];
            // Go through array referring to start point
            for (int index1 = 1; index1 < prices1.length; index1++)
                // Do this if array price is less than start point
                if (prices1[index1] < lowPrice)
                    // Get rid of unfilled array positions
                    if (prices1[index1] != 0)
                        // Swap start number with new number
                        number1[index1] = index1;
                        lowPrice = prices1[index1];
            return number1;
         * Get the highest price in the price array
         * @param prices2 the array used
         * @return the index number(s) of the highest price
        public static int[] getPricesHigh(double[] prices2)
            // Make an additional array to store index numbers
            int number2[] = new int[10];
            // Get a starting point
            double highPrice = prices2[0];
            boolean loop2 = false;
            while (!loop2)
                // Go through array referring to start point
                for (int index2 = 1; index2 < prices2.length; index2++)
                    // Do this if array price is more than start number
                    if (prices2[index2] > highPrice)
                        // Swap start number with new number
                        number2[index2] = index2;
                        highPrice = prices2[index2];
            return number2;       
        }And those two methods above are used by this main method section:
                    // Creat arrays to store multiple high and low prices
                    int[] low = new int[10];
                    int[] high = new int[10];
                    // Get locations of highest and lowest prices
                    low = getPricesLow(prices);
                    high = getPricesHigh(prices);
                    for (int q = 0; q < low.length; q++)
                        if (low[q] != null)
                            // Print them out
                            System.out.println("CHEAPEST TICKETS:");
                            System.out.println("Seat" + "\tName" + "\t\tExTax" + "\tIncTax");
                            System.out.println("----" + "\t----" + "\t\t-----" + "\t------");
                            System.out.println(seats[low[q]] + "\t" + names[low[q]] + "\t\t" + formatter.format(prices[low[q]]) + "\t" + formatter.format(taxes[low[q]]));
                    for (int r = 0; r < high.length; r++)
                        if (high[r] != null)
                            // Print them out
                            System.out.println();
                            System.out.println("DEAREST TICKETS:");
                            System.out.println("Seat" + "\tName" + "\t\tExTax" + "\tIncTax");
                            System.out.println("----" + "\t----" + "\t\t-----" + "\t------");
                            System.out.println(seats[high[r]] + "\t" + names[high[r]] + "\t\t" + formatter.format(prices[high[r]]) + "\t" + formatter.format(taxes[high[r]]));
                            System.out.println();
                }What I desperately need to know is why when I try to compile the program these two errors occur:
    Error 1:
    TicketManager.java:334: operator != cannot be applied to int,<nulltype>
                        if (low[q] != null)
                                   ^Error 2:
    TicketManager.java:346: operator != cannot be applied to int,<nulltype>
                        if (high[r] != null)
                                    ^Thanks in advance,
    Platinum

    That's because an int, as opposed to an Integer, is a primitive type, and not an object, and hence cannot be null. If a nullvalue needs to be possible, use the wrappertype Integer instead.

  • Send documents with distribution type INT error

    Getting error in the FM  CVV4_GENERATE_RMA has been determined for the generation and
    error occurred in function module <SO_ATTACHMENT_INSERT_API1>
    while  document distribution with originals as attachment (does not work) .
    Thanks.

    Hi again,
    due to some other similar issues I can also suggest you the following measurments for testing:
    Please try switching back to using SAPHTTP instead by creating the following entry in the SDOKPROF table:                         
    NAME:  USEHTTPPLG
    VALUE: OFF
    Leave all the remaining fields blank. Save your changes. Please also use the program RSHTTP05 to regenerate SAPHTTP and SAPHTTPA, and ensure you have the latest version of these programs as per the note 164203.
    Further notes 1382813, 1163992 and 946660  helped to solve such behavior for other systems.
    Best regards,
    Christoph

  • Cannot process links - int error: bad record index

    Opening a publication I have recently been working on suddenly fails with "Cannot process publication's links - Internal error - bad record index".
    And then Pagemaker dies.   Is there anyway to get this publication back?  Hours of work.
    Only possibly anomaly I see is that the .pmd file was moved from one computer to another before this started happening, but we do this all the time in our shop.  As a matter of fact it was moved on a memory stick, not as an email attachment or some less reliable means.  The version on the stick fails the same way.

    Well that sounds close, but I (1) don't have any graphics on master pages, and (2) never performed a "diagnostic recomposition", and (3) can't do anything anyway since pagemaker crashes immediately after issuing the error message about the links.

  • Incompatible types - found java.lang.String but expected int

    This is an extremely small simple program but i keep getting an "incompatible types - found java.lang.String but expected int" error and dont understand why. Im still pretty new to Java so it might just be something stupid im over looking...
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class Lab
    public static void main(String []args)
    int input = JOptionPane.showInputDialog("Input Decimal ");
    String bin = Integer.toBinaryString(input);
    String hex = Integer.toHexString(input);
    System.out.println("Decimal= " + input + '\n' + "Binary= " + bin + '\n' + "Hexadecimal " + hex);
    }

    You should always post the full, exact error message.
    Your error message probably says that the error occurred on something like line #10, the JOptionPane line. The error is telling you that the compiler found a String value, but an int value was expected.
    If you go to the API docs for JOptionPane, it will tell you what value type is returned for showInputDialog(). The value type is String. But you are trying to assign that value to an int. You can't do that.
    You will need to assign the showInputDialog() value to a String variable. Then use Integer.parseInt(the_string) to convert to an int value.

  • Flash Builder 4.5 Auto-Gen Code For PHP Data Service Produces Errors

    Hello
    I'm currently running a fresh install of MAMP on my Mac and when I start a new flex project, add a php data service that pulls from a mysql database I have. Everything works fine until I try to compile. The error I'm getting is 'uid' being the primary key which is a bigint(20). The file _Super_Users.as (auto-gen based on the user table below) reports 2 errors: [Managed] requires uid to be of type 'String'. (same error on 2 lines of code) Now the MySQL table wants it to be a int, the auto gen code seems to want it to be an int as well but for some reason its putting in these requires for String on the getter and setters for 'uid'. The is before I even add any of my own code, just auto-gen then compile.
         * data/source property getters
    [Bindable(event="propertyChange")]
        public function get uid() : int /*error line*/
            return _internal_uid;
         * data/source property setters
        public function set uid(value:int) : void /*error line*/
            var oldValue:int = _internal_uid;
            if (oldValue !== value)
                _internal_uid = value;
    This is what my database looks when I export it:
    CREATE TABLE `users` (
      `uid` bigint(20) unsigned NOT NULL,
      `name` varchar(150) NOT NULL,
      `first_name` varchar(50) NOT NULL,
      `middle_name` varchar(50) NOT NULL,
      `last_name` varchar(50) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `locale` varchar(5) NOT NULL,
      `link` varchar(255) NOT NULL,
      `username` varchar(50) NOT NULL,
      `email` varchar(255) NOT NULL,
      `picture` varchar(255) NOT NULL,
      `friends` text NOT NULL,
      `created` datetime NOT NULL,
      `updated` datetime NOT NULL,
      PRIMARY KEY (`uid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    It's empty right now...
    Apache 2.0.64
    MySQL 5.5.9
    PHP 5.2.17 & 5.3.5
    APC 3.1.7
    eAccelerator 0.9.6.1
    XCache 1.2.2 & 1.3.1
    phpMyAdmin 3.3.9.2
    Zend Optimizer 3.3.9
    SQLiteManager 1.2.4
    Freetype 2.4.4
    t1lib 5.1.2
    curl 7.21.3
    jpeg 8c
    libpng-1.5.0
    gd 2.0.34
    libxml 2.7.6
    libxslt 1.1.26
    gettext 0.18.1.1
    libidn 1.17
    iconv 1.13
    mcrypt 2.5.8
    YAZ 4.0.1 & PHP/YAZ 1.0.14
    I tried to give as much info as possible, if you need more let me know...

    I discovered my problem was uid seems to be a built in global or something and was filling in that data field with a bunch of letters and number, like the device id. Because of the letters flex was throwing a fit. So if you're using Facebook API in flex be sure to not go with uid for the user id, which is was facebook api calls it.

  • Deadlock error on logical standby

    Hi All,
    I am get an issue where every thing is working fine on Db server but when it is getting replicated to Logical standby i am getting a deadlock error. Please find error logs below
    Fri May 20 21:00:56 2011
    ORA-00060: Deadlock detected. More info in file /u01/logicalstdby_home/product/admin/XXXXX/bdump/xxlog_p004_15175.trc.
    Fri May 20 21:00:56 2011
    8
    Errors in file /u01/logicalstdby_home/product/admin/XXXXX/bdump/xxlog_lsp0_2207.trc:
    ORA-12801: error signaled in parallel query server P004
    ORA-00060: deadlock detected while waiting for resource
    9
    ORA-12801: error signaled in parallel query server P004
    ORA-00060: deadlock detected while waiting for resource
    LOGSTDBY Analyzer process P003 pid=42 OS id=15173 stopped
    Please can anyone help in investigation.
    Thanks and Regrads,
    Amol

    Hi ,
    I have the logs from deadlock file.
    There are two queries in this dump. Does this mean that the two queries in the logs (which are actually same) are runing in parellel. Because this actually ran fine on the primary database.
    DEADLOCK DETECTED ( ORA-00060 )
    [Transaction Deadlock]
    The following deadlock is not an ORACLE error. It is a
    deadlock due to user error in the design of an application
    or from issuing incorrect ad-hoc SQL. The following
    information may aid in determining the deadlock:
    Deadlock graph:
    ---------Blocker(s)-------- ---------Waiter(s)---------
    Resource Name process session holds waits process session holds waits
    TX-01350024-00098ad3 44 804 X 46 797 S
    TX-012f0006-0008ac28 46 797 X 60 874 S
    TX-01340000-000a175c 60 874 X 44 804 S
    session 804: DID 0001-002C-0003E40C     session 797: DID 0001-002E-00002364
    session 797: DID 0001-002E-00002364     session 874: DID 0001-003C-0000019C
    session 874: DID 0001-003C-0000019C     session 804: DID 0001-002C-0003E40C
    Rows waited on:
    Session 797: obj - rowid = 00000000 - D/////AAaAAHqeAAAA
    (dictionary objn - 0, file - 26, block - 2008960, slot - 0)
    Session 874: obj - rowid = 00089976 - AAC5PjAAFAAAmj+AAA
    (dictionary objn - 563574, file - 5, block - 157950, slot - 0)
    Session 804: obj - rowid = 00089976 - AAC5PjAAFAAAmi3AAA
    (dictionary objn - 563574, file - 5, block - 157879, slot - 0)
    Information on the OTHER waiting sessions:
    Session 797:
    pid=46 serial=418 audsid=0 user: 0/SYS
    O/S info: user: oracle, term: UNKNOWN, ospid: 15180, machine: db5p
    program: oracle@db5p (P006)
    Current SQL Statement:
    update /*+ streams restrict_all_ref_cons */ "BEBSS"."SUBSCRIBER_POLICY_BROKER_EVENT" p set "ACTIVITY_TYPE"=decode(:1,'N',"ACTIVITY_TYPE",:2), "ATTRIBUTE_SET"=decode(:3,'N',"ATTRIBUTE_SET",:4), "CREATED_DATE"=decode(:5,'N',"CREATED_DATE",:6), "CUSTOMER_ID"=decode(:7,'N',"CUSTOMER_ID",:8), "FILE_NAME"=decode(:9,'N',"FILE_NAME",:10), "ID"=decode(:11,'N',"ID",:12), "LAST_MODIFIED_DATE"=decode(:13,'N',"LAST_MODIFIED_DATE",:14), "PORT_NUMBER"=decode(:15,'N',"PORT_NUMBER",:16), "PROCESSED_DATE"=decode(:17,'N',"PROCESSED_DATE",:18), "SERVICE_PACKAGE_ID"=decode(:19,'N',"SERVICE_PACKAGE_ID",:20), "STATUS"=decode(:21,'N',"STATUS",:22), "TRANSACTION_TYPE"=decode(:23,'N',"TRANSACTION_TYPE",:24) where (:25='N' or(decode(:26,'N','Y',decode(:27,"ACTIVITY_TYPE",'Y'))='Y' and decode(:28,'N','Y',decode(:29,"ATTRIBUTE_SET",'Y'))='Y' and decode(:30,'N','Y',decode(:31,"CREATED_DATE",'Y'))='Y' and decode(:32,'N','Y',decode(:33,"CUSTOMER_ID",'Y'))='Y' and decode(:34,'N','Y',decode(:35,"FILE_NAME",'Y'))='Y' and 1=1 and decode(:36,'N','Y',decode(:37,"LAST_MODIFIED_DATE",'Y'))='Y' and decode(:38,'N','Y',decode(:39,"PORT_NUMBER",'Y'))='Y' and decode(:40,'N','Y',decode(:41,"PROCESSED_DATE",'Y'))='Y' and decode(:42,'N','Y',decode(:43,"SERVICE_PACKAGE_ID",'Y'))='Y' and decode(:44,'N','Y',decode(:45,"STATUS",'Y'))='Y' and decode(:46,'N','Y',decode(:47,"TRANSACTION_TYPE",'Y'))='Y')) and(:48="ID")
    Session 874:
    pid=60 serial=20958 audsid=0 user: 0/SYS
    O/S info: user: oracle, term: UNKNOWN, ospid: 15182, machine: db5p
    program: oracle@db5p (P007)
    Current SQL Statement:
    update /*+ streams restrict_all_ref_cons */ "BEBSS"."SUBSCRIBER_POLICY_BROKER_EVENT" p set "ACTIVITY_TYPE"=decode(:1,'N',"ACTIVITY_TYPE",:2), "ATTRIBUTE_SET"=decode(:3,'N',"ATTRIBUTE_SET",:4), "CREATED_DATE"=decode(:5,'N',"CREATED_DATE",:6), "CUSTOMER_ID"=decode(:7,'N',"CUSTOMER_ID",:8), "FILE_NAME"=decode(:9,'N',"FILE_NAME",:10), "ID"=decode(:11,'N',"ID",:12), "LAST_MODIFIED_DATE"=decode(:13,'N',"LAST_MODIFIED_DATE",:14), "PORT_NUMBER"=decode(:15,'N',"PORT_NUMBER",:16), "PROCESSED_DATE"=decode(:17,'N',"PROCESSED_DATE",:18), "SERVICE_PACKAGE_ID"=decode(:19,'N',"SERVICE_PACKAGE_ID",:20), "STATUS"=decode(:21,'N',"STATUS",:22), "TRANSACTION_TYPE"=decode(:23,'N',"TRANSACTION_TYPE",:24) where (:25='N' or(decode(:26,'N','Y',decode(:27,"ACTIVITY_TYPE",'Y'))='Y' and decode(:28,'N','Y',decode(:29,"ATTRIBUTE_SET",'Y'))='Y' and decode(:30,'N','Y',decode(:31,"CREATED_DATE",'Y'))='Y' and decode(:32,'N','Y',decode(:33,"CUSTOMER_ID",'Y'))='Y' and decode(:34,'N','Y',decode(:35,"FILE_NAME",'Y'))='Y' and 1=1 and decode(:36,'N','Y',decode(:37,"LAST_MODIFIED_DATE",'Y'))='Y' and decode(:38,'N','Y',decode(:39,"PORT_NUMBER",'Y'))='Y' and decode(:40,'N','Y',decode(:41,"PROCESSED_DATE",'Y'))='Y' and decode(:42,'N','Y',decode(:43,"SERVICE_PACKAGE_ID",'Y'))='Y' and decode(:44,'N','Y',decode(:45,"STATUS",'Y'))='Y' and decode(:46,'N','Y',decode(:47,"TRANSACTION_TYPE",'Y'))='Y')) and(:48="ID")
    End of information on OTHER waiting sessions.
    Current SQL statement for this session:
    update /*+ streams restrict_all_ref_cons */ "BEBSS"."SUBSCRIBER_POLICY_BROKER_EVENT" p set "ACTIVITY_TYPE"=decode(:1,'N',"ACTIVITY_TYPE",:2), "ATTRIBUTE_SET"=decode(:3,'N',"ATTRIBUTE_SET",:4), "CREATED_DATE"=decode(:5,'N',"CREATED_DATE",:6), "CUSTOMER_ID"=decode(:7,'N',"CUSTOMER_ID",:8), "FILE_NAME"=decode(:9,'N',"FILE_NAME",:10), "ID"=decode(:11,'N',"ID",:12), "LAST_MODIFIED_DATE"=decode(:13,'N',"LAST_MODIFIED_DATE",:14), "PORT_NUMBER"=decode(:15,'N',"PORT_NUMBER",:16), "PROCESSED_DATE"=decode(:17,'N',"PROCESSED_DATE",:18), "SERVICE_PACKAGE_ID"=decode(:19,'N',"SERVICE_PACKAGE_ID",:20), "STATUS"=decode(:21,'N',"STATUS",:22), "TRANSACTION_TYPE"=decode(:23,'N',"TRANSACTION_TYPE",:24) where (:25='N' or(decode(:26,'N','Y',decode(:27,"ACTIVITY_TYPE",'Y'))='Y' and decode(:28,'N','Y',decode(:29,"ATTRIBUTE_SET",'Y'))='Y' and decode(:30,'N','Y',decode(:31,"CREATED_DATE",'Y'))='Y' and decode(:32,'N','Y',decode(:33,"CUSTOMER_ID",'Y'))='Y' and decode(:34,'N','Y',decode(:35,"FILE_NAME",'Y'))='Y' and 1=1 and decode(:36,'N','Y',decode(:37,"LAST_MODIFIED_DATE",'Y'))='Y' and decode(:38,'N','Y',decode(:39,"PORT_NUMBER",'Y'))='Y' and decode(:40,'N','Y',decode(:41,"PROCESSED_DATE",'Y'))='Y' and decode(:42,'N','Y',decode(:43,"SERVICE_PACKAGE_ID",'Y'))='Y' and decode(:44,'N','Y',decode(:45,"STATUS",'Y'))='Y' and decode(:46,'N','Y',decode(:47,"TRANSACTION_TYPE",'Y'))='Y')) and(:48="ID")
    ===================================================
    PROCESS STATE
    Process global information:
    process: 0x29c53bcc8, call: 0x29567f358, xact: 0x299db2d90, curses: 0x29c811dd8, usrses: 0x29c811dd8
    SO: 0x29c53bcc8, type: 2, owner: (nil), flag: INIT/-/-/0x00
    (process) Oracle pid=44, calls cur/top: 0x29567f358/0x29567eb18, flag: (0) -
    int error: 0, call error: 0, sess error: 0, txn error 0
    (post info) last post received: 0 0 117
    last post received-location: kcbzww
    last process to post me: 29c53fc08 42 0
    last post sent: 0 0 117
    last post sent-location: kcbzww
    last process posted by me: 29c53c4b0 188 0
    (latch info) wait_event=0 bits=0
    Process Group: DEFAULT, pseudo proc: 0x29f601e88
    O/S info: user: oracle, term: UNKNOWN, ospid: 15175
    OSD pid info: Unix process pid: 15175, image: oracle@db5p (P004)
    Dump of memory from 0x000000029C500F08 to 0x000000029C501110
    29C500F00 00000002 00000000 [........]
    29C500F10 9C811DD8 00000002 00000004 0003129B [................]
    29C500F20 8F34B7A0 00000002 0000001E 0003115B [..4.........[...]
    29C500F30 9CA03A98 00000002 0000000B 000313A7 [.:..............]
    29C500F40 9EBD0510 00000002 0000003D 0003115B [........=...[...]
    29C500F50 9C803260 00000002 00000004 0003129B [`2..............]
    29C500F60 75E66848 00000001 0000001E 0003115B [Hh.u........[...]
    29C500F70 99507DB0 00000002 00000007 000313A7 [.}P.............]
    29C500F80 99507F70 00000002 00000007 000313A7 [p.P.............]
    29C500F90 995083D0 00000002 00000007 000313A7 [..P.............]
    29C500FA0 99508CA8 00000002 00000007 000313A7 [..P.............]
    29C500FB0 995093C0 00000002 00000007 000313A7 [..P.............]
    29C500FC0 99509AC0 00000002 00000007 000313A7 [..P.............]
    29C500FD0 9950AC58 00000002 00000007 000313A7 [X.P.............]
    29C500FE0 9950B290 00000002 00000007 000313A7 [..P.............]
    29C500FF0 9950D6A0 00000002 00000007 000313A7 [..P.............]
    29C501000 994FDAB0 00000002 00000007 000313A7 [..O.............]
    29C501010 99510640 00000002 00000007 000313A7 [@.Q.............]
    29C501020 99510B80 00000002 00000007 000313A7 [..Q.............]
    29C501030 99510FE0 00000002 00000007 000313A7 [..Q.............]
    29C501040 99511298 00000002 00000007 000313A7 [..Q.............]
    29C501050 99511998 00000002 00000007 000313A7 [..Q.............]
    29C501060 99511A78 00000002 00000007 000313A7 [x.Q.............]
    29C501070 99511B58 00000002 00000007 000313A7 [X.Q.............]
    29C501080 99512350 00000002 00000007 000313A7 [P#Q.............]
    29C501090 99513248 00000002 00000007 000313A7 [H2Q.............]
    29C5010A0 99513408 00000002 00000007 000313A7 [.4Q.............]
    29C5010B0 99513788 00000002 00000007 000313A7 [.7Q.............]
    29C5010C0 9CA04DE8 00000002 0000000B 000313A7 [.M..............]
    29C5010D0 995144C0 00000002 00000007 000313A7 [.DQ.............]
    29C5010E0 99515038 00000002 00000007 000313A7 [8PQ.............]
    29C5010F0 995152D8 00000002 00000007 000313A7 [.RQ.............]
    29C501100 995159F0 00000002 00000007 000313A7 [.YQ.............]
    Thanks,
    Amol

  • Compilation error, When moving from 32-bit to 64-bit code

    Hello,
    I m getting Compilation error, This program already compiled on 32 bit, but getting compilation error on 64 bit.
    CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    make
    Making dependencies...
    cc -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. -xcg92 `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -Dbool=int -g -D -I. -m64 -xarch=sparcvis -H -w -E 2>&1 >/dev/null Bitmap.cc BitmapData.cc BitmapInputTxnStream.cc BitmapOutputStream.cc UnexpectedException.cc FieldData.cc FieldDataCollection.cc FieldDefinition.cc FieldDefinitionCollection.cc OutputFixedStream.cc ParsingEngine.cc Schema.cc Statistics.cc String.cc TraceStream.cc TxnStream.cc c_api.cc SocketImpl.cc Socket.cc ServerSocket.cc UnixSocket.cc Thread.cc test.cc | grep -v License | grep -v command | ../dvl.bin/mkdep >.depends
    Dependencies updated...
    CC -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. -xcg92 `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -Dbool=int -g -D -I. -m64 -xarch=sparcvis -c Bitmap.cc
    "/opt/SUNWspro/prod/include/CC/Cstd/./limits", line 1046: Error: Multiple declaration for std::numeric_limits<int>.
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 192: Error: Multiple declaration for std::ostream::operator<<(int).
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 351: Where: While specializing "std::ostream ".
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 351: Where: Specialized in non-template code.
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 192: Error: Multiple declaration for std::wostream::operator<<(int).
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 354: Where: While specializing "std::wostream ".
    "/opt/SUNWspro/prod/include/CC/Cstd/./ostream", line 354: Where: Specialized in non-template code.
    "/opt/SUNWspro/prod/include/CC/Cstd/./istream", line 104: Error: Multiple declaration for std::istream::operator>>(int&).
    "/opt/SUNWspro/prod/include/CC/Cstd/./istream", line 373: Where: While specializing "std::istream ".
    "/opt/SUNWspro/prod/include/CC/Cstd/./istream", line 373: Where: Specialized in non-template code.
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 316: Error: A typedef name cannot be used in an elaborated type specifier..
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 317: Error: A typedef name cannot be used in an elaborated type specifier..
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 318: Error: A typedef name cannot be used in an elaborated type specifier..
    "RuntimeException.h", line 131: Error: Function RuntimeException::~RuntimeException() can throw only the exceptions thrown by the function std::exception::~exception() it overrides.
    "RuntimeException.h", line 97: Error: Could not find std::exception::exception(const char*) to initialize base class.
    "RuntimeException.h", line 121: Error: xmsg is not a member of std::exception.
    "Bitmap.cc", line 62: Error: Cannot return int(Bitmap::*)()const from a function that should return int.
    11 Error(s) detected.
    make: *** [Bitmap.o] Error 11
    In Makefile CFLAGS setting are as follows,
    ### Setup common symbols for .depends
    SRC = $(TEST_SRC)
    INCLUDES = $(TEST_INC)
    # clean objects, executeable, generated .pc -> .c
    CLEAN = -r *.o $(PGM_EXEC) Templates.DB/* SunWS_cache/*
    include $(ROOT)/h/common.mak
    # The system include directory must be specifically included first because some of the
    # ghost includes use system include file names (e.g., generic.h)
    # Modified these section to compile on TVLAPP1HAG
    CFLAGS += -D $(STDOUT_TRACE)
    CFLAGS += -Dbool=int -g -D$(MAINLINE) $(OUR_COLLECTION)
    #CFLAGS += -compat -Qoption ccfe -abirel=4.1
    #CFLAGS += -Qoption ccfe -abirel=4.1
    CFLAGS += -I. -m64 -xarch=sparcvis
    #CFLAGS += -I. -mt
    # Add the flag for multi-threaded apps
    LDFLAGS += -lsocket -lnsl -lthread
    # declare an empty macro for compiler directive flags, to be command-line
    # driven (ie, for -D directives)
    CCFLAGS=
    CCFLAGS += -DRW_NO_CPP_RECURSION
    # The following manipulation of CC and overriding the .cc.o suffix
    # dependency is removed here to use what is supplied by default int
    # the h/common.mak file.
    #XX = CC
    #CC = CC
    #COMPILE = $(CC) -o $*.o $(CFLAGS) $(CCFLAGS) -c $*.cc
    #.cc.o:
    # $(COMPILE)
    Please Help

    Hello,
    Still I am not able to solve the error. please help me.. Please see the below code...
    Error:
    s3dvap983:/export/home/pshirode/rel_v95/cc_lib > make
    Making dependencies...
    cc -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -g -D -I. -m64 -xarch=sparcvis -H -w -E 2>&1 >/dev/null Bitmap.cc BitmapData.cc BitmapInputTxnStream.cc BitmapOutputStream.cc UnexpectedException.cc FieldData.cc FieldDataCollection.cc FieldDefinition.cc FieldDefinitionCollection.cc OutputFixedStream.cc ParsingEngine.cc Schema.cc Statistics.cc String.cc TraceStream.cc TxnStream.cc c_api.cc SocketImpl.cc Socket.cc ServerSocket.cc UnixSocket.cc Thread.cc test.cc | grep -v License | grep -v command | ../dvl.bin/mkdep >.depends
    Dependencies updated...
    CC -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -g -D -I. -m64 -xarch=sparcvis -c Bitmap.cc
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 316: Error: A typedef name cannot be used in an elaborated type specifier..
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 317: Error: A typedef name cannot be used in an elaborated type specifier..
    "/opt/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 318: Error: A typedef name cannot be used in an elaborated type specifier..
    "RuntimeException.h", line 137: Error: Function RuntimeException::~RuntimeException() can throw only the exceptions thrown by the function std::exception::~exception() it overrides.
    "RuntimeException.h", line 103: Error: Could not find std::exception::exception(const char*) to initialize base class.
    "RuntimeException.h", line 127: Error: xmsg is not a member of std::exception.
    "Bitmap.cc", line 62: Error: Cannot return int(Bitmap::*)()const from a function that should return int.
    7 Error(s) detected.
    make: *** [Bitmap.o] Error 7
    96 class RuntimeException : public xmsg {
    97 public:
    98
    99 /**
    100 * Create an exception with a simple error message
    101 * @param message The error message
    102 */
    103 RuntimeException(const char* msg) : xmsg(msg) {}
    104
    105 /**
    106 * Create an exception with an error code, fileinfo, and message. This will
    107 * produce an error message that looks like:
    108 * in File:%s at line#: %d \n %error_message%
    109 *
    110 * @param error An integer error code. The catch block can use the error()
    111 * method to examine this value
    112 * @param fileinfo The location in a source file where the error occured
    113 * @param msg The error message
    114 * @see RuntimeException.error
    115 */
    116 RuntimeException(int p_error, const Fileinfo& f, const char* msg)
    117 {
    118 error = perror;
    119 strstream buffer;
    120 buffer << "in File:"
    121 << f.filename()
    122 << " at line#:"
    123 << f.lineno() << endl << msg
    124 << ends; // required for this strstream library, other versions
    125 // like Borland the stream is always null terminated
    126
    127 xmsg::xmsg(buffer.str());
    128 delete buffer.str(); // added by db 03-Jul-98 accoprding to the
    129 // ssbuf(3C++) man page - other implementations may
    130 // use malloc/free but Solaris uses new/delete
    131 }
    132
    133 /** @return the error code */
    134 int error() {return _error;}
    135
    136 /** Clean up instance */
    137 virtual ~RuntimeException() {}
    138
    139
    140 protected:
    141
    142 /**
    143 * Default constructor - not very useful to throw an exception without at
    144 * least an error message, so this is reserved for only subclasses.
    145 */
    146 RuntimeException() : xmsg() {}
    147
    148 private:
    149
    150 /** the error code associated with the error */
    151 int _error;
    152 };
    153

  • Regarding error in alert -- immediate kill session

    Dear Gurus
    os - linux4.5
    oracle -10.2.0.4
    i have an error in my alert log file for node 2 as below(i m posting here main text what i found)
    Immediate Kill Session#: 73, Serial#: 39455
    Immediate Kill Session: sess: 0x402337f0ca0 OS pid: 17058
    Immediate Kill Session#: 74, Serial#: 38391
    Immediate Kill Session: sess: 0x402337f2208 OS pid: 25083
    Immediate Kill Session#: 76, Serial#: 6725
    Immediate Kill Session: sess: 0x40233833af0 OS pid: 17018
    Immediate Kill Session#: 128, Serial#: 54171
    Immediate Kill Session: sess: 0x4023383a5f8 OS pid: 25861
    Sun Aug 14 14:25:31 2011
    Process OS id : 25861 alive after kill
    Errors in file /u01/app/oracle/admin/prod/udump/prod_ora_8179.trc
    Immediate Kill Session: sess: 0x40233a3c1f8 OS pid: 28900
    Immediate Kill Session#: 534, Serial#: 12002
    Immediate Kill Session: sess: 0x40233a598e8 OS pid: 16102
    Sun Aug 14 14:35:30 2011
    ALTER SYSTEM SET service_names='prod' SCOPE=MEMORY SID='prod2';
    Sun Aug 14 21:00:50 2011
    Thread 2 advanced to log sequence 3684 (LGWR switch)
    Current log# 3 seq# 3684 mem# 0: +RLOG_GROUP/prod/redo03.log
    Mon Aug 15 18:56:50 2011
    Thread 2 advanced to log sequence 3685 (LGWR switch)
    trace file text is as
    post info) last post received: 109 0 4
    last post received-location: kslpsr
    last process to post me: 40233693738 1 6
    last post sent: 0 0 24
    last post sent-location: ksasnd
    last process posted by me: 40233693738 1 6
    (latch info) wait_event=0 bits=0
    Process Group: DEFAULT, pseudo proc: 0x40233786f80
    O/S info: user: oracle, term: UNKNOWN, ospid: 21196 (DEAD)
    OSD pid info: Unix process pid: 21196, image: oracle@dbrac2
    Short stack dump: unable to dump stack due to error 72
    Dump of memory from 0x00000402336539E0 to 0x0000040233653BE8
    402336539E0 00000010 00000000 1DC35CE0 00000402 [.........\......]
    402336539F0 00000010 000313A7 1DC60660 00000402 [........`.......]
    40233653A00 00000003 000313A7 312D7370 00000402 [........ps-1....]
    40233653AE0 00000007 000313A7 00000000 00000000 [................]
    40233653AF0 00000000 00000000 00000000 00000000 [................]
    Repeat 14 times
    40233653BE0 00000000 00000000
    SO: 0x402336a9318, type: 2, owner: (nil), flag: INIT/-/-/0x00
    (process) Oracle pid=55, calls cur/top: (nil)/0x401fe14f1c8, flag: (0) -
    int error: 0, call error: 0, sess error: 0, txn error 0
    (post info) last post received: 109 0 4
    last post received-location: kslpsr
    last process to post me: 40233693738 1 6
    last post sent: 0 0 24
    last post sent-location: ksasnd
    last process posted by me: 40233693738 1 6
    (latch info) wait_event=0 bits=0
    Process Group: DEFAULT, pseudo proc: 0x40233786f80
    O/S info: user: oracle, term: UNKNOWN, ospid: 21597 (DEAD)
    OSD pid info: Unix process pid: 21597, image: oracle@dbrac2
    Short stack dump: unable to dump stack due to error 72
    Dump of memory from 0x0000040233655858 to 0x0000040233655A60
    40233655850 0000000C 00000000 [........]
    40233655860 1DD637A8 00000402 00000010 000313A7 [.7..............]
    40233655870 FE14F1C8 00000401 00000003 000313A7 [................]
    40233655880 312CC588 00000402 00000013 0003129B [..,1............]
    40233655890 33D61950 00000402 0000000B 000313A7 [P..3............]
    402336558A0 339F1338 00000402 00000004 0003129B [8..3............]
    402336558B0 28A937E8 00000402 00000007 000313A7 [.7.(............]
    402336558C0 6259D858 00000401 00000053 000313A7 [X.Yb....S.......]
    402336558D0 28A938C8 00000402 00000007 000313A7 [.8.(............]
    402336558E0 28A956B8 00000402 00000007 000313A7 [.V.(............]
    402336558F0 28A95798 00000402 00000007 000313A7 [.W.(............]
    40233655900 28A9F000 00000402 00000007 000313A7 [...(............]
    40233655910 28A9E9E0 00000402 00000007 000313A7 [...(............]
    40233655920 00000000 00000000 00000000 00000000 [................]
    Repeat 19 times
    (latch info) wait_event=0 bits=0
    Process Group: DEFAULT, pseudo proc: 0x40233786f80
    O/S info: user: oracle, term: UNKNOWN, ospid: 27060 (DEAD)
    OSD pid info: Unix process pid: 27060, image: oracle@dbrac2
    Short stack dump: unable to dump stack due to error 72
    Dump of memory from 0x0000040233653FF8 to 0x0000040233654200
    40233653FF0 0000000A 00000000 [........]
    40233654000 1DC35E78 00000402 00000010 000313A7 [x^..............]
    40233654010 1DCD4AF0 00000402 00000003 000313A7 [.J..............]
    Repeat 16 times
    please give some hint what actually is it and why
    also at the end in my alert what does it means
    ALTER SYSTEM SET service_names='prod' SCOPE=MEMORY SID='prod2'
    regards

    By any chance if you back in the alert log just a little more does an ORA-00600 error appear before the immediate kill session messages? I found a few problem reports on the Oracle support site that might be of interest if there is:
    ORA-00600 [1301] - Instance Terminated by PMON After Killing Sessions
    ORA-600 [4072] Is Possible After Killing A Session Or Cancelling a Operation [ID 1113829.1]
    Database Crash ORA-00600: [ksqcmi:res3], [], [], [], [], [], [], [] and ORA-00600: [1100], [ID 1327043.1]
    HTH -- Mark D Powell --

  • DEADLOCK Error - Trc File Attached

    Hello -
    I copied the trace file below that was generated from a Deadlock. Please help in diagnosing this error.
    Thanks in advance.
    *** 2005-03-14 22:45:40.489
    *** SESSION ID:(266.24925) 2005-03-14 22:45:40.470
    DEADLOCK DETECTED
    Current SQL statement for this session:
    DELETE FROM CDAPPLICANTS WHERE REFERENCEID = :b1
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    38132ddf0 8 procedure GREENPOINT.DELETECCNACCOUNT
    3841b0610 1 anonymous block
    The following deadlock is not an ORACLE error. It is a
    deadlock due to user error in the design of an application
    or from issuing incorrect ad-hoc SQL. The following
    information may aid in determining the deadlock:
    Deadlock graph:
    ---------Blocker(s)-------- ---------Waiter(s)---------
    Resource Name process session holds waits process session holds waits
    TM-000028ed-00000000 113 266 SX SSX 137 181 SX SSX
    TM-000028ed-00000000 137 181 SX SSX 113 266 SX SSX
    session 266: DID 0001-0071-00000002     session 181: DID 0001-0089-00000002
    session 181: DID 0001-0089-00000002     session 266: DID 0001-0071-00000002
    Rows waited on:
    Session 181: no row
    Session 266: no row
    ===================================================
    PROCESS STATE
    Process global information:
    process: 38021ed10, call: 380b01038, xact: 380826b50, curses: 380327500, usrses: 380327500
    SO: 38021ed10, type: 1, owner: 0, pt: 0, flag: INIT/-/-/0x00
    (process) Oracle pid=113, calls cur/top: 380b01038/383296480, flag: (0) -
    int error: 0, call error: 0, sess error: 0, txn error 0
    (post info) last post received: 0 0 18
    last post received-location: ksqrcl
    last process to post me: 380225190 88 0
    last post sent: 15032469744 0 84
    last post sent-location: kglpndl: post after freeing latch
    last process posted by me: 380225190 88 0
    (latch info) wait_event=0 bits=10
    holding 3800068f8 Parent+children enqueue hash chains level=4
    Location from where latch is held: ksqcmi: kslgpl:
    Context saved from call: 0
    state=busy
    recovery area:
    Dump of memory from 0x380200420 to 0x380200430
    80200420 00000000 00000000 00000000 00000000 [................]
    Process Group: DEFAULT, pseudo proc: 380284368
    O/S info: user: oracle, term: UNKNOWN, ospid: 8279
    OSD pid info: 8279
    SO: 380327500, type: 3, owner: 38021ed10, pt: 0, flag: INIT/-/-/0x00
    (session) trans: 380826b50, creator: 38021ed10, flag: (41) USR/- BSY/-/-/-/-/-
    DID: 0001-0071-00000002, short-term DID: 0000-0000-00000000
    txn branch: 0
    oct: 0, prv: 0, user: 37/GREENPOINT
    O/S info: user: root, term: , ospid: 7410, machine: crmapp01
    program: java@crmapp01 (TNS V1-V3)
    last wait for 'enqueue' blocking sess=0x802f4d80 seq=936 wait_time=-2
    name|mode=544d0005, id1=28ed, id2=0
    SO: 380ae8720, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380ae8720 handle=388d4b1e0 mode=S lock=380ae7310
    user=380327500 session=380327500 count=1 mask=0041 savepoint=11689 flags=[00]
    SO: 380ae7310, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380ae7310 handle=388d4b1e0 mode=N
    call pin=0 session pin=380ae8720
    user=380327500 session=380327500 count=1 flags=PNS/[08] savepoint=11689
    LIBRARY OBJECT HANDLE: handle=388d4b1e0
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-0041-0041 lock=N pin=S latch=2
    lwt=388d4b210[388d4b210,388d4b210] ltm=388d4b220[388d4b220,388d4b220]
    pwt=388d4b240[388d4b240,388d4b240] ptm=388d4b2d0[388d4b2d0,388d4b2d0]
    ref=388d4b1f0[382444d18,382444d18] lnd=388d4b2e8[388d4b2e8,388d4b2e8]
    LIBRARY OBJECT: object=38333d4b0
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    DEPENDENCIES: count=24 size=32
    AUTHORIZATIONS: count=2 size=16 minimum entrysize=16
    ACCESSES: count=1 size=16
    TRANSLATIONS: count=1 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3848210a8 3841dac70 I/P/A 0 NONE
    6 38333d5c0 38422f500 I/P/A 2 NONE
    SO: 380affe98, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380affe98 handle=3896fe670 mode=N
    call pin=384f9c440 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3581
    LIBRARY OBJECT HANDLE: handle=3896fe670
    name=DELETE FROM CDAPPLICANTS WHERE REFERENCEID = :b1
    hash=c7818ac0 timestamp=03-12-2005 22:02:03
    namespace=CRSR flags=RON/KGHP/TIM/PN0/SML/[12010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=2
    lwt=3896fe6a0[3896fe6a0,3896fe6a0] ltm=3896fe6b0[3896fe6b0,3896fe6b0]
    pwt=3896fe6d0[3896fe6d0,3896fe6d0] ptm=3896fe760[3896fe760,3896fe760]
    ref=3896fe680[3896fe680,3896fe680] lnd=3896fe778[38362a6d0,3881c6880]
    LIBRARY OBJECT: object=382444ac8
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 3824449e8 382444d18 388d4b1e0
    1 3824449e8 382444d60 381d539d0
    2 3824449e8 382444908 3884ac600
    DATA BLOCKS:
    data# heap pointer status pins change
    0 384921a10 382444bb8 I/P/A 0 NONE
    SO: 380b178a8, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380b178a8 handle=0 lock=380bd1860
    user=380327500 session=380327500 count=0 mask=0000 savepoint=3574 flags=[00]
    SO: 380bd1860, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bd1860 handle=384921b98 mode=N
    call pin=0 session pin=380b178a8
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3574
    LIBRARY OBJECT HANDLE: handle=384921b98
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-0041-0041 lock=N pin=0 latch=0
    lwt=384921bc8[384921bc8,384921bc8] ltm=384921bd8[384921bd8,384921bd8]
    pwt=384921bf8[384921bf8,384921bf8] ptm=384921c88[384921c88,384921c88]
    ref=384921ba8[384921da0,384921da0] lnd=384921ca0[384921ca0,384921ca0]
    LIBRARY OBJECT: object=385714408
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    DEPENDENCIES: count=3 size=16
    AUTHORIZATIONS: count=2 size=16 minimum entrysize=16
    ACCESSES: count=1 size=16
    TRANSLATIONS: count=1 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 38509c368 385a60248 I/P/A 0 NONE
    6 385714518 3814696a0 I/-/A 0 NONE
    SO: 380be2bc8, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380be2bc8 handle=3895bd510 mode=N
    call pin=380bd70e0 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3573
    LIBRARY OBJECT HANDLE: handle=3895bd510
    name=DELETE FROM CDCCNLOANINFO WHERE REFERENCEID = :b1
    hash=e3f658c1 timestamp=03-12-2005 22:02:03
    namespace=CRSR flags=RON/KGHP/TIM/PN0/SML/[12010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=0
    lwt=3895bd540[3895bd540,3895bd540] ltm=3895bd550[3895bd550,3895bd550]
    pwt=3895bd570[3895bd570,3895bd570] ptm=3895bd600[3895bd600,3895bd600]
    ref=3895bd520[3895bd520,3895bd520] lnd=3895bd618[38362a8a8,38362ab40]
    LIBRARY OBJECT: object=388eb5a30
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 384921f50 384921da0 384921b98
    1 384921f50 384921de8 384e5e918
    2 384921f50 384921e18 3885aa578
    DATA BLOCKS:
    data# heap pointer status pins change
    0 388eb5bf8 388eb5b20 I/P/A 0 NONE
    SO: 380aef228, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380aef228 handle=0 lock=3877b74f8
    user=380327500 session=380327500 count=0 mask=0000 savepoint=3566 flags=[00]
    SO: 3877b74f8, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=3877b74f8 handle=3823e39c0 mode=N
    call pin=0 session pin=380aef228
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3566
    LIBRARY OBJECT HANDLE: handle=3823e39c0
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-0041-0041 lock=N pin=0 latch=0
    lwt=3823e39f0[3823e39f0,3823e39f0] ltm=3823e3a00[3823e3a00,3823e3a00]
    pwt=3823e3a20[3823e3a20,3823e3a20] ptm=3823e3ab0[3823e3ab0,3823e3ab0]
    ref=3823e39d0[382bb0278,382bb0278] lnd=3823e3ac8[3823e3ac8,3823e3ac8]
    LIBRARY OBJECT: object=38206cb98
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    DEPENDENCIES: count=2 size=16
    AUTHORIZATIONS: count=2 size=16 minimum entrysize=16
    ACCESSES: count=2 size=16
    TRANSLATIONS: count=2 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 388ca4bc0 388414330 I/P/A 0 NONE
    6 38206cca8 388297cc8 I/-/A 0 NONE
    SO: 380af3590, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380af3590 handle=38362aa38 mode=N
    call pin=387ff54d0 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3565
    LIBRARY OBJECT HANDLE: handle=38362aa38
    name=DELETE FROM PDPROPERTY WHERE PROPID IN (SELECT PROPID FROM CDCCNLOANINFO WHERE REFERENCEID = :b1 )
    hash=b5e63705 timestamp=03-12-2005 22:02:03
    namespace=CRSR flags=RON/KGHP/TIM/PN0/MED/[50010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=0
    lwt=38362aa68[38362aa68,38362aa68] ltm=38362aa78[38362aa78,38362aa78]
    pwt=38362aa98[38362aa98,38362aa98] ptm=38362ab28[38362ab28,38362ab28]
    ref=38362aa48[38362aa48,38362aa48] lnd=38362ab40[3895bd618,3855987f0]
    LIBRARY OBJECT: object=382d383c0
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 382d384c8 382bb0278 3823e39c0
    1 382d384c8 382bb02c0 3852de7e8
    2 382d384c8 382bb02f0 38487da08
    DATA BLOCKS:
    data# heap pointer status pins change
    0 382d38568 382bb0118 I/P/A 0 NONE
    SO: 380b079d0, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380b079d0 handle=0 lock=3862f6460
    user=380327500 session=380327500 count=0 mask=0000 savepoint=3558 flags=[00]
    SO: 3862f6460, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=3862f6460 handle=3824c3828 mode=N
    call pin=0 session pin=380b079d0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3558
    LIBRARY OBJECT HANDLE: handle=3824c3828
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-0041-0041 lock=N pin=0 latch=2
    lwt=3824c3858[3824c3858,3824c3858] ltm=3824c3868[3824c3868,3824c3868]
    pwt=3824c3888[3824c3888,3824c3888] ptm=3824c3918[3824c3918,3824c3918]
    ref=3824c3838[3859673a8,3859673a8] lnd=3824c3930[3824c3930,3824c3930]
    LIBRARY OBJECT: object=386f81790
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    DEPENDENCIES: count=2 size=16
    AUTHORIZATIONS: count=2 size=16 minimum entrysize=16
    ACCESSES: count=2 size=16
    TRANSLATIONS: count=2 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 38819d5c8 381c97d78 I/P/A 0 NONE
    6 386f818a0 383e8b188 I/-/A 0 NONE
    SO: 380bcddb0, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bcddb0 handle=3881c6778 mode=N
    call pin=380c798a8 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3212
    LIBRARY OBJECT HANDLE: handle=3881c6778
    name=DELETE FROM CDPROPOWNED WHERE APPLICANTID IN (SELECT APPLICANTID FROM CDAPPLICANTS WHERE REFERENCEID = :b1 )
    hash=78ac7d91 timestamp=03-12-2005 22:02:03
    namespace=CRSR flags=RON/KGHP/TIM/PN0/MED/[50010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=2
    lwt=3881c67a8[3881c67a8,3881c67a8] ltm=3881c67b8[3881c67b8,3881c67b8]
    pwt=3881c67d8[3881c67d8,3881c67d8] ptm=3881c6868[3881c6868,3881c6868]
    ref=3881c6788[3881c6788,3881c6788] lnd=3881c6880[3896fe778,3881c6b18]
    LIBRARY OBJECT: object=385967158
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 3824c3be0 3859673a8 3824c3828
    1 3824c3be0 3859673f0 3855a5998
    2 3824c3be0 3824c39a0 38841fb30
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3848c1590 385967248 I/P/A 0 NONE
    SO: 380826b50, type: 25, owner: 380327500, pt: 0, flag: INIT/-/-/0x00
    (trans) bsn = 3206, flg = 0x01, flg2 = 0x00, prx = 0x0, ros = 2147483647, spn = 11690
    efd = 14
    parent xid: 0x0000.000.00000000
    env: (scn: 0x0000.00000000 xid: 0x0000.000.00000000 uba: 0x00000000.0000.00)
    cev: (spc = 0 usi = 2147483647 ubk tsn: 0 rdba: 0x00000000 useg tsn: 0 rdba: 0x00000000
    hwm uba: 0x00000000.0000.00 col uba: 0x00000000.0000.00
    num bl: 0 bk list: 0x0)
    (enqueue) <no resource>
    res: 0, prv: 0, sess: 0
         xga: 0x0, heap: UGA
    SO: 380771470, type: 22, owner: 380826b50, pt: 0, flag: INIT/-/-/0x00
    DML LOCK: tab=10477 flg=01 chi=0
    his[0]: mod=3 spn=3575
    (enqueue) TM-000028ED-00000000     DID: 0001-0071-00000002
    lv: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    res: 3804f1cf0, mode: SX, req: SSX, prv: 3807710b8, sess: 380327500, proc: 38021ed10
    SO: 380770f30, type: 22, owner: 380826b50, pt: 0, flag: INIT/-/-/0x00
    DML LOCK: tab=10626 flg=01 chi=0
    his[0]: mod=3 spn=3567
    (enqueue) TM-00002982-00000000     DID: 0001-0071-00000002
    lv: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    res: 3804f3140, mode: SX, prv: 3804f3150, sess: 380327500, proc: 38021ed10
    SO: 380771128, type: 22, owner: 380826b50, pt: 0, flag: INIT/-/-/0x00
    DML LOCK: tab=10515 flg=01 chi=0
    his[0]: mod=3 spn=3559
    (enqueue) TM-00002913-00000000     DID: 0001-0071-00000002
    lv: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    res: 3804f34e8, mode: SX, prv: 380771550, sess: 380327500, proc: 38021ed10
    SO: 380770fd8, type: 22, owner: 380826b50, pt: 0, flag: INIT/-/-/0x00
    DML LOCK: tab=10507 flg=01 chi=0
    his[0]: mod=3 spn=3206
    (enqueue) TM-0000290B-00000000     DID: 0001-0071-00000002
    lv: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    res: 3804f35b8, mode: SX, prv: 3804f35c8, sess: 380327500, proc: 38021ed10
    SO: 380ae7da0, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380ae7da0 handle=0 lock=380ae69e0
    user=380327500 session=380327500 count=0 mask=0000 savepoint=3204 flags=[00]
    SO: 380ae69e0, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380ae69e0 handle=3895a0598 mode=N
    call pin=0 session pin=380ae7da0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3188
    LIBRARY OBJECT HANDLE: handle=3895a0598
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-0041-0041 lock=N pin=0 latch=2
    lwt=3895a05c8[3895a05c8,3895a05c8] ltm=3895a05d8[3895a05d8,3895a05d8]
    pwt=3895a05f8[3895a05f8,3895a05f8] ptm=3895a0688[3895a0688,3895a0688]
    ref=3895a05a8[38362a558,38362a558] lnd=3895a06a0[3895a06a0,3895a06a0]
    LIBRARY OBJECT: object=3841f9248
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    DEPENDENCIES: count=2 size=16
    AUTHORIZATIONS: count=1 size=16 minimum entrysize=16
    ACCESSES: count=2 size=16
    TRANSLATIONS: count=2 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3869689a8 38554e218 I/P/A 0 NONE
    6 3841f9358 3811b2a68 I/-/A 0 NONE
    SO: 380beaa48, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380beaa48 handle=3881c6a10 mode=N
    call pin=380ae8320 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=3188
    LIBRARY OBJECT HANDLE: handle=3881c6a10
    name=DELETE FROM CDLIABILITY WHERE APPLICANTID IN (SELECT APPLICANTID FROM CDAPPLICANTS WHERE REFERENCEID = :b1 )
    hash=9df94e7 timestamp=03-12-2005 22:02:03
    namespace=CRSR flags=RON/KGHP/TIM/PN0/MED/[50010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=2
    lwt=3881c6a40[3881c6a40,3881c6a40] ltm=3881c6a50[3881c6a50,3881c6a50]
    pwt=3881c6a70[3881c6a70,3881c6a70] ptm=3881c6b00[3881c6b00,3881c6b00]
    ref=3881c6a20[3881c6a20,3881c6a20] lnd=3881c6b18[3881c6880,3853a3b90]
    LIBRARY OBJECT: object=387b04ba8
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 3895a0950 38362a558 3895a0598
    1 3895a0950 3895a0710 383181408
    2 3895a0950 3895a0740 3859cefe8
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3881c63a0 38362a3f8 I/P/A 0 NONE
    SO: 380bde998, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bde998 handle=38132ddf0 mode=N
    call pin=380be8ac8 session pin=0
    user=380327500 session=380327500 count=1 flags=PNC/[04] savepoint=3184
    LIBRARY OBJECT HANDLE: handle=38132ddf0
    name=GREENPOINT.DELETECCNACCOUNT
    hash=826ef60c timestamp=12-10-2003 10:36:38
    namespace=TABL/PRCD/TYPE flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0015-0015 lock=N pin=S latch=2
    lwt=38132de20[38132de20,38132de20] ltm=38132de30[38132de30,38132de30]
    pwt=38132de50[38132de50,38132de50] ptm=38132dee0[38132dee0,38132dee0]
    ref=38132de00[38132de00,38132de00] lnd=38132def8[3809617a8,3836a2e60]
    LIBRARY OBJECT: object=3856e0180
    type=PRCD flags=EXS/LOC[0005] pflags=NST [01] status=VALD load=0
    DEPENDENCIES: count=10 size=16
    READ ONLY DEPENDENCIES: count=7 size=16
    ACCESSES: count=7 size=16
    DATA BLOCKS:
    data# heap pointer status pins change
    0 385530ac0 3856e0318 I/P/A 0 NONE
    2 3856e0290 388306330 I/-/A 0 NONE
    4 38927beb8 380e87338 I/P/A 2 NONE
    SO: 38514e0e0, type: 36, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=38514e0e0 handle=3841b0610 mode=S lock=380bd15c0
    user=380327500 session=380327500 count=1 mask=007d savepoint=2750 flags=[00]
    SO: 380bd15c0, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bd15c0 handle=3841b0610 mode=N
    call pin=0 session pin=38514e0e0
    user=380327500 session=380327500 count=2 flags=PNS/[08] savepoint=1103
    LIBRARY OBJECT HANDLE: handle=3841b0610
    namespace=CRSR flags=RON/KGHP/PN0/[10010000]
    kkkk-dddd-llll=0000-007d-007d lock=N pin=S latch=0
    lwt=3841b0640[3841b0640,3841b0640] ltm=3841b0650[3841b0650,3841b0650]
    pwt=3841b0670[3841b0670,3841b0670] ptm=3841b0700[3841b0700,3841b0700]
    ref=3841b0620[388e9dcd8,388e9dcd8] lnd=3841b0718[3841b0718,3841b0718]
    LIBRARY OBJECT: object=38920e498
    type=CRSR flags=EXS[0001] pflags=NST [01] status=VALD load=0
    DEPENDENCIES: count=2 size=16
    AUTHORIZATIONS: count=1 size=16 minimum entrysize=16
    ACCESSES: count=1 size=16
    TRANSLATIONS: count=1 size=16
    SCHEMA: count=1 size=16 entrysize=4
    DATA BLOCKS:
    data# heap pointer status pins change
    0 389258ce0 388081c80 I/P/A 0 NONE
    2 38920e5a8 0 I/P/- 1 NONE
    3 383cb4a68 0 -/P/- 1 NONE
    4 383cb4b10 386123948 I/P/A 2 NONE
    5 383cb4bb8 0 -/P/- 1 NONE
    6 383cb4c60 388d3ca60 I/P/A 2 NONE
    SO: 387fcbe98, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=387fcbe98 handle=3854e9040 mode=N
    call pin=380aef1a8 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=1103
    LIBRARY OBJECT HANDLE: handle=3854e9040
    name=BEGIN deleteCCNAccount (:1) ; END;
    hash=35a84458 timestamp=03-14-2005 22:45:36
    namespace=CRSR flags=RON/KGHP/TIM/PN0/SML/[12010000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=0
    lwt=3854e9070[3854e9070,3854e9070] ltm=3854e9080[3854e9080,3854e9080]
    pwt=3854e90a0[3854e90a0,3854e90a0] ptm=3854e9130[3854e9130,3854e9130]
    ref=3854e9050[3854e9050,3854e9050] lnd=3854e9148[3854e9148,3854e9148]
    LIBRARY OBJECT: object=388e9da88
    type=CRSR flags=EXS[0001] pflags= [00] status=VALD load=0
    CHILDREN: size=16
    child# table reference handle
    0 3835cda28 388e9dcd8 3841b0610
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3815de448 388e9db78 I/P/A 0 NONE
    SO: 380bcdb10, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bcdb10 handle=385132220 mode=N
    call pin=384a42060 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=1046
    LIBRARY OBJECT HANDLE: handle=385132220
    name=COMMON.REFERENCE_SEQUENCE
    hash=48a6bb47 timestamp=04-11-2003 06:05:22
    namespace=TABL/PRCD/TYPE flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=2
    lwt=385132250[385132250,385132250] ltm=385132260[385132260,385132260]
    pwt=385132280[385132280,385132280] ptm=385132310[385132310,385132310]
    ref=385132230[385132230,385132230] lnd=385132328[3850c4878,385a40310]
    LIBRARY OBJECT: object=385736f28
    type=SQNC flags=EXS/LOC[0005] pflags= [00] status=VALD load=0
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3857371f0 385737018 I/-/A 0 NONE
    SO: 380aee558, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380aee558 handle=3853c56a8 mode=N
    call pin=380c2c140 session pin=0
    user=380327500 session=380327500 count=1 flags=[00] savepoint=978
    LIBRARY OBJECT HANDLE: handle=3853c56a8
    name=COMMON.FAILEDAUTHATTEMPTS_SEQUENCE
    hash=2034d5e9 timestamp=04-11-2003 06:05:22
    namespace=TABL/PRCD/TYPE flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0001-0001 lock=N pin=0 latch=0
    lwt=3853c56d8[3853c56d8,3853c56d8] ltm=3853c56e8[3853c56e8,3853c56e8]
    pwt=3853c5708[3853c5708,3853c5708] ptm=3853c5798[3853c5798,3853c5798]
    ref=3853c56b8[3853c56b8,3853c56b8] lnd=3853c57b0[3850ef6b8,38953e6f0]
    LIBRARY OBJECT: object=384565778
    type=SQNC flags=EXS/LOC[0005] pflags= [00] status=VALD load=0
    DATA BLOCKS:
    data# heap pointer status pins change
    0 3813b0d80 384565868 I/-/A 0 NONE
    SO: 380bcae80, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bcae80 handle=3896706e8 mode=N
    call pin=380bcbdd0 session pin=0
    user=380327500 session=380327500 count=1 flags=CBB/[02] savepoint=70
    LIBRARY OBJECT HANDLE: handle=3896706e8
    name=SYS.DATABASE
    hash=aea96fa0 timestamp=12-31-4712 23:59:59
    namespace=EVNT flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0009-0009 lock=N pin=0 latch=1
    lwt=389670718[389670718,389670718] ltm=389670728[389670728,389670728]
    pwt=389670748[389670748,389670748] ptm=3896707d8[3896707d8,3896707d8]
    ref=3896706f8[3896706f8,3896706f8] lnd=3896707f0[3896707f0,3896707f0]
    LIBRARY OBJECT: object=388e265f0
    type=EVNT flags=EXS/LOC[0005] pflags= [00] status=VALD load=0
    DATA BLOCKS:
    data# heap pointer status pins change
    0 389100fa8 388e26788 I/-/A 0 NONE
    3 388e26700 38490e958 I/-/A 0 NONE
    SO: 380bdc848, type: 35, owner: 380327500, flag: INIT/-/-/0x00
    LIBRARY OBJECT LOCK: lock=380bdc848 handle=38954a0c8 mode=N
    call pin=380af6008 session pin=0
    user=380327500 session=380327500 count=1 flags=CBB/[02] savepoint=70
    LIBRARY OBJECT HANDLE: handle=38954a0c8
    name=GREENPOINT.GREENPOINT
    hash=b8eb6472 timestamp=12-31-4712 23:59:59
    namespace=EVNT flags=KGHP/TIM/SML/[02000000]
    kkkk-dddd-llll=0000-0009-0009 lock=N pin=0 latch=1
    lwt=38954a0f8[38954a0f8,38954a0f8] ltm=38954a108[38954a108,38954a108]
    pwt=38954a128[38954a128,38954a128] ptm=38954a1b8[38954a1b8,38954a1b8]
    ref=38954a0d8[38954a0d8,38954a0d8] lnd=38954a1d0[38954a1d0,38954a1d0]
    LIBRARY OBJECT: object=386aabdb8
    type=EVNT flags=EXS/LOC[0005] pflags= [00] status=VALD load=0
    DATA BLOCKS:
    data# heap pointer status pins change
    0 385182ef0 386aabf50 I/-/A 0 NONE
    3 386aabec8 384976630 I/-/A 0 NONE
    SO: 382f67418, type: 34, owner: 380327500, pt: 0, flag: INIT/-/-/0x00
    user lock: lock=382f67418 mode=S
    user resource: user=380af43c8 uid=37 mode=S
    SO: 382f4d870, type: 34, owner: 380327500, pt: 0, flag: INIT/-/-/0x00
    user lock: lock=382f4d870 mode=S
    user resource: user=380af43c8 uid=37 mode=S
    SO: 38055c860, type: 9, owner: 38021ed10, pt: 0, flag: INIT/-/-/0x00
    (broadcast handle) flag: (2) ACTIVE SUBSCRIBER, owner: 38021ed10,
    event: 73764, last message event: 73764, messages read: 0
    channel: (380566150) system events broadcast channel
    scope: 101, event: 73785, last mesage event: 0,
    publishers/subscribers: 0/163,
    messages published: 0
    SO: 383296480, type: 2, owner: 38021ed10, pt: 0, flag: INIT/-/-/0x00
    (call) sess: cur 380327500, rec 380327500, usr 380327500; depth: 0
    SO: 380b01038, type: 2, owner: 383296480, pt: 0, flag: INIT/-/-/0x00
    (call) sess: cur 380327500, rec 0, usr 380327500; depth: 1
    SO: 380be8ac8, type: 36, owner: 383296480, flag: INIT/-/-/0x00
    LIBRARY OBJECT PIN: pin=380be8ac8 handle=38132ddf0 mode=S lock=380bde998
    user=380327500 session=380327500 count=1 mask=0011 savepoint=3184 flags=[00]
    ===================================================
    CURRENT SESSION'S INSTANTIATION STATE
    current session=380327500
    INSTANTIATION OBJECT: object=101e98740
    type="PL/SQL"[0] lock=380bde998 handle=38132ddf0 body=0 level=1
    flags=SHR/NST/FST[65] executions=1
    CURSORS: size=8 count=5 next=6
    index cursor tag context flags
    1 2 101eb9720 101e8d6a0 LRU/PRS/[03]
    2 3 101eb9720 101e8d788 LRU/PRS/[03]
    3 4 101eb9720 101e8d870 LRU/PRS/[03]
    4 5 101eb9720 101e8d958 LRU/PRS/[03]
    5 6 101eb9720 101e8da40 PRS/[02]
    REST OF INSTANTIATION OBJECT:
    address=101e987d0 size=136
    ffffffff 00000000 00000001 01e98740 00000001 01dffb60 00000001 01e8da40
    00000001 01e8f500 00000000 00000000 00000011 00110000 00000003 80e87548
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000
    INSTANTIATION OBJECT: object=101e89ed0
    type="KOKA open cursor"[3] lock=0 handle=0 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e89f60 size=16
    00000000 00000005 0000000a 00000000
    INSTANTIATION OBJECT: object=101e89e18
    type="KOKA pseudo cursor"[4] lock=0 handle=0 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e89ea8 size=16
    00000000 00000005 0000000a 00000000
    INSTANTIATION OBJECT: object=101e8c110
    type="cursor"[2] lock=387fcbe98 handle=3854e9040 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e8c1a0 size=624
    00000003 841b0610 00000003 80bd15c0 00000003 8514e0e0 00000000 00000000
    00000001 01e88b78 00000001 01e88bb0 00000001 01e99948 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00110464 0514000c 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e93370 00000001 01e8c258 00000001 01e93370 00000002 00000000
    00000000 00000000 00000000 00000000 00000001 01e93348 00000000 00000000
    00000001 01e87708 00000006 2f000000 00000001 01e84ea0 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e8c318
    00000001 01e8c318 00000000 00000418 00000001 01e8c330 00000001 01e8c330
    00000001 01e82128 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e85460 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    INSTANTIATION OBJECT: object=101e93218
    type="PL/SQL"[0] lock=380bd15c0 handle=3841b0610 body=0 level=1
    flags=FST[60] executions=0
    DEPENDENCIES: size=2
    dependency# instantiation flags
    0 0 [00]
    1 101e98740 [00]
    REST OF INSTANTIATION OBJECT:
    address=101e932a8 size=136
    ffffffff 00000000 00000000 00000000 00000001 01dffb60 00000000 00000000
    00000001 01e98c80 00000000 00000000 00000010 00100000 00000003 86123bf8
    00000000 00000000 00000000 00000000 00000001 01e84ea0 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000
    INSTANTIATION OBJECT: object=101e94108
    type="cursor"[2] lock=380beaa48 handle=3881c6a10 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e94198 size=624
    00000003 895a0598 00000003 80ae69e0 00000000 00000000 00000000 00000000
    00000001 01e94050 00000001 01e94090 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00110424 05000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000001 01e98608 00000001 01e8c0b8 00000002 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e87750 00000006 00000000 00000000 00000000 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e94310
    00000001 01e94310 00000000 00000418 00000001 01e94328 00000001 01e94328
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    INSTANTIATION OBJECT: object=101e8d230
    type="cursor"[2] lock=380bcddb0 handle=3881c6778 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e8d2c0 size=624
    00000003 824c3828 00000003 862f6460 00000000 00000000 00000000 00000000
    00000001 01e8bf70 00000001 01e8bf90 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00110424 05000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000001 01e8bed8 00000001 01e8bf20 00000002 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e87798 00000006 07000000 00000000 00000000 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e8d438
    00000001 01e8d438 00000000 00000418 00000001 01e8d450 00000001 01e8d450
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    INSTANTIATION OBJECT: object=101e8cf18
    type="cursor"[2] lock=380af3590 handle=38362aa38 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e8cfa8 size=624
    00000003 823e39c0 00000003 877b74f8 00000000 00000000 00000000 00000000
    00000001 01e8bdc8 00000001 01e8be00 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00110424 05000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000001 01e8ce78 00000001 01e8cec0 00000002 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e877e0 00000006 00000000 00000000 00000000 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e8d120
    00000001 01e8d120 00000000 00000418 00000001 01e8d138 00000001 01e8d138
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    INSTANTIATION OBJECT: object=101e94578
    type="cursor"[2] lock=380be2bc8 handle=3895bd510 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e94608 size=624
    00000003 84921b98 00000003 80bd1860 00000000 00000000 00000000 00000000
    00000001 01e8cd38 00000001 01e8cd58 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00110424 05000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000001 01e94530 00000001 01e8ccd8 00000002 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e87828 00000006 00000000 00000000 00000000 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e94780
    00000001 01e94780 00000000 00000418 00000001 01e94798 00000001 01e94798
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    INSTANTIATION OBJECT: object=101e982c8
    type="cursor"[2] lock=380affe98 handle=3896fe670 body=0 level=0
    flags=FST[60] executions=0
    REST OF INSTANTIATION OBJECT:
    address=101e98358 size=624
    00000003 88d4b1e0 00000003 80ae7310 00000003 80ae8720 00000000 00000000
    00000001 01e94448 00000001 01e8f028 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00101424 01121800 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000002 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000001 01e87870 00000006 07000000 00000000 00000000 00000000 00000000
    00000001 01e85660 00000240 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00020200 00000000
    00000000 00000000 00000000 62696e64 20766172 20686561 70000000 7fff7fff
    7fff7fff 00000000 00000000 00000000 00000000 00000218 00000001 01e984d0
    00000001 01e984d0 00000000 00000418 00000001 01e984e8 00000001 01e984e8
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000025 00000025 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    00000000 00000000 00000000 00000000
    ******************** Cursor Dump ************************
    Current cursor: 6, pgadep: 1
    Cursor Dump:
    Cursor 1 (101e87708): CURBOUND curiob: 101e8c110
    curflg: 4c curpar: 0 curusr: 0 curses 380327500
    cursor name: BEGIN deleteCCNAccount (:1) ; END;
    child pin: 38514e0e0, child lock: 380bd15c0, parent lock: 387fcbe98
    xscflg: 110464, parent handle: 3854e9040, xscfl2: 514000c
    nxt: 1.0x000000f0
    Cursor frame allocation dump:
    frm: -------- Comment -------- Size Seg Off
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=0 size=24 offset=0
    bfp=101ea94e0 bln=22 avl=04 flg=05
    value=600498
    Cursor 2 (101e87750): CURBOUND curiob: 101e94108
    curflg: c5 curpar: 0 curusr: 25 curses 380327500
    cursor name: DELETE FROM CDLIABILITY WHERE APPLICANTID IN (SELECT APPLICANTID FROM CDAPPLICANTS WHERE REFERENCEID = :b1 )
    child pin: 0, child lock: 380ae69e0, parent lock: 380beaa48
    xscflg: 110424, parent handle: 3881c6a10, xscfl2: 5000000
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24 offset=0
    No bind buffers allocated
    Cursor 3 (101e87798): CURBOUND curiob: 101e8d230
    curflg: cd curpar: 0 curusr: 25 curses 380327500
    cursor name: DELETE FROM CDPROPOWNED WHERE APPLICANTID IN (SELECT APPLICANTID FROM CDAPPLICANTS WHERE REFERENCEID = :b1 )
    child pin: 0, child lock: 3862f6460, parent lock: 380bcddb0
    xscflg: 110424, parent handle: 3881c6778, xscfl2: 5000000
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24 offset=0
    No bind buffers allocated
    Cursor 4 (101e877e0): CURBOUND curiob: 101e8cf18
    curflg: c5 curpar: 0 curusr: 25 curses 380327500
    cursor name: DELETE FROM PDPROPERTY WHERE PROPID IN (SELECT PROPID FROM CDCCNLOANINFO WHERE REFERENCEID = :b1 )
    child pin: 0, child lock: 3877b74f8, parent lock: 380af3590
    xscflg: 110424, parent handle: 38362aa38, xscfl2: 5000000
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24 offset=0
    No bind buffers allocated
    Cursor 5 (101e87828): CURBOUND curiob: 101e94578
    curflg: c5 curpar: 0 curusr: 25 curses 380327500
    cursor name: DELETE FROM CDCCNLOANINFO WHERE REFERENCEID = :b1
    child pin: 0, child lock: 380bd1860, parent lock: 380be2bc8
    xscflg: 110424, parent handle: 3895bd510, xscfl2: 5000000
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24 offset=0
    No bind buffers allocated
    Cursor 6 (101e87870): CURBOUND curiob: 101e982c8
    curflg: cd curpar: 0 curusr: 25 curses 380327500
    cursor name: DELETE FROM CDAPPLICANTS WHERE REFERENCEID = :b1
    child pin: 380ae8720, child lock: 380ae7310, parent lock: 380affe98
    xscflg: 101424, parent handle: 3896fe670, xscfl2: 1121800
    nxt: 4.0x000005e8 nxt: 3.0x00000450 nxt: 2.0x000005a0 nxt: 1.0x000007b0
    Cursor frame allocation dump:
    frm: -------- Comment -------- Size Seg Off
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24 offset=0
    No bind buffers allocated
    End of cursor dump
    END OF PROCESS STATE

    If you read first few lines of trace you will find your answer that the application is not properly design. if you are inserting recored manually then commit your records. if your are using form application then in coding of inserting record use commit command after inserting record. moreover never put such a huge trace on the forum. after looking size no one even like to read it.
    moreover you can query v$locked_object view to see looking objects and from there you can get session id and kill this session.

  • Library errors

    My code returs Library function error (return value == -38) - the id passed must be a menu id or menu item id.
    Using CVI 8.5 full feature OI. This occurs in RebuildEditMenu() function on the call TS_CleanupMenu().
    If I comment out the TS_CleanupMenu() call then it return menu id error -13 - Invalid control ID on RunUserInterface() function.
    I do have another cvi code that launched the custom UUT dialog box and this error is reported every time a particular button of the dialog is clicked.
    static int RebuildEditMenu()
    int error = 0;
    CAObjHandle viewMgr = 0;
    int menuBar;
    menuBar = GetPanelMenuBar(gMainWindow.panel);
    // determine which view manager the menu commands apply to
    errChk( GetActiveViewManager(&viewMgr));
    // discard any current menu items that were inserted by TS_InsertCommandsInMenu
    errChk( TS_RemoveMenuCommands(menuBar, BAR_EDIT, FALSE, FALSE));
    // rebuild Edit menu
    errChk( TS_InsertCommandsInMenu(sEditMenuCommands, menuBar, BAR_EDIT, -1, viewMgr, NULL, TRUE, errMsg));
    // remove duplicate separators and shortcut keys
    errChk( TS_CleanupMenu(menuBar, 0)); //jjt
    Error:
    return error;
    Any advice as to what is causing the error.
    TIA

    Hi sonotk,
    Would it be possible to post a screenshot of the errors you're seeing, specifically the first error (the library function error)?
    Thanks!

  • INI instrument driver and fatal run time errors

    Hey everyone, I'm experimenting with the INI instrument driver and running into a fatal run time error.  Here's what I know so far:
    The runtime error only happens during the very first Ini_Putxxx
    It only happens if the target INI file does not yet exist.  After the file is created with a Ini_WriteToFile, then the program will proceed with all my Put functions without any errors.
    Ideas?
    Solved!
    Go to Solution.

    Are you sure about that? I just tried calling these functions in the Interactive Execution window without errors (the destination file wasn't there before the call and has been created without errors):
    #include "inifile.h"
    static int error = 0;
    static IniText T = 0;
    T = Ini_New (0);
    Ini_PutString (T, "General", "Item 1", "Test string");
    Ini_PutInt (T, "General", "Item 2", 123);
    Ini_PutDouble (T, "General", "Item 3", Pi ());
    error = Ini_WriteToFile (T, "C:\\test.ini");
    Ini_Dispose (T);
    Ini_PutXX functions do not make any disk access, they work entirely in memory; the only functions where the instrument accesses the disk are Ini_WriteToFile and Ini_ReadFromFile. Which error are you receiving? Can you post a sample code that exhibits the error?
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

Maybe you are looking for