Hashtable and DB results problem

Hi guys i have a problem, i am retrieving two sets of data from a db based on a query and then putting these values into a hashtable to use later the problem is that once i put it into the hashtable i loose the order the were returned by i have two fields
code and number code for example
Code number code
ACCC 02
BBCC 01
DDCC 02
DDCC 30
the problem is i have it to return by code then number code asc but when outputting from the hashtable i get the following
aacc 02
bbCC 01
DDCC 30 --wrong order
DDCC 02 --- wrong order
is there anyway i can preserve the order that is returned from the databse, i cant really use anything other than a hashtable as there are so many implications on the existing code that would have to be changed.
0

LinkedHashMap

Similar Messages

  • XML extractvalue and NULL result-Problem

    I've got a very strange problem: One select gets restults in my development-database, the same select in production retrieves NULL.
    The following sql-construct:
    SELECT (
      CASE
        WHEN personkey!=-1
        THEN
          ( SELECT extractvalue( v.xml, '/p:PersonData/p:TypedPostalAddress[@id="' ||<string> || '"]/p:PostalAddress/p:PostalCode', .....')
          FROM <tbl1>,<tbl2>
          WHERE tbl1.id=tbl2.id)
        ELSE
          ( SELECT 'no person' FROM dual )
      END ) adress,
    FROM <tbl3>
    WHERE <tbl3>.personkey!=-1
    When I use a view containing an outer join in the ELSE-Condition of the case I'm not getting a result in production, but I do in development (same data, same oracle-version, but other instance), but when I use a view without an outer join in the else-Condition, I'm getting results also in production. The column "personkey" is not nullable.
    Does anyone got an idea what could be wrong with this SQL?
    Thanks in advance for help!

    Additional Information:
    When resolving the CASE to a "union all" query, I am having the following result:
    query1 is working
    query2 is working
    joining both queries with union all => the result of the first query (with the extractvalue) is NULL, the second query is still working.

  • Jax-ws 2.1 - problems returning hashtable and hashmap

    Hi,
    We're developing a set of applications that communicate via web services.
    The company decided that to do this we should use jax-ws 2.1.
    Everything is going ok, its really easy to use, except for a web method that returns a java.util.Hashtable.
    In the endpoint there's no problem, it compiles and deploys to a tomcat 5.5 without a problem.
    The client can access the wsdl via url, download it and create the necessary files (we use netbeans 5.5 for this).
    We can invoke the method getConfig without a problem, but the object returned only has the java.lang.Object 's methods, not the java.util.Hastable 's .
    Endpoint:
    package xxx.cdc_pm_i;
    import java.util.Hashtable;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    import javax.xml.bind.annotation.*;
    @WebService()
    public class cdc_pm_i{
    @WebMethod
    public Hashtable getConfig() {
    Hashtable<String,String> config = new Hashtable<String,String>();
         config.put("1","1");
         config.put("2","2");
    return config;
    Client:
    try { // Call Web Service Operation
    xxx.CdcPmIService service = new xxx.cdc_pm_i.CdcPmIService();
    xxx.cdc_pm_i.CdcPmI port = service.getCdcPmIPort();
    // TODO process result here
    xxx.cdc_pm_i.Hashtable result = port.getConfig();
    } catch (Exception ex) {
         ex.printStackTrace();
    I'm fairly unexperienced in Web Services and i have no idea why this works for any kind of return object (as long as its serializable) and has this problem with hashtables and hashmaps.
    Any idea on how to solve this?
    Thanks in advance,
    Rui

    Didn't find the solution for this, but any object that contains an Object in its methods / attributes had the same problems, so i just built my own table that only supports Strings and the problem was solved.
    If anyone knows why i had this problem and wants to share a solution, please do so.

  • Problem with store ResultSet and show result in table

    Hi, I'm kind of new in ADF, I need to store ResultSet and show result in table-component. I have two problems:
    1) I get my ResultSet by calling callStoredProcedure(...) and this returns actually ref_cursor as ResultSet.
    When I try to println() contains of this result set in this method - it works OK (commented part),
    but when I want to println() somewhere else (eg. in retrieveRefCursor() method) it doesn't work.
    The problem is that the scrollability of the ResultSet is lost - it becomes a TYPE_FORWARD_ONLY ResultSet.
    Is there any way to store data from ref_cursor for a long time?
    2) My second problem is "store any result set and show this data in table". I have tried use method storeNewResultSet() but
    without result (table contains only "No rows yet" and everything seems to be OK - no exception, no warning, no error...).
    I have tried to call this method with ResultSet from select on dbs (without resultSet as ref_cursor ) - no result with createRowFromResultSet(),
    storeNewResultSet(), setUserDataForCollection()...
    I've tried a lot of ways to do this, but it doesn't work. I really don't know how to make it so it can work.
    Thanks for your help.
    ADF BC, JDev 11.1.1.0
    This is my code from ViewObjectImpl
    package tp.model ;
    import com.sun.jmx.mbeanserver.MetaData ;
    import java.sql.CallableStatement ;
    import java.sql.Connection ;
    import java.sql.PreparedStatement ;
    import java.sql.ResultSet ;
    import java.sql.ResultSetMetaData ;
    import java.sql.SQLException ;
    import java.sql.Statement ;
    import java.sql.Types ;
    import oracle.jbo.JboException ;
    import oracle.jbo.server.SQLBuilder ;
    import oracle.jbo.server.ViewObjectImpl ;
    import oracle.jbo.server.ViewRowImpl ;
    import oracle.jbo.server.ViewRowSetImpl ;
    import oracle.jdbc.OracleCallableStatement ;
    import oracle.jdbc.OracleConnection ;
    import oracle.jdbc.OracleTypes ;
    public class Profiles1ViewImpl extends ViewObjectImpl {
        private static final String SQL_STM = "begin Pkg_profile.get_profile_list(?,?,?,?);end;" ;
        public Profiles1ViewImpl () {
        /* 0. */
        protected void create () {
            getViewDef ().setQuery ( null ) ;
            getViewDef ().setSelectClause ( null ) ;
            setQuery ( null ) ;
        public Connection getCurrentConnection () throws SQLException {
            // Note that we never execute this statement, so no commit really happens
            Connection conn = null ;
            PreparedStatement st = getDBTransaction ().createPreparedStatement ( "commit" , 1 ) ;
            conn = st.getConnection () ;
            st.close () ;
            return conn ;
        /* 1. */
        protected void executeQueryForCollection ( Object qc , Object[] params , int numUserParams ) {
            storeNewResultSet ( qc , retrieveRefCursor ( qc , params ) ) ;
            // callStoredProcedure ( qc , SQL_STM ) ;
            super.executeQueryForCollection ( qc , params , numUserParams ) ;
        /* 2. */
        private ResultSet retrieveRefCursor ( Object qc , Object[] params ) {
            ResultSet rs = null ;
            rs = callStoredProcedure ( qc , SQL_STM ) ;
            return rs ;
        /* 3. */
        public ResultSet callStoredProcedure ( Object qc , String stmt ) {
            CallableStatement st = null ;
            ResultSet refCurResultSet = null ;
            try {
                st = getDBTransaction ().createCallableStatement ( stmt , 0 ) ; // call 
                st.setObject ( 1 , 571 ) ; //set id of my record to 571
                st.registerOutParameter ( 2 , OracleTypes.CURSOR ) ; // my ref_cursor
                st.registerOutParameter ( 3 , Types.NUMERIC ) ;
                st.registerOutParameter ( 4 , Types.VARCHAR ) ;
                st.execute () ; //executeUpdate
                System.out.println ( "Numeric " + st.getObject ( 3 ) ) ;
                System.out.println ( "Varchar " + st.getObject ( 4 ) ) ;
                refCurResultSet = ( ResultSet ) st.getObject ( 2 ) ; //set Cursoru to ResultSet
                //   setUserDataForCollection(qc, refCurResultSet); //don't work
                //   createRowFromResultSet ( qc , refCurResultSet ) ; //don't work
                /* this works but only one-time call - so my resultSet(cursor) really have a data
                while ( refCurResultSet.next () ) {
                    String nameProfile = refCurResultSet.getString ( 2 ) ;
                    System.out.println ( "Name profile: " + nameProfile ) ;
                return refCurResultSet ;
            } catch ( SQLException e ) {
                System.out.println ( "sql ex " + e ) ;
                throw new JboException ( e ) ;
            } finally {
                if ( st != null ) {
                    try {
                        st.close () ; // 7. Close the statement
                    } catch ( SQLException e ) {
                        System.out.println ( "sql exx2 " + e ) ;
        /* 4. Store a new result set in the query-collection-private user-data context */
        private void storeNewResultSet ( Object qc , ResultSet rs ) {
            ResultSet existingRs = getResultSet ( qc ) ;
            // If this query collection is getting reused, close out any previous rowset
            if ( existingRs != null ) {
                try {
                   existingRs.close () ;
                } catch ( SQLException s ) {
                    System.out.println ( "sql err " + s ) ;
            setUserDataForCollection ( qc , rs ) ; //should store my result set
            hasNextForCollection ( qc ) ; // Prime the pump with the first row.
        /*  5. Retrieve the result set wrapper from the query-collection user-data      */
        private ResultSet getResultSet ( Object qc ) {
            return ( ResultSet ) getUserDataForCollection ( qc ) ;
        // createRowFromResultSet - overridden for custom java data source support - also doesn't work
       protected ViewRowImpl createRowFromResultSet ( Object qc , ResultSet resultSet ) {
            ViewRowImpl value = super.createRowFromResultSet ( qc , resultSet ) ;
            return value ;
    }

    Hi I have the same problem like you ...
    My SQL Definition:
    CREATE OR REPLACE TYPE RMSPRD.NB_TAB_STOREDATA is table of NB_STOREDATA_REC
    CREATE OR REPLACE TYPE RMSPRD.NB_STOREDATA_REC AS OBJECT (
       v_title            VARCHAR2(100),
       v_store            VARCHAR2(50),
       v_sales            NUMBER(20,4),
       v_cost             NUMBER(20,4),
       v_units            NUMBER(12,4),
       v_margin           NUMBER(6,2),
       v_ly_sales         NUMBER(20,4),
       v_ly_cost          NUMBER(20,4),
       v_ly_units         NUMBER(12,4),
       v_ly_margin        NUMBER(6,2),
       v_sales_variance   NUMBER(6,2)
    CREATE OR REPLACE PACKAGE RMSPRD.NB_SALES_DATA
    AS
    v_sales_format_tab   nb_tab_storedata;
    FUNCTION sales_data_by_format_gen (
          key_value         IN       VARCHAR2,
          l_to_date         IN       DATE DEFAULT SYSDATE-1,
          l_from_date       IN       DATE DEFAULT TRUNC (SYSDATE, 'YYYY')
          RETURN nb_tab_storedata;
    I have a PLSQL function .. that will return table ..
    when i use this in sql developer it is working fine....
    select * from table (NB_SALES_DATA.sales_data_by_format_gen('TSC',
                                        '05-Aug-2012',
                                        '01-Aug-2012') )
    it returning table format record.
    I am not able to call from VO object. ...
    Hope you can help me .. please tell me step by step process...
    protected Object callStoredFunction(int sqlReturnType, String stmt,
    Object[] bindVars) {
    System.out.println("--> 1");
    CallableStatement st = null;
    try {
    st = getDBTransaction().createCallableStatement("begin ? := " +"NB_SALES_DATA.sales_data_by_format_gen('TSC','05-Aug-2012','01-Aug-2012') ; end;", 0);
    System.out.println("--> 2");
    st.executeUpdate();
    System.out.println("--> 3");
    return st.getObject(1);
    catch (SQLException e) {
    e.printStackTrace();
    throw new JboException(e);

  • In FCP x backup process is constantly running in background even though its done which results into slow working of FCP x. any idea to resolve the issue. I am using 10.1.3 and facing the problem ever since i have updated my FCP x to 10.1.3

    in FCP x backup process is constantly running in background even though its done which results into slow working of FCP x. any idea to resolve the issue? I am using 10.1.3 and facing the problem ever since i have updated my FCP x to 10.1.3

    Go into preferences and under playback turn off background render. That helped speed things for me when working with large files.

  • A720 and windows 8 problems

    Im trying to setup the a720  with windows 8 and have this problems: When power off the computer have all time this BSOD : SESSION_HAS_VALID_POOL_ON_EXIT Touchscreen not work.
    If I run the windows 8 install, just for test, the touch is working, the problem is after install.
    External hard disk not working when connect to any USB port, and unplug result in a system freeze.
    Here my mini dump for error SESSION_HAS_VALID_POOL_ON_EXIT, I have the i5 model too and this not happen on that model:
    Crash Dump Analysis provided by OSR Open Systems Resources, Inc. (http://www.osr.com) Online Crash Dump Analysis Service See http://www.osronline.com for more information Windows 8 Kernel Version 9200 MP (8 procs) Free x64 Product: WinNt, suite: TerminalServer SingleUserTS Built by: 9200.16384.amd64fre.win8_rtm.120725-1247 Machine Name: Kernel base = 0xfffff800`60081000 PsLoadedModuleList = 0xfffff800`6034ba60 Debug session time: Wed Nov 28 17:08:03.203 2012 (UTC - 5:00) System Uptime: 0 days 0:00:13.897 ******************************************************************************* *                                                                             * *                        Bugcheck Analysis                                    * *                                                                             * *******************************************************************************
    SESSION_HAS_VALID_POOL_ON_EXIT (ab) Caused by a session driver not freeing its pool allocations prior to a session unload.  This indicates a bug in win32k.sys, atmfd.dll, rdpdd.dll or a video driver. Arguments: Arg1: 0000000000000001, session ID Arg2: 00000000000000f0, number of paged pool bytes that are leaking Arg3: 0000000000000000, number of nonpaged pool bytes that are leaking Arg4: 0000000000000001, total number of paged and nonpaged allocations that are leaking. nonpaged allocations are in the upper half of this word, paged allocations are in the lower half of this word.
    Debugging Details: ------------------
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT
    BUGCHECK_STR:  0xAB
    PROCESS_NAME:  csrss.exe
    CURRENT_IRQL:  0
    LAST_CONTROL_TRANSFER:  from fffff80060680506 to fffff800600fc040
    STACK_TEXT:  fffff880`05d059b8 fffff800`60680506 : 00000000`000000ab 00000000`00000001 00000000`000000f0 00000000`00000000 : nt!KeBugCheckEx fffff880`05d059c0 fffff800`603e8bb5 : fffff880`04983b40 00000000`00000000 fffff880`04983000 ffffffff`ffffffe6 : nt! ?? ::NNGAKEGL::`string'+0x36216 fffff880`05d05a10 fffff800`604a48b6 : 00000000`00000372 fffff880`04983000 fffffa80`090203c0 fffffa80`08fc4540 : nt!MiDereferenceSessionFinal+0xf1 fffff880`05d05a80 fffff800`604abe68 : fffff8a0`00142b00 00000000`00000000 00000000`00000001 00000000`00000001 : nt!MmCleanProcessAddressSpace+0x2be fffff880`05d05af0 fffff800`604ac55e : fffffa80`00000000 00000002`00000001 00000000`00000000 fffff8a0`00d0b8f0 : nt!PspExitThread+0x668 fffff880`05d05c10 fffff800`600e1dd6 : fffff800`60377180 00000000`00000080 fffffa80`090203c0 fffffa80`08fc4540 : nt!PspTerminateThreadByPointer+0x4e fffff880`05d05c60 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiStartSystemThread+0x16
    STACK_COMMAND:  kb
    FOLLOWUP_IP: nt! ?? ::NNGAKEGL::`string'+36216 fffff800`60680506 cc              int     3
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  nt! ?? ::NNGAKEGL::`string'+36216
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  5010ac4b
    FAILURE_BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    BUCKET_ID:  X64_0xAB_nt!_??_::NNGAKEGL::_string_+36216
    Followup: MachineOwner ---------

    Ok, the problem is generated by NVIDIA VIDEO DRIVER!
    Honesty I cant understand why LENOVO not choose for this machines a ivibridge CPU with HD4000 VIDEO, performance is similar, and Intel VIDEOS GPU, have 0 troubles, ATI AND NVIDIA always are very problematic.
    Anyway the solution is simple:
    1 Turn OFF windows update, or change to selective install.
    This prevent win update install NVIDIA driver in automatic way.
    2 Uninstall NVIDIA driver sand NVIDIA related stuff.
    3 Restart the machine, NOT POWER OFF, just restart.
    4 Now go to SYSTEM PROPERTIES > HARDWARE > DEVICE MANAGER
    INSIDE DISPLAY ADPATER NOW SELECT DISABLE THE DEFAULT VGA DRIVER, NOR UNINSTALL CHOOSE DISABLE!
    NOW RESTART.
    After restart now touchscreen work correctly, and next time you power off the machine, not have that ugly error all time.
    This not is a final solution is just a workaround until LENOVO/NVIDIA provide a final fix for this.

  • My 2009 macbookpro has begun running very slowly, apps freeze and pages hang ... i've run EtreCheck and there are problems but don't know how to sort

    my 2009 macbookpro has begun running very slowly, apps freeze and pages hang ... i've run EtreCheck and there are problems but don't know how to sort ... ran CleanMyMac and freed up about 30GB of space but didn't help ... ran AdwareMedic so that's been sorted but the other issues that came up on the EtreCheck I need help with however i can't figure out how to paste the results on this page

    thanks thomas ... here it comes
    EtreCheck version: 2.1.5 (108)
    Report generated December 29, 2014 at 5:03:07 PM GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (17-inch, Early 2009) (Verified)
        MacBook Pro - model: MacBookPro5,2
        1 2.66 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400M - VRAM: 256 MB
            Color LCD 1920 x 1200
        NVIDIA GeForce 9600M GT - VRAM: 512 MB
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Uptime: 0:5:36
    Disk Information: ℹ️
        FUJITSU MHZ2320BH FFS G1 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            [redacted]'s world too (disk0s2) / : 319.21 GB (30.39 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        MATSHITADVD-R   UJ-868 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Inc. iPhone
        Logitech USB Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple, Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Configuration files: ℹ️
        /etc/hosts - Count: 29 - Corrupt!
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Application Support/Roxio
        [not loaded]    com.roxio.TDIXController (1.7) [Support]
            /System/Library/Extensions
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriver (3.0) [Support]
            /System/Library/Extensions/KensingtonMouseDriver.kext/Contents/PlugIns
        [not loaded]    com.kensington.mouseworks.driver.ADBID32Mouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID32MouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4Mouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4MouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothOldHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.KMWUSBHIDMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.USBMouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouse (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouseX1 (3.0) [Support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriverX1 (3.0) [Support]
    Startup Items: ℹ️
        AdobeVersionCueCS2: Path: /Library/StartupItems/AdobeVersionCueCS2
        Firewall: Path: /Library/StartupItems/Firewall
        RetroRun: Path: /Library/StartupItems/RetroRun
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Support]
        [invalid?]    com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [invalid?]    com.adobe.SwitchBoard.plist [Support]
        [loaded]    com.adobe.versioncueCS3.plist [Support]
        [loaded]    com.adobe.versioncueCS4.plist [Support]
        [running]    com.atomicbird.macaroni.launchd.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Support]
        [invalid?]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.prosofteng.DriveGenius.locum.plist [Support]
        [loaded]    com.skype.skypeinstaller.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Support]
        [running]    com.prosofteng.DGMonitor.plist [Support]
        [running]    ws.agile.1PasswordAgent.plist [Support]
    User Login Items: ℹ️
        CNQL1210_ButtonManager    ApplicationHidden (/Library/CFMSupport/CNQL1210_ButtonManager.app)
        System Events    ApplicationHidden (/System/Library/CoreServices/System Events.app)
        Mail    Application (/Applications/Mail.app)
        Firefox    Application (/Applications/Firefox.app)
        AdobeResourceSynchronizer    ApplicationHidden (/Applications/Adobe Reader 9/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Calendar    Application (/Applications/Calendar.app)
        Skype    Application (/Applications/Skype.app)
        Dropbox    Application (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    ApplicationHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        MouseWorks Background    Application (/Library/Application Support/Kensington/MouseWorks.prefPane/Contents/Resources/Support/MouseWorks Background.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
        Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
        EPPEX Plugin: Version: 3.0.0.0 [Support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
        ContentUploaderPlugin: Version: 1.2 [Support]
        iPhotoPhotocast: Version: 7.0
        RealPlayer Plugin: Version: Unknown [Support]
        PDEPrint: Version: 2.0 [Support]
        DirectorShockwave: Version: 11.5.2r602 [Support]
        PDF Browser Plugin: Version: 2.4.2 - SDK 10.2 [Support]
        FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        CANONiMAGEGATEWAYDL: Version: 3.0.0.2 [Support]
        DivXBrowserPlugin: Version: 1.3 [Support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
        Google Earth Web Plug-in: Version: 6.0 [Support]
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
        OfficeLiveBrowserPlugin: Version: 12.3.6 [Support]
    User internet Plug-ins: ℹ️
        QuickTime Plugin: Version: 6.5.1
        fbplugin_1_0_0: Version: Unknown [Support]
    Safari Extensions: ℹ️
        Ultimate [Installed]
    3rd Party Preference Panes: ℹ️
        ASM  [Support]
        DivX  [Support]
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        Macaroni  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Destinations:
            G-DRIVE Mini [Local]
            Total size: 999.86 GB
            Total number of backups: 7
            Oldest backup: 2014-07-09 00:13:07 +0000
            Last backup: 2014-12-10 22:18:57 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
             6%    WindowServer
             3%    firefox
             1%    mds_stores
             0%    mdworker
             0%    Skype
    Top Processes by Memory: ℹ️
        348 MB    firefox
        137 MB    Skype
        122 MB    mds_stores
        120 MB    com.apple.IconServicesAgent
        73 MB    Dropbox
    Virtual Memory Information: ℹ️
        1.26 GB    Free RAM
        1.74 GB    Active RAM
        477 MB    Inactive RAM
        543 MB    Wired RAM
        503 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Dec 29, 2014, 04:58:09 PM    Self test - passed
        Dec 29, 2014, 10:58:04 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105804_[redacted].hang
        Dec 29, 2014, 10:54:33 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105433_[redacted].hang
        Dec 29, 2014, 10:52:33 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105233_[redacted].hang
        Dec 29, 2014, 10:50:24 AM    /Library/Logs/DiagnosticReports/Keychain Access_2014-12-29-105024_[redacted].hang
        Dec 29, 2014, 10:50:24 AM    /Library/Logs/DiagnosticReports/Skype_2014-12-29-105024_[redacted].hang

  • Acrobat Pro 6 Average Daily Production and Math.round problem

    Acrobat Pro 6 Average Daily Production and Math.round problem
    (Production.0) (154) (whole units) . (Production.1) (90) (fractional) / (divided by) 31 (days) results in (Average.0) (4)(whole units) . (Average.1) (10) (fractional) using :Math.round.� Noticed that 154 (whole units) . 85 through 99 (fractional) also show 4.10. (without Math.round : 5.00)
    Method:
    �Production.0� (whole units) . �Production .1� (fractional) / Days = (Average Daily Production) (�Average.0� (whole units) . (Average.1) (fractional)
    � Production.0 (value not calculated)�, � Production 1 (calculated) (event.value = util.printx("0099", (event.value)).substr(-2,2); � �Average.0 (value not calculate)�, and �Average.1 has following calculation:
    var punits = this.getField("Production.0");
    var pfrac = this.getField("Production.1");
    var average = 0.0;
    average = (punits.value + pfrac.value / 100) / this.getField("Days").value;
    this.getField("Average.0").value = average - average % 1;
    this.getField("Average.1").value = util.printx("0099", Math.round((average % 1 * 100))).substr(-2,2);
    �Math.round� appears to be a problem. Also, could you explain the purpose of �0099� . Anyway, why would 154.85 through 154.90 divided by 31 give 4,10. Also, their must be a better way, to find the average daily production. All you have to do is divided the production (whole. fractional) by the days, and display the average daily production as (whole. fractional). Any suggestions??

    There are a many loose ends in your question.
    First, I have never seen before a variable type called 'var'. Is it a java primitive or a class?
    Next, I cannot seem to find any class that has the printx method.
    When it comes to substr(-2,2), I get confused. First, I thought that it was a method of the String class, but I only got as far as substring(beginIndex, endIndex).
    If you really must break the production and average into pieces, try this:
    float average = (punits + pfrac/100) / days;
    int avg_units = (int)average;
    int avg_frac = (int)( (average - avg_units) * 100 );My guess is that util.printx("0099", x) formats x having two optional digits and two mandatory digits, showing 0-99 as 00-99, but allows to show numbers with three and four digits.
    154.85/31 = 4,9951612903225806451612903225806
    154.99/31= 4,9996774193548387096774193548387
    If you round the fraction of theese numbers multiplied by 100 ( = 99.51.. and 99.968...) you get 100, and this will be the output of printx. My guess for "4.10" is that substr(-2,2) returns the two first characters of the string, because the start index should not be zero. (According to java docs, substring throws an exception on a negative index, so what kind of class are you really using ??????)

  • Rh10 - HTML Help - linking to pdf shows when generate CHM and 'view results' but not when double-click on CHM in project folder or in product help

    I have several PDFs in Baggage Files that are linked to topics in the Table of Contents.  When I generate the CHM file and 'View Results' I am able to pull up/access the PDFs with no problem.  When I go into the project folder and just double-click on the CHM file, I cannot pull up/access any of the PDFs nor can I access them in the product help.  Any ideas?  Is a setting "off" somewhere in my project?
    I am using RoboHelp 10.
    Thanks!

    eeddings wrote:
    Thanks for the idea, but I can't switch the project to WebHelp.  This .chm project consists of a master project with 18 slave projects and a slew of remote jumps.  I'd have to recreate all of the remote jumps if I switch to WebHelp.
    Hopefully Adobe can fix this issue.
    Well, first off, even though it would be WebHelp, it would be inside a CHM container. So for all intents and purposes it would be a CHM file. But having said that, I'm not sure there is a way to merge these hybrid types of CHM files.
    If your statement about Adobe fixing the issue is meaning that they can either remove the Print icon from the CHM Viewer, I wouldn't hold my breath because as I said, that's in Microsoft's lap and they haven't updated the CHM viewer in a long while. Doubtful they ever will.
    The only hope would then be for Adobe to update the code used for the Mini TOC. The only way that will happen is if enough folks submit this as a bug via the following link:
    http://www.adobe.com/go/wish
    Until that would happen, your likely best bet is to simply avoid using the Mini-TOC feature or just insert a warning that if the topic is printed, it will cause issues. Or, you could use bookmarks and links to establish your own verision of a "Mini-TOC"
    Cheers... Rick

  • Z77A-GD65 ram and DR. mos problem after 2 years without any HW change or OC!

    Hi guys, i have three Z77A-GD65 from 2 years with the same hardware config, no overclock or others OC settings ....simply default bios settings;  in this last 2 months, not at the same time, all of my 3 mainboards  have the same identical problem.
    One day, from nowhere, without any reason, i start my pc and mobo don't start, hangs with code 55 ( memory error) and Dr mos alarm led goes on, i try to reset bios .. nothing.
    I Switch multibios to "B" bios and works perfectly .. i've tested all of RAM modules and result works perfectly !! .... all of three mainboards have the same identical problem!!
    Now i use all my 3 PCs with "B" bios and works perfectly, because "A" bios hangs always with code 55 and with Dr. mos alarm led on, i try to update and downgrade "A" bios ... nothing to do ... "A" bios don't work anymore.
    Any idea?

    Quote from: Nichrome on 19-July-14, 02:32:51
    Don't have to be rude 
    If same problem is on 3 motherboards then is something wrong with RAM or BIOS not the motherboard
    >>Posting Guide<< Reminding again if you want to receive any help.
    Nichrome, you misunderstood! ... I just responded to your affirmation .. that's all, it was not my intention to was "rude" as you wrote! OK? 
    Ram  modules have been tested on other Asus mainboard  .. .. no read/write errors and no hangs problems ... so all Ram modules are fine
    About bios ..... maybe primary bios is physically damaged.... i try to reflash bios also with old version .. no way .. maybe primary bios damage in all 3 mainboards  !! very strange!!! ... you know if there's a know manufacturing defect on this MB bios maybe on a particular MB serial part number? because i bought all 3 mainboards at same time about 2 years ago.
    Quote from: Sea Dog on 19-July-14, 02:40:52
    Obviously, there is 'something' that has caused BIOS corruption in all 3 mainboards A chips. Whatever that 'something' is, it may happen to the backup B chips as well. Recommend to concentrate on finding this 'something', what the common denominator is, and restoring BIOS chips A before the mainboards may become expensive paperweights. A shop with an SPI flash programmer device can fix the broken BIOS chips if not comfortable with doing the recovery procedure yourself.
    Hi, yes i agree,  In fact, my fear is to have, in a while, these mainboard totally unusable!  ..... i think that primary bios is physically damaged or i hope, software damaged, I would try to recover it,  if it's only a software problem (i hope so) ... do you know a procedure to completely erase cleanly that reflash the primary bios? i try to use dos MSI flash utility with "/p /b /n" options .. no success to restore A bios ... same story ... error 55 and DR-mos alarm led on.

  • I've updated my Firefox to 6.0.1 and now have problems when viewing/accessing one of Software Vendors. How can I undo that latest update?

    I am trying to access my Template on Proxibid's Auctioneer website and the Firefox screen goes away, showing me my wallpaper, then it comes back and says Firefox is not responding, then it suddenly displays a full screen of HTML. I spoke with Proxibid - they suggest I undo the latest update, as this problem began after that update. I need to know how to do that.
    IE works on the Proxibid site, but I REALLY don't want to use it...

    Purplehiddledog wrote:
    I do backup with iCloud.  I can't wait until the new iMac is available so that I can once again have my files in more than 1 location without needing to rely solely on the cloud. 
    I also rely on iTunes and my MacBook and Time Machine as well as backing up to iCloud. I know many users know have gone totally PC free, but I chose to use iCloud merely as my third backup.
    I assume that the restore would result in my ability to open Pages and Numbers and fix the problem with deleting apps, but this would also mean that if my Numbers documents still exist solely within the app and are just not on iCloud for some reason that they would be gone forever.  Is that right?
    In a word, yes. In a little more detail.... When you restore from an iCloud backup, you must erase the device and start all over again. There is no other way to access the backup in iCloud without erasing the device. Consequently, you are starting all over again. Therefore, it would also be my assumption that Pages and Numbers will work again and that the deleting apps issues would be fixed as well.
    If the documents are not in the backup, and you do not have a backup elsewhere, the documents could be gone forever.

  • PDF and Preview related problems

    Hi:
    A user in our office (MacBook Pro, v10.5.6) is having difficulty viewing and creating PDF files. To wit:
    --Opening a PDF file results in a morass of symbols throughout.
    --Opening a PDF file may show exclamation points substituted for tab characters.
    Some other files appear to be just fine using Preview, and occasionally the latter of the two above will open and appear to be just fine and dandy. The files appear to be just fine on another Mac.
    The two files appear correctly when viewed with Adobe Reader 9.0.
    Also:
    --Creating a PDF file may result in exclamation points substituted for tab characters.
    I tried a full system software archive and install...no luck.
    I tried deleting the Adobe Reader and Preview preferences files...no luck.
    I dragged and dropped a copy of Preview (v4.1) from my computer to hers...no luck.
    I created a Second User, and the previously mangled PDF files open and appear to be just fine. I can also create PDF files that are true to their source document (no exclamation points for tab characters). I did only limited testing of this; however I did use the files above and created a new PDF file using the original source document. No problems.
    I don't believe this is a missing font problem.
    So that makes me think there's something wrong in the user's home directory with Preview and the PDF creation process. Some preference file or something.
    Before I go ahead and move my data over to a new home directory...
    1. Has anyone seen this before?
    2. Has anyone fixed this before?
    3. How do I know which files to move to the new home directory and which (corrupted ones) to leave behind..if that indeed is the fix?
    4. How do I know that the creation problem doesn't extend beyond this user, and that I wasn't just lucky when Second User's PDF-created file was fine?
    TIA,
    mm

    You need to resolve the conflict/corruption in the original account. This can be a laborious process, but is guaranteed to resolve the problem. While logged into the newly created account (if it's an admin account; otherwise create a new one), backup the bad account's folder (to another volume, partition, or disk), delete the bad account, selecting the save data option (which is stored in /Users/Deleted Users/ as a disk image), recreate the bad account using the same username/password combo, log out and back into the recreated original account. Run Preview and, If the problem's solved (which it should be), open the saved data dmg file in /Users/Deleted Users/, open the /Library/Preferences/ folder from the saved data, open the current /Users/restored account/Library/Preferences/ folder, and slowly copy plist files from the saved data folder to the current one that don't exist in it, keeping track of what you're moving to the new account so you can remove them if you encounter problems in the next step. Log out and back in to ensure there's no conflict and things still work correctly. Good luck.

  • I tried to update my nephew iphone 4 version 4.3.4 (8k2), I did back-up everything before attempting to update and the result when I click down-load and update, it does not update instead it says,  itunes could not contact the iphone software update etc.

    Hi to all,
    I tried to update my nephew iphone 4 version 4.3.4 (8k2), I did back-up everything before attempting to update and the result when I click down-load and update, it does not update instead it says,  itunes could not contact the iphone software update server because you are not connected to the internet. I did check my wire-less connections and the connection from my PC to wire-less is hundred percent okay. I did search using google.com to confirm and my connections is good. Is there any problem regardings my firewalls or any help will be appreciated. Thanks

    Hi bosefire,
    Thanks for visiting Apple Support Communities.
    You can use the steps in this article to troubleshoot your iTunes connection:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Regards,
    Jeremy

  • Tough Problem: This action cannot be completed because the other program is busy. Choose 'Switch To' to activate the busy program and correct the problem

    Please, please help us!
    We have an intermitant problem which is badly affecting a group of our users.  Can anyone help identify what SERVER this message is talking about???
    Details:  CF-19 Panasonic Tough Book, McAfee Enterprise 8.7i, Windows XP 2005 Tablet Ed. SP3. 
    Problem at login intermittantly we get a unmanagable/unresponsive window stating the following:
    Window Name:  Server Busy
    Text:  This action cannot be completed because the other program is busy.  Choose ‘Switch To’ to activate the busy program and correct the problem
    Buttons:  Switch To, Retry, Cancel (Grayed out)
    Event Viewer Message:
    Source: DCOM, Type Error,
    Description:  The server
    {D6E88812-F325-4DC1-BBC7-23076618E58D} plus others with {6B19643A-0CD7-4563-B710-BDC191FCAD3B} did not register
    with DCOM within the required timeout.
    I searched the registry for {D63.....} and found keys relating to "TCServer.exe"  Little info available.  But found 
    ((KB895953 - Memory Leak in Windows XP Tablet PC Edition )) but this seems related to a pre SP3 update....  we have SP3 installed can I still install this patch?
    I searched {6B1....} and found keys relating to "TSFManager".  Again little information available.
    How can I identify the servers with the long {XXXXXXXXX} keys, and what is tcserver.exe?
    Please help,
    Tony Heslington.

    Hi,
    If the problematic XP PC is in a domain, please provide us more information on it, such as how many DCs, member servers and the OS versions. Does the error only
    occur on one XP PC? Does the issue occur when logging on as some certain users? When did the issue begin to occur? Have you installed software, hardware or updates recently?
    Please check whether the error occurs in Clean Boot mode.
    1. Click "Start", go to "Run", and type "msconfig" in the open box to start the System Configuration Utility.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click Disable All (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    4. Restart your computer. If the "System Configuration Utility" window appears, please check the box and click "OK".
    What is the result? For further assistance, please help gather the following information for research:
    Event log
    =========
    1. Click "Start", click “Run”, input "eventvwr" and press Enter.
    2. Expand the "Windows Logs" node on the left pane, right-click on "Application" and click "Save All Events As"; in the pop-up window, click to choose the Desktop
    icon on the left frame, input "app" in the "File name" blank, and then click save.
    3. Right click on "System", with the same method, save it as "sys".
    4. Locate the two saved log files on the Desktop and send them to us.
    Collect HiJackThis log
    ==============
    1. Please download HijackThis from the following link:
    http://www.techspot.com/download317.html
    HijackThis is a tool to collect some system settings information which is useful for further troubleshooting.
    Please Note: The third-party products discussed here are manufactured by vendors independent of Microsoft. We make no warranty, implied or otherwise, regarding
    these products' performance or reliability.
    2. Right click the downloaded “HJTInstall.exe” file and choose "Run as administrator".
    Provide administrator password or click “Allow” if you are prompted to do so.
    3. Click the "Do a system scan and save a logfile" Button.
    4. A Notepad window will appear, please click “File”, “Save As...” to save it as HJT.log (or other file name you like) on the Desktop
    and sent it to us.
    Upload these file to the following workspace.
    You can upload the information files to the following link. 
    (Please choose "Send Files to Microsoft")
    Workspace URL: (https://sftus.one.microsoft.com/choosetransfer.aspx?key=900ac54d-301d-42da-876d-4546dc81a342)
    Password: Y^dh$J1KR2u%UKL
    Note: Due to differences in text formatting with various email clients, the workspace link above may appear to be broken. Please be sure to include all text
    between '(' and ')' when typing or copying the workspace link into your browser. Meanwhile, please note that files uploaded for more than 72 hours will be deleted automatically. Please ensure to notify me timely after you have uploaded the files. Thank you
    for your understanding.
    Thanks.
    Nina
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • MAX and GROUP BY Problem

    Hi I am trying to execute the following query using an OracleCommand:
    SELECT P.Name,P.Version,P.AssemblyName,P.AssemblyVersion FROM Plugin P
    JOIN (SELECT Name,MAX(Version) AS Version FROM Plugin WHERE Disabled=0 GROUP BY Name) D ON P.Name=D.Name AND P.Version=D.Version
    ORDER BY CASE WHEN P.AssemblyName LIKE '%resources%' THEN 0 ELSE 1 END
    Every time I run it I get the following exception:
    ORA-00979: not a GROUP BY expression
    However when I run this in SQL Developer no error is returned and the results are as expected.

    Hi,
    On Further investigation I have found the problem lies in the LIKE statement, when the '%' are present the error is produced. However on removing the '%' no exception is raised, for example:
    SELECT P.Name,P.Version,P.AssemblyName,P.AssemblyVersion FROM Plugin P
    JOIN (SELECT Name,MAX(Version) AS Version FROM Plugin WHERE Disabled=0 GROUP BY Name) D ON P.Name=D.Name AND P.Version=D.Version
    ORDER BY CASE WHEN AssemblyName LIKE '%resources%' THEN 0 ELSE 1 END
    Error: ORA-00979: not a GROUP BY expression
    This is an extract from the trace file:
    Trace file c:\app\tim\diag\rdbms\orcl\orcl\trace\orcl_ora_2560.trc
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Windows NT Version V5.2 Service Pack 2
    CPU : 1 - type 586, 1 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:1037M/2047M, Ph+PgF:1876M/2669M, VA:1271M/2047M
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 38
    Windows thread id: 2560, image: ORACLE.EXE (SHAD)
    *** 2008-10-01 11:48:22.234
    *** CLIENT ID:() 2008-10-01 11:48:22.234
    *** SERVICE NAME:() 2008-10-01 11:48:22.234
    *** MODULE NAME:() 2008-10-01 11:48:22.234
    *** ACTION NAME:() 2008-10-01 11:48:22.234
    opiino: Attach failed due to ORA-12537
    Trace file c:\app\tim\diag\rdbms\orcl\orcl\trace\orcl_ora_2560.trc
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Windows NT Version V5.2 Service Pack 2
    CPU : 1 - type 586, 1 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:912M/2047M, Ph+PgF:1699M/2669M, VA:1224M/2047M
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 30
    Windows thread id: 2560, image: ORACLE.EXE (SHAD)
    *** 2008-10-09 10:25:57.482
    *** SESSION ID:(133.7753) 2008-10-09 10:25:57.482
    *** CLIENT ID:() 2008-10-09 10:25:57.482
    *** SERVICE NAME:(orcl) 2008-10-09 10:25:57.482
    *** MODULE NAME:(WindowsFormsApplication1.vshost.exe) 2008-10-09 10:25:57.482
    *** ACTION NAME:() 2008-10-09 10:25:57.482
    XCTEND rlbk=0, rd_only=1
    WAIT #3: nam='SQL*Net message to client' ela= 33 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156669369456
    *** 2008-10-09 10:25:58.042
    WAIT #3: nam='SQL*Net message from client' ela= 561231 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156669930768
    =====================
    PARSING IN CURSOR #3 len=168 dep=1 uid=52 oct=47 lid=52 tim=156669947688 hv=337957580 ad='29fe2fa8' sqlid='a6u3yjca29nqc'
    declare
    m_stmt varchar2(512);
    begin
    m_stmt:='delete from sdo_geor_ddl__table$$';
    EXECUTE IMMEDIATE m_stmt;
    EXCEPTION
    WHEN OTHERS THEN
    NULL;
    end;
    END OF STMT
    PARSE #3:c=0,e=368,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,tim=156669945936
    BINDS #3:
    =====================
    PARSING IN CURSOR #5 len=33 dep=2 uid=52 oct=7 lid=52 tim=156669958521 hv=1949913731 ad='29fe2cd8' sqlid='3972rvxu3knn3'
    delete from sdo_geor_ddl__table$$
    END OF STMT
    PARSE #5:c=0,e=99,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=156669958489
    BINDS #5:
    EXEC #5:c=0,e=339,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=156669958974
    STAT #5 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us)'
    STAT #5 id=2 cnt=0 pid=1 pos=1 obj=62986 op='TABLE ACCESS FULL SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)'
    EXEC #3:c=0,e=1165,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,tim=156669959224
    XCTEND rlbk=0, rd_only=1
    WAIT #4: nam='SQL*Net break/reset to client' ela= 35 driver id=1413697536 break?=1 p3=0 obj#=-1 tim=156669959556
    WAIT #4: nam='SQL*Net break/reset to client' ela= 794 driver id=1413697536 break?=0 p3=0 obj#=-1 tim=156669960406
    WAIT #4: nam='SQL*Net message to client' ela= 28 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156669960506
    *** 2008-10-09 10:26:00.585
    WAIT #4: nam='SQL*Net message from client' ela= 2468066 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156672428682
    =====================
    PARSING IN CURSOR #5 len=168 dep=1 uid=52 oct=47 lid=52 tim=156672446116 hv=337957580 ad='29fe2fa8' sqlid='a6u3yjca29nqc'
    declare
    m_stmt varchar2(512);
    begin
    m_stmt:='delete from sdo_geor_ddl__table$$';
    EXECUTE IMMEDIATE m_stmt;
    EXCEPTION
    WHEN OTHERS THEN
    NULL;
    end;
    END OF STMT
    PARSE #5:c=0,e=101,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,tim=156672446082
    BINDS #5:
    =====================
    PARSING IN CURSOR #3 len=33 dep=2 uid=52 oct=7 lid=52 tim=156672446966 hv=1949913731 ad='29fe2cd8' sqlid='3972rvxu3knn3'
    delete from sdo_geor_ddl__table$$
    END OF STMT
    PARSE #3:c=0,e=99,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=156672446935
    BINDS #3:
    EXEC #3:c=0,e=345,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=1,tim=156672447601
    STAT #3 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us)'
    STAT #3 id=2 cnt=0 pid=1 pos=1 obj=62986 op='TABLE ACCESS FULL SDO_GEOR_DDL__TABLE$$ (cr=0 pr=0 pw=0 time=0 us cost=2 size=0 card=1)'
    EXEC #5:c=0,e=1319,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,tim=156672447883
    XCTEND rlbk=0, rd_only=1
    WAIT #4: nam='SQL*Net break/reset to client' ela= 33 driver id=1413697536 break?=1 p3=0 obj#=-1 tim=156672448189
    WAIT #4: nam='SQL*Net break/reset to client' ela= 746 driver id=1413697536 break?=0 p3=0 obj#=-1 tim=156672448992
    WAIT #4: nam='SQL*Net message to client' ela= 32 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156672449093
    *** 2008-10-09 10:26:05.561
    WAIT #4: nam='SQL*Net message from client' ela= 4958604 driver id=1413697536 #bytes=1 p3=0 obj#=-1 tim=156677407767
    =====================
    PARSING IN CURSOR #3 len=55 dep=0 uid=86 oct=42 lid=86 tim=156677408531 hv=2217940283 ad='0' sqlid='06nvwn223659v'
    alter session set events '10046 trace name context off'
    END OF STMT
    PARSE #3:c=0,e=168,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=156677408498
    EXEC #3:c=0,e=933,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=156677409605
    Removing the '%'
    SELECT P.Name,P.Version,P.AssemblyName,P.AssemblyVersion FROM Plugin P
    JOIN (SELECT Name,MAX(Version) AS Version FROM Plugin WHERE Disabled=0 GROUP BY Name) D ON P.Name=D.Name AND P.Version=D.Version
    ORDER BY CASE WHEN AssemblyName LIKE 'resources' THEN 0 ELSE 1 END
    Error: None
    Then i tried just having the ORDER BY without the JOIN
    SELECT P.Name,P.Version,P.AssemblyName,P.AssemblyVersion FROM Plugin P
    ORDER BY CASE WHEN AssemblyName LIKE '%resources%' THEN 0 ELSE 1 END
    Error: None
    So the problem seems to lie in having a GROUP BY with a LIKE in ORDERBY. Has anyone got any idea on what may be causing this?
    Edited by: rishi@invar on Oct 9, 2008 10:18 AM
    Edited by: rishi@invar on Oct 9, 2008 10:27 AM

Maybe you are looking for

  • My iPod Classic (160GB, 2009, 7th Gen.) will NOT output video to the TV.

    I hook it up with the Composite AV cable (MC748ZM/A) and set the TV Out to "on", but it won't play.  It just says "Please Connect Video Accessory".  I've actually tried this on two iPods (identical models) and I get the same result on both ipods.  I'

  • Safari crash lion 10.7

    I have installed Lion and getting the following error, i can't tell why since it doesn't mention any other plugins, etc.  I tried creating a new user and the problem persists. Also having a similar crash on launch issue with Mail but I use Outlook, j

  • Mail: postfix/pipe : warning: pipe_command_write: write time limit ..

    Anyone run into the following situation: 1) "postfix/pipe : warning: pipecommandwrite: write time limit exceeded" error messages start showing up in system.log 2) The postfix queue starts filling up with mail to be delivered for a particular user. Us

  • Background of JMenuBar isn't set on Mac Leopard

    I develop the applet and I want to change the color of JMenuBar background in Black color, so I use menuBar.setBackground(Color.BLACK) But on Mac 10.5. Leopard the menuBar is not in BLACK color, it is in default gray color. On other OS(Win XP, Mac Ti

  • Lightroom 5.3 funktioniert nicht richtig

    Hallo, seit ein paar tagen funktioniert mein lightroom nicht mehr.....ich kann weder radialfilter nocht sonstige filter lassen sich aufrufen, auch die bearbeitung der bilder geht sehr langsam voran. alles erst seit vorgestern!!! was könnte dies sein?