How to query this performance internally

Dear all,

This query selects the nth highest paid employee details, we can achieve this by rank or desnse_rank functions also
But these execution is easily understandable. But not able to understand how this below a correlated subquery Iam running in-house. Please help me on this query
Select * from emp where & n = (select count (distinnct b.sal) of emp b where a.sal < = b.sal)

Thanks in advance

Hello

To facilitate understanding, I prefer it written this way:

select * from emp a where (select count(distinct b.sal) from emp b where a.sal<=b.sal) = &n ;

It means then:
Select the lines of the emp table for which the number of distinct lower wages is n.
In other words => for each lines of the PGE, it counts the number of distinct treatments that are below the current line; If the number is & n, the current emp lines is displayed

Tags: Database

Similar Questions

  • How to query this result?

    with main as (

    Select '-1' kisi, '10' thread from dual

    Select '-1', '20' from dual

    Select '-1', '30' from dual

    Select '5', '40' from dual

    Select '-1', '50' from dual

    Select '-1', '60' from dual

    Select '4', '70' from dual

    Select '4', '80' from dual

    Select '-1', '90' from dual

    Select '-1', '99' from dual order by 2)

    Select Kisi , thread from main order by thread;

    Result must be




       

    Kisi
    min_threadmax_thread-1103054040-1506047080-19099

    If you do not have a sort column:

    with the hand in the form)

    Select kisi '-1', '10' double thread.

    Union all select '-1 ', ' 20' double '.

    Union all select '-1 ', ' 30' double '.

    Union all select '5', '40' double

    Union all select '-1 ', ' 50' double '.

    Union all select '-1 ', ' 60' double '.

    Union select all '4', '70' from dual

    Union select all '4', '80' of the double

    Union select all '-1 ', ' 90' the double '.

    Union select all "(-1 ', ' 99' double ordering by 2).

    Select kisi, min (thread), max (thread) in)

    Select sum (flag) on grp wire, kisi, (drive by wire)

    de)

    Select decode (kisi, lag (kisi) over (order by wire), 0, 1) flag

    kisi

    wire

    of the hand

    )

    )

    Grp group, kisi;

  • How to improve the performance of this loop?

    Hello

    I have this code below performs a loop on both issues, which compares the files in them. The performance is bad. Can someone tell me how to accomplish this task in an effective way?
    Please note that both folders can be on the network and most often contains 5000 + files.
    for (int i = 0; i < sourceList.length; i++) {
    for (int j = 0; j < targetList.length; j++) {
        if (sourceList.getName().equalsIgnoreCase(targetList[j].getName())) {
    if (sourceList[i].lastModified() > targetList[j].lastModified())
    {
    newInSourceList.add(sourceList[i]); //ArrayList 1
    }
    else if(sourceList[i].lastModified() < targetList[j].lastModified())
    {
    newInTargetList.add(targetList[j]); //ArrayList 2
    }
    }
    }
    }


    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    This minute is spent for the most part between the two points I mentioned below (Point A & B).

    I guess time will especially isFile() calls. That should make a stat() system call, which calls the network file server.

    If you can target Java 7 and greater, you can use the new java.nio.file and BasicFileAttributes. Allows you to extract the data to stat() each file in a single call, so that lastModified() and isFile() must separate calls to the file server. It will not yet be fast like lightning, but maybe almost 2 x faster - I think that all other treatments are overshadowed by calls on the network.

        // Read file attributes to a list (or use a Map if you prefer)
        String files[] = new File(Directory).list();
        BasicFileAttributes attributes[] = new BasicFileAttributes[files.length];
        for (int n = 0; n < files.length; n++)
            attributes[n] = Files.readAttributes(Paths.get(directory, files[n]), BasicFileAttributes.class);
    
        // Now you can use
        attributes[n].lastModifiedTime()
        attributes[n].isRegularFile()
        // etc without each call hitting the file server.
    
  • No idea how to write this query

    Hi, My Data is as below

    DocNum doc_date type of amount
    1154 15 November 11 232501.5 invoice
    200206 4 November 11 - 243672.64 credit memo
    Note flow 111 5 November 555.22 11

    Output must be

    DocNum doc_date amount Type AmountDR AmountCR
    1154 232501.5 15 November 11 Bill 232501.5
    Note credit 200206 4 November 11 - 243672.64 - 243672.64
    Note flow 111 5 November 555.22 11 555.22

    If the amount is > 0, then it must be displayed in the value of the amount to be AmountDR
    If amount < 0 then it must be displayed in the value of the sum amount CR



    Can help how to write this query
    with sample_table as (
                          select 1154 Docnum,date '2011-11-15' doc_date,232501.5 Amount,'Invoice' type from dual union all
                          select 200206,date '2011-11-04',-243672.64,'Credit Memo' from dual union all
                          select 111,date '2011-11-05',555.22,'Debit Memo' from dual
                         )
    select  Docnum,
            doc_date,
            Amount,
            type,
            case
              when Amount >= 0 then Amount
            end AmountDR,
            case
              when Amount < 0 then Amount
            end AmountCR
      from  sample_table
    /
    
        DOCNUM DOC_DATE      AMOUNT TYPE          AMOUNTDR   AMOUNTCR
    ---------- --------- ---------- ----------- ---------- ----------
          1154 15-NOV-11   232501.5 Invoice       232501.5
        200206 04-NOV-11 -243672.64 Credit Memo            -243672.64
           111 05-NOV-11     555.22 Debit Memo      555.22
    
    SQL> 
    

    SY.

  • "Acoustic active Management. Performance may be impaired"- how to fix this problem of HD with Windows 7?

    "Physical disks.
    Analysis...
    WARNING 3103: Seagate ST31000524AS (1 TB, SATA600, 3.5 ", 7200 RPM) (c): Acoustic Management enabled. Performance may be compromised.
    ' Completed successfully: Yes.

    How fix/improve your performance HD under Windows 7? -5.9 score... :-(

    You are unlikely to improve your HD experience index

    The Accustic management is not supported by Seagate, you can consult Seagate website to see if there is no update firmware

  • How do I resolve this error internal export?

    Whenever I have export the photos on my hard drive, there is always an error message appears at the end of the export of the shows:

    Untitled.jpg

    Anyone know how to fix this? It troubled me for a long time...

    Any response would be much appreciated!

    It is more likely that the message Processing/After Export field is empty, which is not valid and generates the error message. There is a minor bug LR4, which seems to have touched a lot of people. Simple answer is to enter a valid action (such as "do nothing") and the problem should be solved.

  • How ot do this query

    some of you that it won't be easy, but for a rookie plsql is not form. Can U help?

    want to find out who has max (salary) and record that information in a variable

    Table: used
    id  salary
    1    2000
    2    2500
    3    1800
    Select max (salary) in employee == > back 2500
    But how to write this in a plsql and find the id is 3 and save it in a variable


    my incomplete statement:

    Select max (salary), in myvar to employee where id =?

    can you help me?

    Oh and save it in a variable plsql:

    declare my_var emp.empno%TYPE;
    begin
      select e1.empno into my_var
      from emp e1
      where e1.sal = (select max(e2.sal) from emp e2)
        and rownum = 1;
    end;
    /
    
  • How to solve an error internal

    Apex 5.0.

    Page 301 is an interactive report based on a join of multiple tables stored as a point of view.

    The link attribute called Page 302, from 3 ID values for the elements of page P302.

    Page 302 is a form of single-row using one of the 3 ID values as a primary key in the source table.

    This is accomplished by a generated, pre-rendered, after the header, Line of SSN_LINKprocess.

    Display only the values of the form are obtained by a second process after the header of pre-rendering,.

    This is a SQL query made by hand using two other ID values as a key compound in a table

    another database using a database link. (The 2nd data base is local, but on another device of DB).

    The call to the Page 302 works gently until we begin to use the filter on the interactive report.

    After filtering the report to a more specific list of people, the first call to the Page 302 will fail with an internal error.

    Back in the browser (Chrome) and retry the link works perfectly.

    Other links in the filtered list even work perfectly.

    But when the filter is removed, the first attempt to make a link to the Page 302 fails with the same internal error.

    Then, back in the browser and retry the link works perfectly.

    What toggles interactive report filter?

    Here's the technical info internal error, which I do not know how to interpret it:

    Internal error

    Contact your administrator for the application.

    http://cobra1:8081/i/htmldb/builder/rollup_minus_dgray.gifTechnical information (only visible to developers)
    • is_internal_error: true
    • apex_error_code: APEX. ERROR. INTERNAL
    • Component.type: APEX_APPLICATION_PAGE_REGIONS
    • Component.ID: 2554504249580925
    • error_backtrace: - stack of PL/SQL calls.
    • the line object
    • serial number of handle
    • package body 641 0xd3b3b4e0 APEX_050000.WWV_FLOW_ERROR
    • package body 709 0xd3b3b4e0 APEX_050000.WWV_FLOW_ERROR
    • body of 0xd3b3b4e0 1013 package APEX_050000.WWV_FLOW_ERROR
    • body of 0xd3b3b4e0 1106 package APEX_050000.WWV_FLOW_ERROR
    • 0xc0488c18 body 1749 package APEX_050000.WWV_FLOW_PLUGIN
    • package body 2622 0xc0488c18 APEX_050000.WWV_FLOW_PLUGIN
    • 0xd3a800f0 body 4535 package APEX_050000.WWV_FLOW
    • 0xc093e170 173 APEX_050000.F procedure
    • 0xcc2b4fc0 30 anonymous block

    Continuing to probe without a lot of guidance, the culprit was discovered. To simplify the generic question how to go about debugging and maybe understand package WWV_FLOW obscured, calls I left a piece of the change in the URL. When the checksum (& cs) change, there is also a PLUGIN B2C8 =... argument (64 alphanumeric characters) in the f? parameter p! It is in the position that is delimited by colons for the value of the REQUEST in the call to the page. This is the interactive report acts differently and tries to provide a useless APPLICATION to me. So my pages may not rely on the default substitution parameter and I need to redevelop a method by which the sequence of page 301-302 knows where it comes from. (Sometimes the breadcrumb will be pages 1-301-302 and other times 501-301-302, and there are 2 components of bread crumbs different pages 301 and 302).

    So in this case, the internal error was not disclosed as a bad value of the APPLICATION, but the problem has been identified by searches on parameters and arguments to the/f? p URL. As Microsoft said, "an error occurred."

  • Norton Internet Security firewall blocking firefox ver 36.0.1, how to fix this?

    I have the latest version of Norton Internet Security on a windows 8.1. Firefox version 36.0 works very well. Version 36.0.1 is blocked by Norton. I have reset the firewall instructions of Norton, but that did not help. I started Firefox worm 36.0 but whenever I restart the computer, Firefox updates and I'm back to square one. Does anyone know how to fix this?

    https://support.Mozilla.org/en-us/questions/1048938
    Firefox takes two more minutes to load, the apparent clash with Norton Internet Security

    Norton showed where things Autoprotect exclude them
    Open Norton administrative settings. Under performance, monitoring
    find program Exclusions. To his right-wing press, the configures + link.

    You will need to add each program one at a time from Mozilla Firefox
    Mozilla maintenance service< Windows > folders and...

  • Updated the macbook pro of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    Updated macbook pro today for the latest version of el capitan and now will not start. Instead, I get the error message "your computer restarted due to a problem". Someone at - it suggestions on how to solve this problem?

    It would be helpful to post what the screen says.

    -Try to reset memory NVRAM/PRAM and SMC

    MacIntel: Reset of the controller (SMC) system management

    https://support.Apple.com/en-us/HT201295

    Subject of memory NVRAM and PRAM

    https://support.Apple.com/en-us/HT204063

    -Try to start safe mode

    OS x: what is Safe Boot, Safe Mode?

    https://support.Apple.com/en-us/HT201262

    -Start to recovery and repair the startup disk

    OS X: on OS X Recovery - Apple Support

    https://support.Apple.com/en-us/HT201314

    -If it is repairable reinstall the OSX

    How to reinstall OS X on your Mac - Apple Support

    https://support.Apple.com/en-us/HT204904

    -If you do not have a backup using disk utility to restore the internal drive to an external drive, so that you can try to recover the data.

  • How can I connect my internal microphone Satellite M40?

    Can someone tell me how can I connect my internal mic in my Satellite M40?

    The manual says there is one, but I tried to record voices and the use of Skype, but nothing is recorded... I've tried to change the settings on audio devices, but nothing happens. Please help, I really need.
    Thank you

    Hello

    Well, check in the settings sounds and Audio--> Audio devices.
    In the section sound recording press the volume key. Check if the Microphone is selected.
    Check the advanced settings. In this section, the internal microphone must be marked.

    Good bye

  • How to install this update and resolve problems of USB and the touchpad?

    I Equium M50 (59th) and am bitten by an update that pulled my touchpad and keyboard. I did the new installation of XP Home and have all updated drivers and everything goes well. The last update, what I can't understand is for
    Ana _2005_10_24_V1.2 driver is for, Standard Open HCD USB Host Controller... X 2 .........

    The update addresses all kinds of questions like I'm having and is an update recommended driver detective, I use offten.

    The problem is that it says uninstall the drivers for the i have installed already and when I do it it hits off my USB mouse me leaving no able to install the new. When I reboot it installs those I don't want not reinstalled.

    This is the read me, off the coast of the new update and really I don't understand to underdstand what to do... .so here it is?
    Driver revision history:
    Twinhan VP704A Driver Release Notes
    -------------------------------------------------------------------------------
    Note:
    1. in the event that the system hangs when running with VP704A, please install ULI
    Host USB 2.0 in \ULiUSB20Driver driver

    2. for XP/SP1, please update with the patch in

    3. in XP/SP1, update driver will crash the system, while the new facility is ok.
    The trick to update driver XP/SP1 is illustrated in the following steps,
    a. uninstall the driver
    b. disconnect and reconnect the USB device
    c. install the driver
    4 to support the controller remotely, please launch Agent.exe in \Agent.
    Further details at \Agent\Readme.txt

    Known issues:
    1 multi-instance is not supported
    2 remote wakeup is not supported
    3. strong use of the processor from analog video/audio capture
    4. bad Signal using color YUY2 format IST
    5 AV sync if audio captured the wrong filter.
    (Difficulty: use the filter "USB Audio Device" in the flow WDM capture device)
    6. noise with analog TV and FM Radio
    (Difficulty: use the filter "USB Audio Device" in the flow WDM capture device)

    Driver revision history:
    -------------------------------------------------------------------------------
    2005-10-24, version: 1.0.2.8
    Bugs fixed and new features:
    1 is not correctly configured.
    -------------------------------------------------------------------------------
    2005-10-21, version: 1.0.2.7
    Bugs fixed and new features:
    1. the firmware version read FLASH OK!
    -------------------------------------------------------------------------------
    2005-10-14, version: 1.0.2.6
    Bugs fixed and new features:
    1.MUtil - access driver empty part lower part of screen when IST!
    2.MUtil - access HCT pilot check fix crash!
    -------------------------------------------------------------------------------
    2005-10-07, version: 1.0.2.5
    Bugs fixed and new features:
    1 tuner turns off when S-Video, Composite.
    -------------------------------------------------------------------------------
    30/09/2005, version: 1.0.2.4
    Bugs fixed and new features:
    1.agent.exe update for repeat bug!
    2.TI5150 sign up to fix video Format!
    -------------------------------------------------------------------------------
    2005-09-29, version: 1.0.2.3
    Bugs fixed and new features:
    1.A pilot of the trial build for multiple access medium. (in the folder "\Multi-Access")
    Note: The filter 'Audio device USB' provided by the system does not support mutil-access.
    2 reset TI5150 when a new frequency is defined
    -------------------------------------------------------------------------------
    2005-09-27, version: 1.0.2.2
    Bugs fixed and new features:
    1. difficulty I2C unstable access on some devices.
    -------------------------------------------------------------------------------
    2005-09-23, version: 1.0.2.1
    Bugs fixed and new features:
    1. analog TV becomes sometimes darker.
    -------------------------------------------------------------------------------
    15/09/2005, version: 1.0.2.0
    Bugs fixed and new features:
    1. difficulty of installation INF for Windows 2000.
    2 FM scan radio policy changed!
    -------------------------------------------------------------------------------
    13/09/2005, version: 1.0.1.9
    Bugs fixed and new features:
    1 USB string serial number not visible with USBView, updated firmware required.
    2. political analysis of FM radio, return of release if PLLOffset > = 9 x 12. 5 kHz
    -------------------------------------------------------------------------------
    13/09/2005, version: 1.0.1.8
    Bugs fixed and new features:
    1. after the passage between AV/D/A several times, video display becomes dark in THDTV 2.61
    -------------------------------------------------------------------------------
    12/09/2005, version: 1.0.1.7
    Bugs fixed and new features:
    1. improve the performance of check channel lock status
    2 pinnacle INF Fix.
    -------------------------------------------------------------------------------
    2005-09-09, version: 1.0.1.6
    Bugs fixed and new features:
    1. Add an audio initialization function.
    -------------------------------------------------------------------------------
    2005-08-31, version: 1.0.1.5
    Bugs fixed and new features:
    1 separation of PAL and NTSC resolution mode.
    -------------------------------------------------------------------------------
    2005-08-30, version: 1.0.1.4
    Bugs fixed and new features:
    1.AvgTimePerFrame.
    2 frame drop.
    3 pinnacle inf file HCT chkinf fail.
    -------------------------------------------------------------------------------
    2005-08-22, version: version 1.0.1.3
    Bugs fixed and new features:
    1. add remote control interface in digital source filter.
    2.A new remote test tool that contains of the source code in \Test_RC.
    -------------------------------------------------------------------------------
    2005-08-16, version: 1.0.1.2
    Bugs fixed and new features:
    1. Pinnacel & Twinhan driver & file reorg.
    2.VP704A_BDA_Test tool, add a test to the system code.
    3. set the standard infrared protocol of "IRSTANDARD", "IRSYSCODECHECK1" registry keys in the INF file.
    4 firmware update
    -------------------------------------------------------------------------------
    2005-08-15, version: 1.0.1.1
    Bugs fixed and new features:
    1 serial number feature is lost when the audio volume of the TV control
    2.RC6A support CIR
    (This firmware uses GPIO3 (M9207 pin 80) to decode the RC6 Protocol.
    The material must be reworked to connect the M9207 80 pin to the CIR module and the actual
    EEPROM must be flashed with \Firmware\M9207.bin)
    3 Serieal, MAC address and name of device OEM taken in charge.
    Please see for more details on the \Firmware\readme.txt.
    4 Ioclt example source code included.
    -------------------------------------------------------------------------------
    08/08/2005, version: 1.0.0.10
    Bugs fixed and new features:
    1. increase audio volume analog TV.
    -------------------------------------------------------------------------------
    04/08/2005, version: 1.0.0.9
    Bugs fixed and new features:
    1. analog TV Video mode failed.
    -------------------------------------------------------------------------------
    2005-08-03, version: 1.0.0.8
    Bugs fixed and new features:
    1.off - centerf frequency scan + / 125Khz
    2 difficulty program a copy scanned in MCE.
    -------------------------------------------------------------------------------
    02/08/2005, version: 1.0.0.7
    Bugs fixed and new features:
    1.THBDAConsole.exe 'ulFixedBW', 'ulDisableOffFreqScan', 'ulMCEFreqTranslate' bug
    -------------------------------------------------------------------------------
    2005-07-28, version: 1.0.0.6
    Bugs fixed and new features:
    1.THBDAConsole.exe 'ulFixedBW', 'ulDisableOffFreqScan', 'ulMCEFreqTranslate' support
    2. improve the stability of I2C communication.
    3 unify signaling resistance & quality as a THBda ioctl interface.
    4 capture filter lock state control.
    -------------------------------------------------------------------------------
    2005-07-28, version: 1.0.0.5
    Bugs fixed and new features:
    1. the same strength & quality signals as VP7046.
    2 debug build pilot
    -------------------------------------------------------------------------------
    2005-07-21, version: 1.0.0.4
    Bugs fixed and new features:
    1. put the INF update.
    -------------------------------------------------------------------------------
    2005-07-20, version: 1.0.0.3
    Bugs fixed and new features:
    1 improve performance in PCM4
    2 passage of the analog TV Mode to FM Mode failure
    -------------------------------------------------------------------------------
    2005-07-04, version: 1.0.0.2
    Bugs fixed and new features:
    1. production tool FM test OK!
    --------------------------------------------

    And here is the Readme file from the other file in the update?

    ************************************************** ************************************************
    ULi PCI to USB Enhanced Host Controller Driver V1.72 for Windows 98 SE, Windows ME, Windows 2000 and Windows XP
    ************************************************** ************************************************

    ----------------
    INTRODUCTION
    ----------------

    This driver supports the host EHCI ULi controller under Windows 98 SE, Windows ME, Windows 2000
    and Windows XP.

    -------------------------
    CONTENTS OF THIS DOCUMENT
    -------------------------

    1. installation instructions
    2. uninstall instructions

    ----------------------------
    1. installation instructions
    ----------------------------

    (Windows 98SE & Windows ME)
    ULi USB 2.0 Controller has strapped on the system
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -This program will copy the driver files in your Windows system, and then restart your computer.
    2. after the system restarts, Windows will detect the new hardware 'ULi PCI to USB Enhanced
    Host Controller"and install the driver.

    B.If any ULi USB 2.0 on the system controller
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -This program will copy the driver files to your Windows system, then turn off your computer.
    -Fix the ULi USB 2.0 computer controller card and restart your computer.
    2. after the system restarts, Windows will detect the new hardware 'ULi PCI to USB Enhanced
    Host Controller"and install the driver.

    (Windows 2000)
    ULi USB 2.0 Controller has strapped on the system
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -This program will install and load the driver and you do not have to restart the
    computer.
    B.If any ULi USB 2.0 on the system controller
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -This program will copy the driver in your Windows system files, before turning itself off
    your computer.
    -Fix the ULi USB 2.0 computer controller card and restart your computer.
    2. after the system restarts, Windows will detect the new hardware 'ULi PCI to USB Enhanced
    Host Controller"and install the driver.

    (Windows XP)
    ULi USB 2.0 Controller has strapped on the system
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -Click "NEXT".
    -This program will install and load the driver and you do not have to restart the
    computer.
    -Once install the driver ULi USB 2.0 successfully. System will detect "USB 2.0 Root '.
    Hub. " Please select "Install the software automatically (recommended)" and then
    Click 'Next' to continue the installation.
    -This program will install and load the driver and you do not have to restart the
    computer.
    B.If any ULi USB 2.0 on the system controller
    1. install the driver USB 2.0 ULi
    -Run the Setup program.
    -This program will copy the driver in your Windows system files, before turning itself off
    your computer.
    -Fix the ULi USB 2.0 computer controller card and restart your computer.
    2. after the system restarts, Windows will detect the new hardware 'ULi PCI to USB Enhanced
    Host Controller', proceed with the installation.
    -Once install the driver ULi USB 2.0 successfully. System will detect "USB 2.0 Root '.
    Hub. " Please select "Install the software automatically (recommended)" and then
    Click 'Next' to continue the installation.

    Notice:
    If you can not configure driver successfully. Please restart your system, then follow
    steps to reinstall driver above.

    ------------------------------
    2. uninstall instructions
    ------------------------------

    1. open the "Control Panel" folder.
    2 call the "Add/Remove Programs" icon
    3 choose the "ULi USB2.0 Driver" section.
    4. click on the "add/delete" button to remove drivers.

    -----------------------------------
    Change list:
    -----------------------------------
    1.74
    1 fix this multi-interface keyboard may not be detected on the USB 2.0 hub.
    2. support all USB2.0 Host Controller.
    1.73
    1 problem on Win98SE, blue screen when you unplug a USB 2.0 Scanner after scanning image.
    2 solve problem on Win98SE, blue screen when you unplug a few Scanner USB 2.0 USB 2.0 Hub after scanning image.
    3 fix on Win98SE, blue screen when copying of files through the hub of UH-204 SUNBOX.
    4 solve problem as wirless lan will disconect when the plug in usb device.

    1.72
    1 fix that system crash when HD USB copy large files.

    1.71
    1. improve the management of power in Win98 / Me.

    1.70
    1. improve the devcie detection function.

    1.62
    1 solve the problem that can not operate a USB HUB USB 2.0 disk when the system resume inactive.

    1.61
    1 solve the problem that some device under USB 2.0 HUB is not found if resumes suspension system.

    1.60
    1. in support of functions power management when a HUB with the USB plug in device
    a root HUB.

    1.57
    1. Fix USB with USB 2.0 HUB floppy cannot detect problem.
    2. fix audio problem that can not display smooth when peripheral USB connect to the system.
    3. fix system cannot detect DVICE USB when the USB device attached to the system in
    suspend mode.
    4 fix when root USB HUB have a full load, USB HD sometimes
    failure of the transaction.

    1.56
    1 fix that device of DVD decoder cannot display correctly.

    1.55
    1. fix OTI USB 2.0 drive hand cannot detect question.
    2. attach the USB mouse cannot be used after the resumption of hanging.

    1.54
    1. to improve the safety of the driver.

    1.53
    1. transfer bulk fix may stop if the USB device is connected to the USB 2.0 hub
    2 difficulty USB 2.0 mass storage device cannot access after the release of the standby mode if there is an another USB 1.1 existing device

    1.52
    1 correct fault of system pages when accessing the storage of mass Win98SE or scandisk device failure when selecting
    automatically fix file system errors
    2. fix system may hang on in Win98SE / ME if USB 2.0 cardbus card is plugged

    v.1.51
    1. to improve the compatibility of USB 2.0 card reader.
    2. fix USB IDE devices are not accessible after the release of the standby/hibernation mode.

    v1.50
    1. improve the transfer block

    v1.48
    1. difficulty of installation of the USB 2.0 LAN driver hangs up
    2. attach a USB 1.1 card reader cannot be identified when plugged into the USB 2.0 hub
    3. fix some laptops starting hanging Win98SE

    v1.47
    1. improve the performance of bulk transfer.
    2. fix the failure of USB 2.0 Preview in bulk webcam.

    v1.46
    1. support USB 2.0 and 1.1 devices isochronous
    2. fix system hang up when restarting system if the USB 2.0 host controller is disabled in Win9X / ME
    3. fix system hang up when you uninstall the driver if there is USB 2.0 connected under Win2K/XP devices
    4. improve the capacity of the device detection in Win9X / ME

    v1.45
    1. fix system hang up when the mode standby ACPI.
    2. attach the mouse sometimes does not disappear when it is unplugged.
    3. fix the failure of detection of composite devices Win9X and improve device composite Win2K/XP

    v1.44
    1. composite crutch
    2 improve the detection of devices

    v1.43
    1 improve the failure rate of transfer IDE read/write with USB 2.0 to IDE bridge on the platform of PC card
    2 difficulty at high peripheral speed detected as full-speed device
    3. fix some problem of failure detection USB mouses
    4. fix some problem USB 2.0 Hub failure detection
    5 difficulty Win98SE crashing if ULi EHCI 1.42 is installed

    v1.42
    1. fix PC Card eject hang up in Win98 / ME
    2 difficulty of interruption/resumption hang up in Win98
    3 sometimes solve USB 1.1 device cannot be detected if OS starts with USB 2.0 and 1.1 devices plugged
    4. fix some failure detection of PC Card USB 1.1 devices

    v1.41
    1. Add new feature that system can install the driver ahead of the device is plugged in.
    2. fix PCMCIA OHCI controller resources affect problem on Windos ME.

    v1.40
    1. support Win9X/ME / 2 K/XP with ULi USB 2.0 driver.
    2 fix PCMCIA EHCI controller detection device USB 2.0 problem in Win9X / me.

    v1.32
    1. Fix problem that pilot cannot detect the Microsoft driver in Windows XP
    If the path of the OS is not c:\windows.
    2. Fix problem that pilot cannot detect the USB 2.0 controller device in a system.

    v1.31
    1. Fix problem that driver cannot install on Windows 2000.

    v1.30
    1 fix than Win9X / shows ME no USB 2.0 hub.
    2 solve the problem that hang up when the second entry in Win9X S1 with HID device connected.
    3 Fix problem that sometimes when you click on "search the hardware changes.
    for PNP ULi USB2.0, controller, the system will inform you the usbehci.sys
    file is not found.
    4. Fix problem that v1.20 can't find no EHCI controller to install the driver for after different
    verison of ULi EHCI controllers devices are connected and disconnected.
    5 install the driver support for several features of controller EHCI ULi existing on
    system at the same time.
    6. determine Win2K/XP shows hub USB root for USB 2.0 hub.

    v1.20
    1. support ULi USB 2.0 for Windows 98SE/ME/2000/XP host controller driver.

    ULi Coporation. (ULi) web sites:
    http://www.Uli.com.tw/ (Taiwan)

    CAN SOMEONE TREAT ME LIKE A CHILD OF TWO YEARS AND GIVE SOME ADVICE AS TO HOW TO OBTAIN THIS UPDATE.

    I'D VERY GRATEFULL AND KIND OF THINK IT would BE BENEFICIAL to a LOT MORE than PEOPLE LIKE I SEE a LOT OF XP AND PROBLEMS OF THE KIND THIS UPDATE IS SUPPOSE to FIX.

    It is said above 2 relevant and 1 right ANSWER available...

    I'm new here, so anyone could direct me to these answers?

  • all my icons became itunes how to change this back to normal icons?

    all my icons became itunes how to change this back to normal icons?

    all my icons became itunes how to change this back to normal icons?

    1. wrong forum. It is a forum for f\eedback, not for computer problems.
    Your question should be posted in the forum Performance and appearance.

    2 take, always, start by specifying your operating system, i.e. Windows XP, Vista or Windows 7.
    Can not give you the right way if we do not know your operating system.

    Suggestions:

    1 since it does not know your operating system, here's the link to all Versions, performance and Maintenance forum:

    http://answers.Microsoft.com/en-us/Windows/Forum/performance?tab=unanswered

    2. you can try one of the following...

    a. do a system restore. Choose a date where your icons were what they should be like your restore point.
    For Vista and Windows 7:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    b. rebuild your icon cache.

    For Vista:

    http://www.Vistax64.com/tutorials/117229-icon-cache-rebuild.html

    For Win 7:

    http://www.SevenForums.com/tutorials/49819-icon-cache-rebuild.html

  • How to change the battery internal on a G11?

    How to change the battery internal on a G11?

    Found this:

    http://www.dpreview.com/forums/thread/2877144

  • my freezer scandisk to 0% at the start of the computer. someone please tell me how to solve this problem

    my freezer scandisk to 0% at the start of the computer. someone please tell me how to solve this problem, and for this reason, I can't use my computer for other things as well. It is now very slow and do not file load. as adobe flashplayer doesn't load on google crome more please help me with this. I have windows xp sp2

    Yes, install xp3, the patch is only for hp AND amd pc, install from the link and then navigate to the microsoft updates and a priority scan, install, then do a custom scan and install rootkit updates, it will be a long process that you are behind in security updates , \\

    clean the pc then do the following:

    Shenan Stanley tips: will probably want to clean this machine...

     

    Search for malware:

    Download, install, execute, update and perform analyses complete system with the two following applications:

    ·                                 MalwareBytes (FREE)

    ·                                 SuperAntiSpyware (FREE)

    Remove anything they find. Reboot when necessary. (You can uninstall one or both when finished.)

    Search online with eSet Online Scanner.

    The less you have to run all the time, most things you want to run will perform:

    Use Autoruns to understand this all starts when your computer's / when you log in. Look for whatever it is you do not know usingGoogle (or ask here.) You can hopefully figure out if there are things from when your computer does (or connect) you don't not need and then configure them (through their own built-in mechanisms is the preferred method) so they do not - start using your resources without reason.

    You can download and use Process Explorer to see exactly what is taking your time processor/CPU and memory. This can help you to identify applications that you might want to consider alternatives for and get rid of all together.

    Do a house cleaning and the dust of this hard drive:

    You can free up disk space (will also help get rid of the things that you do not use) through the following steps:

    Windows XP should take between 4.5 and 9 GB * with * an Office suite, editing Photo software, alternative Internet browser (s), various Internet plugins and a host of other things installed.

    If you are comfortable with the stability of your system, you can delete the uninstall of patches which has installed Windows XP...
    http://www3.TELUS.NET/dandemar/spack.htm
    (Especially of interest here - #4)
    (Variant: http://www.dougknox.com/xp/utils/xp_hotfix_backup.htm )

    You can run disk - integrated into Windows XP - cleanup to erase everything except your last restore point and yet more 'free '... files cleaning

    How to use disk cleanup
    http://support.Microsoft.com/kb/310312

    You can disable hibernation if it is enabled and you do not...

    When you Hibernate your computer, Windows saves the contents of the system memory in the hiberfil.sys file. As a result, the size of the hiberfil.sys file will always be equal to the amount of physical memory in your system. If you don't use the Hibernate feature and want to reclaim the space used by Windows for the hiberfil.sys file, perform the following steps:

    -Start the Control Panel Power Options applet (go to start, settings, Control Panel, and then click Power Options).
    -Select the Hibernate tab, uncheck "Activate the hibernation", and then click OK. Although you might think otherwise, selecting never under "Hibernate" option on the power management tab does not delete the hiberfil.sys file.
    -Windows remove the "Hibernate" option on the power management tab and delete the hiberfil.sys file.

    You can control the amount of space your system restore can use...

    1. Click Start, right click my computer and then click Properties.
    2. click on the System Restore tab.
    3. highlight one of your readers (or C: If you only) and click on the button "settings".
    4 change the percentage of disk space you want to allow... I suggest moving the slider until you have about 1 GB (1024 MB or close to that...)
    5. click on OK. Then click OK again.

    You can control the amount of space used may or may not temporary Internet files...

    Empty the temporary Internet files and reduce the size, that it stores a size between 64 MB and 128 MB...

    -Open a copy of Microsoft Internet Explorer.
    -Select TOOLS - Internet Options.
    -On the general tab in the section 'Temporary Internet files', follow these steps:
    -Click on 'Delete the Cookies' (click OK)
    -Click on "Settings" and change the "amount of disk space to use: ' something between 64 MB and 128 MB. (There may be many more now.)
    -Click OK.
    -Click on 'Delete files', then select "Delete all offline content" (the box), and then click OK. (If you had a LOT, it can take 2 to 10 minutes or more).
    -Once it's done, click OK, close Internet Explorer, open Internet Explorer.

    You can use an application that scans your system for the log files and temporary files and use it to get rid of those who:

    CCleaner (free!)
    http://www.CCleaner.com/
    (just disk cleanup - do not play with the part of the registry for the moment)

    Other ways to free up space...

    SequoiaView
    http://www.win.Tue.nl/SequoiaView/

    JDiskReport
    http://www.jgoodies.com/freeware/JDiskReport/index.html

    Those who can help you discover visually where all space is used. Then, you can determine what to do.

    After that - you want to check any physical errors and fix everything for efficient access"

    CHKDSK
    How to scan your disks for errors* will take time and a reboot.

    Defragment
    How to defragment your hard drives* will take time

    Cleaning the components of update on your Windows XP computer

    While probably not 100% necessary-, it is probably a good idea at this time to ensure that you continue to get the updates you need. This will help you ensure that your system update is ready to do it for you.

    Download and run the MSRT tool manually:
    http://www.Microsoft.com/security/malwareremove/default.mspx
    (Ignore the details and download the tool to download and save to your desktop, run it.)

    Reset.

    Download/install the latest program Windows installation (for your operating system):
    (Windows XP 32-bit: WindowsXP-KB942288-v3 - x 86 .exe )
    (Download and save it to your desktop, run it.)

    Reset.

    and...

    Download the latest version of Windows Update (x 86) agent here:
    http://go.Microsoft.com/fwlink/?LinkId=91237
    ... and save it to the root of your C:\ drive. After you register on theroot of the C:\ drive, follow these steps:

    Close all Internet Explorer Windows and other applications.

    AutoScan--> RUN and type:
    %SystemDrive%\windowsupdateagent30-x86.exe /WUFORCE
    --> Click OK.

    (If asked, select 'Run'). --> Click on NEXT--> select 'I agree' and click NEXT--> where he completed the installation, click "Finish"...

    Reset.

    Now reset your Windows with this FixIt components update (you * NOT * use the aggressive version):
    How to reset the Windows Update components?

    Reset.

    Now that your system is generally free of malicious software (assuming you have an AntiVirus application), you've cleaned the "additional applications" that could be running and picking up your precious memory and the processor, you have authorized out of valuable and makes disk space as there are no problems with the drive itself and your Windows Update components are updates and should work fine - it is only only one other thing youpouvez wish to make:

    Get and install the hardware device last drivers for your system hardware/system manufacturers support and/or download web site.

Maybe you are looking for

  • Apple dropped support of Windows 8 in macOS Sierra?

    So I upgraded my MacBook to macOS Sierra and I noticed something different in the BootCamp Assistant. As the official macOS page Sierra said, the new BootCamp installations require Windows 8 and 10. But when I opened the BootCamp Assistant, he made o

  • currently I have several browsers sitting on my toolbar and want to get rid of them, please tell me how.

    On my toolbar, I have the following browsers: Start now (bing)AVGNeroLarge number These have been installed by third-party programs and we want to only use the mozilla browser. How can I remove the. I have a list of favorites with mozilla/firefox and

  • Lenovo Tablet 2 Yoga does not turn on

    It is good to hear that your Tablet works normally Sevast99! I hope that other people have the same results after perfomring my 'fix '. Also, perhaps a moderator could sticky my solution? Here it is again: Step by step solution:Disabled people Daydre

  • This computer is not running windows 7, but wants to install wins 10

    I get the pop up that I'm not under a genuine version of windows 7. I tried to check the properties of the COMPUTER in the start menu it says activated. Can I run windows update, and he keeps trying to install Win 10. It's something that I don't need

  • ezSharedsvchost.exe (trinkets and IN NEED HELP)

    OK been amounts of problems with what ive has also posted about it on the comodo and im wondering if this is a safe product by my im search if it is not convinced, some people said if I have any software Easybit installed on my computer when im answe