When to use First instead of  First_Value functions

When would you use the First_Values function instead of First? What's the difference between the two?

Here are some examples of both in action. Use the analytic function FIRST_VALUE when you don't want to group your records. Use the aggregate function FIRST when you do.
select
  deptno ,
  hiredate ,
  ename ,
  first_value( ename ) over ( partition by deptno order by hiredate ) first_hired
from emp
order by deptno, hiredate ;
    DEPTNO HIREDATE   ENAME      FIRST_HIRE
        10 1981-06-09 CLARK      CLARK
        10 1981-11-17 KING       CLARK
        10 1982-01-23 MILLER     CLARK
        20 1980-12-17 SMITH      SMITH
        20 1981-04-02 JONES      SMITH
        20 1981-12-03 FORD       SMITH
        20 1987-04-19 SCOTT      SMITH
        20 1987-05-23 ADAMS      SMITH
        30 1981-02-20 ALLEN      ALLEN
        30 1981-02-22 WARD       ALLEN
        30 1981-05-01 BLAKE      ALLEN
        30 1981-09-08 TURNER     ALLEN
        30 1981-09-28 MARTIN     ALLEN
        30 1981-12-03 JAMES      ALLEN
14 rows selected.
select
  deptno,
  min(ename) keep ( dense_rank first order by hiredate ) as first_hired
from emp
group by deptno
order by deptno ;
    DEPTNO FIRST_HIRE
        10 CLARK
        20 SMITH
        30 ALLEN
3 rows selected.As far as analytic FIRST_VALUE versus the analytic version of FIRST, FIRST_VALUE has the option to IGNORE NULLS whereas FIRST doesn't.
select
  deptno ,
  hiredate ,
  comm ,
  first_value( comm IGNORE NULLS ) over ( partition by deptno order by hiredate desc )
    as first_value ,
  min(comm) keep ( dense_rank first order by hiredate desc )
    over ( partition by deptno )
    as first
from emp
order by deptno, hiredate ;
    DEPTNO HIREDATE         COMM FIRST_VALUE      FIRST
        10 1981-06-09
        10 1981-11-17
        10 1982-01-23
        20 1980-12-17
        20 1981-04-02
        20 1981-12-03
        20 1987-04-19
        20 1987-05-23
        30 1981-02-20        300        1400
        30 1981-02-22        500        1400
        30 1981-05-01                   1400
        30 1981-09-08          0        1400
        30 1981-09-28       1400        1400
        30 1981-12-03
14 rows selected.Other than that the two seem functionally equivalent. I prefer FIRST_VALUE over FIRST though because its syntax is more familiar.
Joe Fuda
SQL Snippets
Message was edited by: SnippetyJoe - added third example

Similar Messages

  • Firefox does not open with the tabs I had open when I use the quit and save function. Firefox opens with my home page only. how to fix?

    When I use the "Save and Quit" function it has no effect. The next time I open Firefox it goes to my home page only.
    == This happened ==
    Every time Firefox opened
    == 3 days ago

    This is not a solution, nor a work-around. The only thing this points out is where the problem lies. Settings are meant to be used in all sessions, barring exceptions and the fact that Firefox asks if you'd rather SAVE and then quit, makes it an exception. The user has elected to skip the clear browsing history step.
    However, if the settings are permanently changed as you suggest, then the history will always be remembered for eternity when Firefox is closed. You then have to manually clear your history first at every session before closing.
    Older versions of Firefox never behaved in such manner and recognized that the Save and Quit superseded the setting to Clear History.

  • Strategical Decision - when to use PCK instead of XI - Adapter ?

    Hello Everybody,
    being a newby to the world of SAP Netweaver I found the ressources you created here very use- und helpful - thank you all.
    We are in somekind of a design-phase regarding our necessary interfaces ...
    right now a strategic question occures : when will it make sense to make use of PCK instead of using the possibilties PI has ?
    Or else : Why should I use (and pay for) pck, while Netweaver PI can be used as some kind of middleware?
    Whats the advantage / disadvantage?
    I found and read a lot of blogs, threads, etc. describing and discussing the how PCK works (or not) but I still don't get the picture about the questions above.
    Thanks in advance !
    René

    hi
    The PCK (Partner Connectivity Kit) is a solution provided by SAP for companies who wants to communicate with another company that have SAP XI but don’t want to install their own SAP XI, basically it’s an installation of an small SAP XI system with most of the functionality disabled and it is used as an endpoint for message transfer between the organization with XI and the partner company.
    Pls see the link below
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3f9fc190-0201-0010-0cbd-87f50e404d91
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/34a1e590-0201-0010-2c82-9b6229cf4a41
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6f83d790-0201-0010-629d-ab5bf10c94e4
    http://help.sap.com/saphelp_nw2004s/helpdata/en/99/115281baba404890d2561617a78409/frameset.htm
    rgds
    Arun

  • Re : When to Use tables instead of Cursors in Stores Procedures

    Hello All,
    Hope all is well. I know this is very broad questions and requires more specifics. All, I am trying to understand from very high level is to what are some of the instances when one would prefer to have physical/temp tables instead of using cursors in SP. Generic Pointers would really be helpful.
    Thanks in advance,
    Sam

    You are comparing apples and oranges here.
    A cursor is a work area where oracle stores the procession information when it executes a multi-row query.
    Lets say you have a sql query like this
    select * from empWhen such a query is executed oracle allocates a work area where the processing information of the query is stored. This
    is called a cursor. You can explicitly define a cursor like this.
    cursor c_emp
    is
    select * from empIn this case you are giving a name to the work area allocated by oracle. Now you can use this name c_emp to access the
    result set sequentially.
    On the other hand a Table is an oracle Object. It is a logical representation of your physical data.
    Data in a table can be manipulated meaning, you can insert, update or delete it. Data in a table is persistent.
    So i don't think a comparison between this two is appropriate.
    Thanks,
    Karthick.

  • Please help! Image only shows when i use Applets instead of Frame/JFrame

    The following classes don't work because the Canvas shows just background colour. However, when I let my class "MyContainer" extend Applet instead(and running the Applet instead of the StartUp class that creates a JFrame) of Frame/JFrame i get my Image on the Canvas showing, WHY?
    code:
    public class StartUp {
    public static void main(String[] arg) {
    MyContainer my = new MyContainer();
         my.setSize(500, 400);
         my.setVisible(true);
    public class MyContainer extends JFrame {
    MyCanvas m;
    public void MyContainer() {
         m=new MyCanvas();
         this.setSize(320, 320);
    this.setLayout(new GridLayout(1, 1, 0, 0));
    this.add(m);
    this.setVisible(true);
    public class MyCanvas extends Canvas {
    Image im;
    public MyCanvas() {
    im=Toolkit.getDefaultToolkit().createImage("c:\\miniferrari.jpg");
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    public void paint(Graphics g) {
    g.drawImage(im, 0, 0, this);
    private void jbInit() throws Exception {
    this.setBackground(Color.darkGray);

    as you are using a JFrame, you should refer to it's contentpane:
    this.getContentPane().setLayout(new GridLayout(1, 1, 0, 0));
    this.getContentPane().add(m);

  • Why does a different number come up when i use imessage instead of text? my friends keep responding to my msg with 'who is this?' since ios 5 update.!!?

    Why does a different number come up when i messaging to other i phones? My friends keep responding to my imessage with 'who is this' and apparently it comes from another number-not my usual number like texts...

    Thanks. The number shown against 'phone' is not my number. But it is the number my friend showed me that was coming up when she got my mgs.... Still confused!

  • When I use the NI-DAQ ::DAQ_Op function, it sometimes return

    me the error number -10847. The help description of this error is -1084 dmaChainingError New buffer information was not available at the time of the DMA chaining interrupt; DMA transfers will terminate at the end of the currently active transfer buffer.
    Does somebody know how to evitate this error?
    Thanks in advance

    me the error number -10847. The help description of this error is -1084 dmaChainingError New buffer information was not available at the time of the DMA chaining interrupt; DMA transfers will terminate at the end of the currently active transfer buffer. I haven't seen the 10847 Error before and had to do some research to see anything related to it. The only reported incidents I saw had to do with ISA Windows hardware or Nubus Macintosh hardware. So the best I could suggest is:
    1) Make sure that Measurement and Automation Explorer (MAX) works
    2) See if your Data Acquisition Card passes the Test Resources test in MAX
    3) Check your OS any DMA or other resource conflicts.
    If those steps fail to show up anything, Let National Instruments know (www.ni.com/ask) what hardware and software you are using and we might be able to offer more suggestions.

  • Using open instead of file open causes Acrobat X11 to barf and stop working

    I get a Critical Error when I use Open instead of File Open.
    Faulting Application Path: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
    Problem Event Name: APPCRASH
    Application Name: Acrobat.exe
    Application Version: 11.0.9.29
    Application Timestamp: 5412b52e
    Fault Module Name: StackHash_9cd1
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Code: c00001a5
    Exception Offset: PCH_9A_FROM_ntdll+0x0003AAAC
    OS Version: 6.3.9600.2.0.0.256.48
    Locale ID: 1033
    Additional Information 1: 9cd1
    Additional Information 2: 9cd11aece74acb27712497bb36a41cb9
    Additional Information 3: 907e
    Additional Information 4: 907e2580c2bb8a6c100db3c807719959
    Bucket ID: 14715054b1814cb4d80f9c990e44ea23 (73554368215)

    You can use the DocOpen event.

  • I have a folder with 10 folders inside it, 8 of the folders will not function when I use "show view options".

    I have a Folder with 10 Folders inside it, 8 of the Folders will not function when I use "show view options", they always default back the default.  The "show view options" works on all my other Folders in my system, even on the first two of the Folder in question.  How can I correct it?  I have tried every thing I can think of, even deleting the Folders & reintalling them.  For some strange reason the "show view options" only does not work on the last 8 Folders in the Folder in question.

    Instead GarageBand recognize my keyboard and i can play normally, also, if it can help, those are the Audio and Midi Logic Preferences and the Controller Surfaces Setup with the keyboard connected :

  • I have a new iMac running OS 10.9 when I use the Command S shortcut it no longer saves the active document it speaks it instead.

    I have a new iMac running OS 10.9.  When I use the Command S shortcut in any of my apps (numbers, text edit etc), it no longer saves the active document it speaks it instead.  How can I revert to the save shortcut function?

    have you looked in
    system preference->Dictiation & speech if it's assigned there?
    or system preference->accessibility if it's assigned there?

  • When i use function module to create additive costs using KKPI_BDC_ADD_ON_C

    Hi,
    When i use function module KKPI_BDC_ADD_ON_COSTS_CREATE to create additive costs it shows an error. The error is 'THE OBJECT IS LOCKED BY THE USER SARKARD'  the transaction it uses is CK74 for creating.
    I have also read about KKP4_ADD_ON_COSTS_CREATE. But i dont know the usage of it.. 
    I think it will be helpful if u can clarify with first FM.
    Kindly suggest.
    Thank you.
    Harsha

    Hi Harsha,
    I have a similar requirement, but the issue that I am facing is that I can not find any parameter in the FM - KKPI_BDC_ADD_ON_COSTS_CREATE for Valuation Date which is a mandatory field in CK74. How did you overcome that issue, can you please share ?

  • When I use the export function of quicktime nothing append and I have the following error message on the console : QuickTime Player[1723]postExceptionEvent caught non-fatal NSInvalidArgumentException

    When I use the export function of quicklime (export to iPad,iPhone, Apple TV ... format),  nothing append and I have the following error message on the monitor windows, (I'm using quicktime Version 10.4 (833) with OS X Yosemite ):
    06/11/2014 22:22:03,507
    QuickTime Player[1723]
    postExceptionEvent caught non-fatal NSInvalidArgumentException '*** -[NSDictionary initWithObjects:forKeys:]: count of objects (0) differs from count of keys (4)' with backtrace (
    0   CoreFoundation                      0x00007fff8ac6564c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8924f6de objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8ab98dcd -[NSDictionary initWithObjects:forKeys:] + 941
    3   Foundation                          0x00007fff8a6a8bcc -[NSDictionary(NSDictionary) initWithCoder:] + 245
    4   Foundation                          0x00007fff8a686150 _decodeObjectBinary + 2872
    5   Foundation                          0x00007fff8a6854a6 _decodeObject + 278
    6   Foundation                          0x00007fff8a6a9921 -[NSKeyedUnarchiver decodeObjectOfClasses:forKey:] + 173
    7   Foundation                          0x00007fff8a75f2b4 -[NSError initWithCoder:] + 253
    8   Foundation                          0x00007fff8a686150 _decodeObjectBinary + 2872
    9   Foundation                          0x00007fff8a6854a6 _decodeObject + 278
    10  Foundation                          0x00007fff8a6ab0c9 +[NSKeyedUnarchiver unarchiveObjectWithData:] + 89
    11  QuickTime Player                    0x000000010dcd8253 QuickTime Player + 758355
    12  QuickTime Player                    0x000000010dc8981f QuickTime Player + 436255
    13  QuickTime Player                    0x000000010dc894fb QuickTime Player + 435451
    14  QuickTime Player                    0x000000010dc6ce48 QuickTime Player + 319048
    15  AppKit                              0x00007fff93c5d75a __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke1714 + 113
    16  AppKit                              0x00007fff93c4efca -[NSDocument continueActivityUsingBlock:] + 323
    17  AppKit                              0x00007fff93c5d5cb __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_21706 + 458
    18  AppKit                              0x00007fff93c5d0ec __85-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke1690 + 1365
    19  AppKit                              0x00007fff940903b6 -[NSVBSavePanel didEndPanelWithReturnCode:] + 68
    20  AppKit                              0x00007fff9409323d -[NSVBSavePanel didEndSheet:returnCode:contextInfo:] + 154
    21  AppKit                              0x00007fff93f718d9 -[NSWindow _endWindowBlockingModalSession:returnCode:] + 315
    22  AppKit                              0x00007fff9409307c -[NSVBSavePanel observeValueForKeyPath:ofObject:change:context:] + 560
    23  Foundation                          0x00007fff8a677c73 NSKeyValueNotifyObserver + 382
    24  Foundation                          0x00007fff8a676e48 NSKeyValueDidChange + 463
    25  Foundation                          0x00007fff8a67b9ad -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 118
    26  ViewBridge                          0x00007fff959cbbd7 -[NSViewBridge nonLocalChangeInProgress:block:] + 382
    27  ViewBridge                          0x00007fff95a15766 -[NSRemoteViewMarshal exceptionSafeSetRemoteObject:forKey:withReply:] + 275
    28  ViewBridge                          0x00007fff95a158f1 -[NSRemoteViewMarshal setRemoteObject:forKey:withReply:] + 56
    29  CoreFoundation                      0x00007fff8ab3e33c __invoking___ + 140
    30  CoreFoundation                      0x00007fff8ab3e192 -[NSInvocation invoke] + 290
    31  ViewBridge                          0x00007fff95a1bce3 __deferNSXPCInvocationOntoMainThread_block_invoke + 85
    32  ViewBridge                          0x00007fff95a1b91e __deferBlockOntoMainThread_block_invoke_2 + 390
    33  CoreFoundation                      0x00007fff8ab8354c __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    34  CoreFoundation                      0x00007fff8ab75655 __CFRunLoopDoBlocks + 341
    35  CoreFoundation                      0x00007fff8ab75196 __CFRunLoopRun + 1814
    36  CoreFoundation                      0x00007fff8ab74838 CFRunLoopRunSpecific + 296
    37  HIToolbox                           0x00007fff8cb6f43f RunCurrentEventLoopInMode + 235
    38  HIToolbox                           0x00007fff8cb6f1ba ReceiveNextEventCommon + 431
    39  HIToolbox                           0x00007fff8cb6effb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    40  AppKit                              0x00007fff9383b821 _DPSNextEvent + 964
    41  AppKit                              0x00007fff9383afd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    42  AppKit                              0x00007fff9382ef73 -[NSApplication run] + 594
    43  AppKit                              0x00007fff9381a424 NSApplicationMain + 1832
    44  libdyld.dylib                       0x00007fff8ec845c9 start + 1
    timestamp: 22:22:03.507 Thursday 06 November 2014
    process/thread/queue: QuickTime Player (1723) / 0x7fff78cd0300 / com.apple.main-thread
    code: line 844 of /SourceCache/ViewBridge/ViewBridge-99/ViewBridgeUtilities.m in logCaughtException
    #exceptions
    06/11/2014 22:22:03,525
    com.apple.appkit.xpc.openAndSavePanelService[1748]
    remote view failed to set bridge object {
        URL = "file:///Users/pascalgros/Documents/Videos%20Maurice%202013/Exports/M2U01020.m4 v";
        URLs =     (
            "file:///Users/pascalgros/Documents/Videos%20Maurice%202013/Exports/M2U01020.m4 v"
        index = 1;
        result = 1;
    } for key most-recent-completion due to Error Domain=com.apple.ViewBridge Code=8 "L’opération n’a pas pu s’achever. (com.apple.ViewBridge erreur 8)." UserInfo=0x61000006ebc0 {com.apple.ViewBridge.error.hint=most-recent-completion, com.apple.ViewBridge.error.description=NSViewBridgeExceptionError}; service call stack was (
    0   ViewBridge                          0x00007fff959e8b30 -[NSViewServiceMarshal setRemoteObject:forKey:] + 341
    1   Foundation                          0x00007fff8a677c73 NSKeyValueNotifyObserver + 382
    2   Foundation                          0x00007fff8a676e48 NSKeyValueDidChange + 463
    3   Foundation                          0x00007fff8a67b9ad -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 118
    4   com.apple.appkit.xpc.openAndSavePanelService 0x000000010a661407 com.apple.appkit.xpc.openAndSavePanelService + 9223
    5   AppKit                              0x00007fff93dead5a -[NSSavePanel _dismissModeless:] + 109
    6   com.apple.appkit.xpc.openAndSavePanelService 0x000000010a66191c com.apple.appkit.xpc.openAndSavePanelService + 10524
    7   AppKit                              0x00007fff93ded580 -[NSSavePanel ok:] + 449
    8   com.apple.appkit.xpc.openAndSavePanelService 0x000000010a661952 com.apple.appkit.xpc.openAndSavePanelService + 10578
    9   libsystem_trace.dylib               0x00007fff8d3ebcd7 _os_activity_initiate + 75
    10  AppKit                              0x00007fff93a0a5e7 -[NSApplication sendAction:to:from:] + 410
    11  AppKit                              0x00007fff93a0a410 -[NSControl sendAction:to:] + 86
    12  AppKit                              0x00007fff93bdedaf __26-[NSCell _sendActionFrom:]_block_invoke + 131
    13  libsystem_trace.dylib               0x00007fff8d3ebcd7 _os_activity_initiate + 75
    14  AppKit                              0x00007fff93a52f2c -[NSCell _sendActionFrom:] + 144
    15  AppKit                              0x00007fff93bc5ab2 -[NSButtonCell _sendActionFrom:] + 39
    16  libsystem_trace.dylib               0x00007fff8d3ebcd7 _os_activity_initiate + 75
    17  AppKit                              0x00007fff93a6da66 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2731
    18  AppKit                              0x00007fff93a6ccc1 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 491
    19  AppKit                              0x00007fff93a6c289 -[NSControl mouseDown:] + 714
    20  AppKit                              0x00007fff93f65fef -[NSWindow _reallySendEvent:] + 12827
    21  AppKit                              0x00007fff939f065c -[NSWindow sendEvent:] + 368
    22  AppKit                              0x00007fff939a21e6 -[NSApplication sendEvent:] + 2238
    23  ViewBridge                          0x00007fff959d18ab -[NSViewServiceApplication sendEventWithoutCatch:withForwarding:] + 652
    24  ViewBridge                          0x00007fff959d1fbd -[NSViewServiceApplication sendEvent:withForwarding:] + 29
    25  AppKit                              0x00007fff9382efe8 -[NSApplication run] + 711
    26  AppKit                              0x00007fff9381a424 NSApplicationMain + 1832
    27  libxpc.dylib                        0x00007fff88837ef2 _xpc_objc_main + 793
    28  libxpc.dylib                        0x00007fff88839a9d _parse_sysctl_once + 0
    29  ViewBridge                          0x00007fff95a20165 xpc_connection_handler + 0
    30  ViewBridge                          0x00007fff959d4ff7 NSViewServiceApplicationMain + 1892
    31  com.apple.appkit.xpc.openAndSavePanelService 0x000000010a665035 main + 208
    32  libdyld.dylib                       0x00007fff8ec845c9 start + 1
    33  ???                                 0x0000000000000001 0x0 + 1
    timestamp: 22:22:03.525 Thursday 06 November 2014
    process/thread/queue: com.apple.appkit.xpc.openAndSavePanelService (1748) / 0x7fff78cd0300 / com.apple.main-thread
    code: line 3847 of /SourceCache/ViewBridge/ViewBridge-99/NSViewServiceMarshal.m in __47-[NSViewServiceMarshal setRemoteObject:forKey:]_block_invoke_2
    #communications_failure

    Hi,
    have you tried to connect on the command line (instead of using R3trans) ?
    db2 connect to AE1 user sapae1 using .....
    If this works and you have verified that the DB2DB6EKEY is set properly, use dscdb6up to update the password in the password file dscbd6.conf.
    Then try again to use R3trans to connect.
    Best regards,
      Jens

  • When i used windows 8 i lost touch function

    I have brought the woundrful Hp touch smar 600 pc with windows 7  as default os but when i used windows 8  the screen lost touch function and i have heared thatregaing this function could be done by reinstaling this from the hp official site using the id number of the pc but i coud not dothis properly ?

    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03488148&cc=us&dlc=en&lc=en
    Touch screen doesn't work after upgrading to Windows 8
    Follow the steps below if you upgraded to Windows 8 from a previous Windows operating system and your touch screen stopped working.
    Activate Windows 8 and install updates:
    Press the Windows  + W keys, type Activate Windows into the Search field, and then click the icon that appears in the upper left corner of the screen.
    In PC Settings, click on Activate Windows , wait for your computer to connect to Microsoft, and then follow the onscreen instructions.
    Restart the computer.
    Press the Windows  + X keys, and select Control Panel from the list.
    In the upper right corner of Control Panel, select Large icons from the View by drop-down.
    Click Windows Update .
    Install touch and/or graphics driver updates.
    Restart the computer. If the touch screen still does not work, go on to the next step.
    Check for driver updates at hp.com:
    Go to hp.com (http://www8.hp.com/us/en/support-drivers.html) and click Drivers & Software .
    In the search field, enter your product name or number, and then click Next .
    Select your operating systems from the drop-down, and then click Next .
    NOTE:For more information about your operating system and system type (32 or 64 bit), press the Windows  + X keys, and select System from the list.
    If there are any available graphics drivers, click the plus sign next to Driver - Graphics, and then click the driver name.
    In the Download options and information window, click Download .
    Follow the onscreen directions to download the driver.
    Restart the computer. If the touch screen still does not work, go to the next step.
    Install an older touchscreen driver from the Windows Update Catalog:
    Go to Windows Update catalog (in English).
    If prompted to install a 'Microsoft Update Catalog' add-on, install the add-on.
    Type NextWindow in the search field and press Enter .
    From the list of search results, find the driver named "NextWindow - Input - NextWindow Voltron Touch Screen", version 3.1.6.0, and made for Products Windows 7, Windows Consumer Preview (size 27.6 MB).
    Click the Add button next to the name of the driver.
    Click View Basket in the upper right.
    Click the Download button in the upper right.
    Browse to a path on your computer; such as Desktop.
    NOTE: If a User Account Control message opens, click Yes .
    When the download is complete, click Close .
    Browse to the path chosen earlier and open the folder named "NextWindow - Input - NextWindow Voltron Touch Screen".
    Double-click the .cab file inside this folder to view the contents of the cab file.
    Single-click the first file and then press the keys CTRL + A to select all the files.
    Right-click on any selected file and select Copy .
    Click the Back arrow in the upper left of the window to go back to the folder named "NextWindow - Input - NextWindow Voltron Touch Screen". The only file in this folder should be the one cab file that was downloaded earlier.
    Right-click inside the blank or white portion of this window and select Paste . All of the files from the .cab file are extracted into this folder.
    Double-click the file named NVWVoltronSetupLiteDesktop_3.1.6.0.f.exe .
    NOTE: If a User Account Control message opens, click Yes .
    The driver Setup Wizard opens. Click Next to start the installation. Read and respond to the Windows to install the driver.
    After the driver is installed, restart the computer. If the touch screen still does not work, go to the next step.
    Disable the graphics card:
    Press the Windows  + X keys, and select Device Manager from the list.
    In Device Manager, click the triangle  next to Display adapters to expand the list.
    Right-click on the graphics card, and then select Disable .
    On the Window that reads "Disabling this device will cause it to stop functioning. Do you really want to disable it?", click Yes .
    Restart the computer. If the touch screen still does not work, the computer should be serviced.
    ... an HP employee expressing his own opinion.
    Please post rather than send me a Message. It's good for the community and I might not be able to get back quickly. - Thank you.

  • When we use SQLScript/CE Functions or procedures in real time scenario

    Hi,
    Can anyone explain me, when we use Scripted Calculation view or procedure using SQL/CE functions in real time project implementations.
    Let me know some business requirement why we choose these instead of graphical view.

    Hi Kumar,
    <i>So in real time if you want to develop some interface whether we use existing components or we will create own user defined products and components ??</i>
    We can do both.
    If the pre-delivered content actually solves ur purpose by providing the exact format of data, then u should go for the <b>existing components</b>
    If there is any change from the content provided, then u should change it and<b> create own user defined products and components</b>
    <i> What is the criteria behind choosing either of them ??</i>
    Thus the criteria is purely based upon the type of data formats u have to use. Existing component always saves lot of development time
    Regards,
    Prateek

  • 1)Now I use Lightrom 5.7 how to upgrade to 6 or CC? 2) What is the difference between 6 and CC vercion? 3) When I used lightromm 3, I could see inEXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is ve

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    2) What is the difference between 6 and CC version?
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    Purchase the standalone upgrade from here: Products
    Download CC version from here: Explore Adobe desktop apps | Adobe Creative Cloud
    2) What is the difference between 6 and CC version?
    See this comparison chart: Compare Lightroom versions | Adobe Photoshop Lightroom CC
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?
    Rob Cole's ExifMeta plugin displays the Subject Distance field (and much more).  Unfortunately, his Web site appears to be down again.  He used to be very active here, but he hasn't posted in several months.

Maybe you are looking for

  • How can i store and use maps in 5800

    I was stunned when my new nokia 5800 hanged when receiving a operator status message after call which shows call duration, so i had to update my phone firmware using nokia pc suite. Now all of sudden the nokia maps icon seems to have disappeared, am

  • IPhone 3.0: also syncs Notes to MS Outlook?

    It has been announced that the iPhone 3.0 software will (finally...) be able to sync notes, but will it be limited to iCal's notes ? Or will it also sync with MS Outlook on PC, like it already does for contacts and calendar infos? Any hint is welcome

  • How to prevent summation only for some kf?

    Hi all! I have a question concerning a problem we have in a query. I have a query that show, depending for project revision (witch refer to 0calmonth), trend of various key figures in the quarters I've planned in a specific project revision. For exam

  • Problem with debug java.lang.NullPointerException

    Hi All, i am having a very strage issue with Flash Builder 4.5.1. If I create a Flex Mobile Application, i am able to debug the app with no problems. if I create a Flex Mobile and PHP Project, and then connect to a data service, i am not able to debu

  • I lost my iPhoto Library! Can someone help me find it?

    Yesterday, I tried to open iPhoto and received a message stating that my iPhoto Library could not be found and asked if would I like to find it. Yes, I would really like to find it but haven't a clue about how to do so. I hadn't used iPhoto in a week