Can anyone create a Query for this?

Can anyone help me to create a query for the followinf table info?
I have tried to use joins but no success.
Table Name: Org
ID     Severity     Status
1     Red     New
2     Yellow     New
3     Green     Closed
4     Green     Open
5     Yellow     Closed
6     Red     Closed
7     Red     Closed
8     Red     Open
9     Yellow     New
10     Yellow     Closed
The result of the query should look like this. The most important thing is that I want this result set in a single query and in this format.
Severity     Total_Status     Total_Closed
Red     4     2
Green     2     1
Yellow     4     2

select severity,count(*) tot,sum(decode(status,'closed',1,0)) tot_closed
from org
group by severity;
Not tested..                                                                                                                                                                                                                                                           

Similar Messages

  • Can anyone share the query for inventory aging report

    Is there any standard reports for inventory aging in oracle ebs 12.1.3 ....... If not can anyone share the query for inventory aging report

    Hi,
    It may not be so simple as you are trying to reproduce the historical value.  I believe you have to create a temporary table first.  Or you may use Command feather to get the required data in advance.
    Thanks,
    Gordon

  • What can be the SQL Query for this requirement ?

    Hi,
    I have a table with fields like this:
    ID DESC PARENT
    01 ABC 02
    02 ABC1 01
    03 ABC2 01
    04 ABC4 02
    In the above table PARENT column refers to ID column , but actually in SQL query i want to have ID, DESC , and PARENTDESC (i.e., desc value of the corresponding ID)
    Actual output that i need is
    select ID , DESC , ?? from table where ID=someValue . Now if i provide ID=01 then output should be like this:
    ID DESC PARDESC
    01 ABC ABC1
    Can anyone help what can be the required sql query ?
    Edited by: bootstrap on Apr 29, 2011 6:15 AM

    SELECT T1.ID, T1.DESC, T2.DESC
    FROM TABLEA T1, TABLEA T2
    WHERE T1.ID='01'
    AND T2.ID = T1.PARENT;

  • Can anyone give a solution for  this ???

    Hi all,
    In upload and download function modules we will get One Pop-Up in that we have File Name and Data Format Options.
    But we are in Upgrade Project (ecc 6.0). So, we are not Using the Upload or Download FM.
    Instead of that we are using
    For Upload
    CALL METHOD cl_gui_frontend_services=>file_open_dialog and
    CALL METHOD cl_gui_frontend_services=>gui_upload
    For Download
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    CALL METHOD cl_gui_frontend_services=>Gui_download
    But problem is ..Client is Requiring the Pop-Up for Data Format in new methods.
    How can we get the Popup for the same ??
    Please reply ASAP.
    Thanks in advance
    Hariram

    Hi
    Refer this code
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-004.
    PARAMETERS : p_flint LIKE filename-fileintern
                 DEFAULT 'ZDIR_APPDATA',           " Logical Path Name
                 p_aserv RADIOBUTTON GROUP grp,    " Application server
                 p_flext LIKE filename-fileextern, " Application File Name
                 p_pserv RADIOBUTTON GROUP grp,    " Presentation Server
                 p_file1 LIKE rlgrap-filename,     " Presentation File Name
                 p_file2 LIKE rlgrap-filename,     " Error File Name
                 p_sesnm LIKE bgr00-group
                 DEFAULT 'ZPTPCNV110'.             " Session Name
    SELECTION-SCREEN : END OF BLOCK b1.
    FORM getfilename1  CHANGING p_file1 TYPE rlgrap-filename.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name  = sy-cprog
          dynpro_number = sy-dynnr
        IMPORTING
          file_name     = p_file1.
    ENDFORM.                    " getfilename1
    Regards,
    Prashant

  • Can anyone describe the workflow for this website nav?

    Here's the url:
    http://www.hypertemplates.com/templates/11195.html
    I'm trying to create a similar nav system for my website, I'm
    not concerned with the search features, but I just want the top nav
    portion to have all the elements "fly into place" after loading,
    then have the main pic have some animation that loops with animated
    buttons such as the one in this template. I know this is a
    subjective question, since there's probably many ways to accomplish
    the same task, but I was curious to hear how different people would
    go about building such a thing before I start. Also, does anyone
    know where to get some simple, non-obnoxious click sounds for
    buttons (kind of like the ones in this template, maybe even more
    non-obtrusive)?
    Thanks everyone, have an awesome new year!

    Here's the basic gist of how I'd do it:
    1) Create your nav, make sure each button is it's own symbol.
    2) Select all the nav items, right click, distribute to
    layers
    3) Select all the keyframes for each nav item layer on frame
    1, and move to some location where the nav will start to fly in
    4) Still dealing with the nav item layers, select a column of
    frames say 10-20 frames beyond where the keyframes are, press F6 to
    add keyframes
    5) You now have two keyframes, start and end point. Scrub the
    timeline to where the first keyframe is, and
    a) Move them to the right, say 50px
    b) In Properties panel, change the Color mode to Alpha, and
    set to 0 or a small value, like 10
    6) Now scrub the timeline to where the end keyframes are,
    select all the nav items on stage, and make sure it appears as you
    will want it to(since you already added the keyframe, it should be
    100 alpha and in the right place)
    7) Select a column of frames between the start and end
    keyframes for the nav item layers
    8) In the properties panel, for Tween select Motion
    9) Add some ease
    10) At this point all nav items zoom in at once. Now simply
    go through the timeline and take each tween and move it to the
    right a few frames, so one will come in after the other
    For the looping animation picture, put some animation inside
    of a MovieClip symbol, it will loop when on the main timeline. Now
    you can just fade in/animate in the MovieClip initially.

  • How can i write sql query for this result ?

    Hello Dear,
    Here is the script first.
    CREATE TABLE ACC_TEST(
    AD_ID NUMBER,
    AD_NAME VARCHAR2(50),
    AD_SPM_ID NUMBER);
    /data are
    Insert into ACC_TEST (AD_ID,AD_NAME,AD_SPM_ID) values (136,'Saleh Ahmed',129);
    Insert into ACC_TEST (AD_ID,AD_NAME,AD_SPM_ID) values (142,'Hamidur Rahman',136);
    Insert into ACC_TEST (AD_ID,AD_NAME,AD_SPM_ID) values (124,'Jasim Uddin',null);
    INSERT INTO ACC_TEST (AD_ID,AD_NAME,AD_SPM_ID) VALUES (129,'Sazib',124);I Need The Following Result When I Pass A Value Of Ad_Id. For Example I Pass 142 Then Result Should Be
    Select Ad_Id,Ad_Name
    From..
    where ad_id=142
    Ad_Id   Ad_Name
    136     Saleh Ahmed
    129     Sazib
    124     Jasim Uddin
    If I Pass Ad_Id=136 Then Result Should Be
    Ad_Id   Ad_Name
    129     Sazib
    124     Jasim Uddin
    If I Pass Ad_Id=129 Then Result Should Be
    Ad_Id   Ad_Name
    124     Jasim Uddin Database 10G XE
    Any help will be helpful

    Hi,
    HamidHelal wrote:
    WoW ! you acutely got my point. How did you understand that ? lLuck guess. Guessing is usually not the best way to solve problems. It's usually faster and more reliable to say exactly what you want, as well as give an example.
    ittle bit more i want to know, if i want to restrict the output not more then 2, what would be sql ?Now you're not even giviing an example!
    Maybe you want something like this:
    SELECT     ad_id
    ,     ad_name
    FROM     acc_test
    WHERE     LEVEL     BETWEEN 2 AND 3          -- Changed
    START WITH     ad_id     = :target_ad_id
    CONNECT BY     ad_id     = PRIOR ad_spm_id
    ;which will show jsut the parent and the grandparent of the given row.
    I do work with forms developer very much. Sql knowledge is as oracle sql book(cerfitication 9i). But this type of sql isn't available there.
    where can i learn this type of sql ? Different sql then ordinary ?Certification is a different topic entirely.
    There are books and web sites dealing with more advanced techniques. Sorry, I don't know any well enough to recommend them. Some authors (such as Tom Kyte) are consistently good.
    Here are a couple of sites that explain CONNECT BY queries:
    http://www.adp-gmbh.ch/ora/sql/connect_by.html
    http://www.oradev.com/connect_by.jsp

  • Can anyone provide a solution for this problem

    hi all,
    In my page i am using a dropdown component , a table component and hyperlink and a button. whenever i click on the button the table component will populate values based on the selected values from the dropdown.
    The hyperlink is for opening a new window the same values as in the table component but in a pdf file.
    For that i have taken the help from one of the group members solution.
    Now i have set the target property of the hyperlink to new window. And in the hyperlink action method i have written the code for calling a servlet.Now the new window is opening fine with correct values.After that only the problem comes.Now if new window closed or not if i change the dropdown values that page is not getting refreshed.i.e. the table component is not refreshing with correct values.Also the button component which is supposed to work for displaying data in the table starts working like the hyperlink i.e . if i click the button it is opening the new window with the values which should have displayed in the table.
    bye the my page is inside a tabset which is inside a parent tabset
    I don't know whether my explanation about the problem is clear or not.
    but any help from anyone is appreciated.
    Interestingly if i navigate to some other tabs inside the main tabsets the table component get refreshed. but after clicking the hyperlink the same problem continues.
    is there any other component i can use to open the window and display the servlet's data
    Any valuable suggestions is expected,
    Thanks and regards,
    rpk

    maybe these links will help answer your question but if not come on back:
    http://discussions.apple.com/thread.jspa?messageID=5442965&#5442965
    http://discussions.apple.com/thread.jspa?messageID=5320620&#5320620
    http://discussions.apple.com/thread.jspa?messageID=5090887&#5090887
    http://discussions.apple.com/thread.jspa?messageID=5438220&#5438220
    http://discussions.apple.com/thread.jspa?messageID=5299609&#5299609

  • I have had my new 21 inch iMac for 2 weeks in that time my iMac has shut itself down by itself without any prompting from myself.  It goes to screen saver, then shut itself down can anyone provide an explanation for this occurrance

    Hello, purchased my 21 inch imac 2 weeks ago within the last week I have notice my imac shuts itself down after a short period of time once the screen saver is activated.  Is there anybody out there who can through some light on this matter.  Is it a common occurance?  is there anything to worry about?  Should it happen at all?
    Tony

    When you say it shuts down, do you mean it powers off, so that you have to reboot it to continue? Or does it merely sleep, or blank the screen?

  • How can I write a query for this table?

    Dear friends
    I have a table with the following structur and data
    ID Name Value
    1 book 100
    2 book 200
    3 car 25
    4 car 35
    5 book 300
    now I would like write a query with following out put
    Name value
    book 100 , 200 , 300
    car 25 , 35
    (with , Separator) (my oracle version is 10g)
    thanks

    Try this,
    SQL> WITH t AS(SELECT 'book' NAME, 100 VALUE FROM dual UNION ALL
      2  SELECT 'book', 200 FROM dual UNION ALL
      3  SELECT 'car', 25 FROM dual UNION ALL
      4  SELECT 'car', 35 FROM dual UNION ALL
      5  SELECT 'book', 300 FROM dual)
      6      SELECT NAME, LTRIM (MAX (SYS_CONNECT_BY_PATH (VALUE, ',')), ',') VALUE
      7        FROM (SELECT NAME, VALUE, ROW_NUMBER () OVER (PARTITION BY NAME ORDER BY VALUE) rn FROM t)
      8  START WITH rn = 1
      9  CONNECT BY PRIOR rn + 1 = rn
    10             AND PRIOR NAME = NAME
    11    GROUP BY NAME;
    NAME VALUE
    book 100,200,300
    car  25,35
    2 rows selected.
    SQL> G.

  • Can Anyone Id the cause for this panic attack?

    Tue Feb 12 02:08:27 2013
    panic(cpu 1 caller 0xffffff80052b83c9): "Double fault at 0xffffff7f85ab435b, registers:\n" "CR0: 0x0000000080010033, CR2: 0xffffff807dfb7ff8, CR3: 0x000000001eb6d000, CR4: 0x0000000000000660\n" "RAX: 0xffffff7f85ab434e, RBX: 0x0000000000000000, RCX: 0xffffff7f85ab4a58, RDX: 0x0000000000000000\n" "RSP: 0xffffff807dfb8000, RBP: 0xffffff807dfb8020, RSI: 0x0000000000000012, RDI: 0xffffff801219a004\n" "R8:  0x0000000000000000, R9:  0x0000000000000000, R10: 0xffffff807dfb8310, R11: 0xffffff8011262804\n" "R12: 0xffffff801219a004, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0x0000000000000012\n" "RFL: 0x0000000000010246, RIP: 0xffffff7f85ab435b, CS:  0x0000000000000008, SS:  0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-2050.18.24/osfmk/i386/trap_native.c: 280
    Backtrace (CPU 1), Frame : Return Address
    0xffffff8077f05ec0 : 0xffffff800521d626
    0xffffff8077f05f30 : 0xffffff80052b83c9
    0xffffff8077f060a0 : 0xffffff80052ceddf
    0xffffff807dfb8020 : 0xffffff7f85d0fad2
    0xffffff807dfb8180 : 0xffffff7f85d16ab3
    0xffffff807dfb8270 : 0xffffff7f8597fe86
    0xffffff807dfb8310 : 0xffffff7f85993614
    0xffffff807dfb83d0 : 0xffffff7f859be590
    0xffffff807dfb85c0 : 0xffffff7f859bea2e
    0xffffff807dfb86b0 : 0xffffff7f86a5baea
    0xffffff807dfb8710 : 0xffffff7f86a587b3
    0xffffff807dfb8750 : 0xffffff7f86a56655
    0xffffff807dfb8780 : 0xffffff7f86a07f23
    0xffffff807dfb87a0 : 0xffffff7f86a07f99
    0xffffff807dfb87d0 : 0xffffff7f86a221d5
    0xffffff807dfb8800 : 0xffffff7f86a081ea
    0xffffff807dfb8860 : 0xffffff7f86a07ff4
    0xffffff807dfb88a0 : 0xffffff7f86a09598
    0xffffff807dfb88e0 : 0xffffff7f86a07dc2
    0xffffff807dfb8910 : 0xffffff7f86a6caf1
    0xffffff807dfb8950 : 0xffffff7f86a088c5
    0xffffff807dfb8980 : 0xffffff7f86a379c2
    0xffffff807dfb89d0 : 0xffffff7f86a56162
    0xffffff807dfb89e0 : 0xffffff7f86a58a69
    0xffffff807dfb8a10 : 0xffffff7f86a5b825
    0xffffff807dfb8b40 : 0xffffff7f86a5b4f5
    0xffffff807dfb8c80 : 0xffffff7f86a5aefe
    0xffffff807dfb8c90 : 0xffffff7f86a32cfb
    0xffffff807dfb8ca0 : 0xffffff7f86a07fa8
    0xffffff807dfb8cd0 : 0xffffff7f86a221d5
    0xffffff807dfb8d00 : 0xffffff7f86a081ea
    0xffffff807dfb8d60 : 0xffffff7f86a07ff4
    0xffffff807dfb8da0 : 0xffffff7f86a09598
    0xffffff807dfb8de0 : 0xffffff7f86a07dc2
    0xffffff807dfb8e10 : 0xffffff7f86a6caf1
    0xffffff807dfb8e50 : 0xffffff7f86a088c5
    0xffffff807dfb8e80 : 0xffffff7f86a379c2
    0xffffff807dfb8ed0 : 0xffffff7f86a56162
    0xffffff807dfb8ee0 : 0xffffff7f86a58a69
    0xffffff807dfb8f10 : 0xffffff7f86a5b825
    0xffffff807dfb9040 : 0xffffff7f86a5b4f5
    0xffffff807dfb9180 : 0xffffff7f86a5aefe
    0xffffff807dfb9190 : 0xffffff7f86a32cfb
    0xffffff807dfb91a0 : 0xffffff7f86a07fa8
    0xffffff807dfb91d0 : 0xffffff7f86a221d5
    0xffffff807dfb9200 : 0xffffff7f86a081ea
    0xffffff807dfb9260 : 0xffffff7f86a07ff4
    0xffffff807dfb92a0 : 0xffffff7f86a09598
    0xffffff807dfb92e0 : 0xffffff7f86a07dc2
    0xffffff807dfb9310 : 0xffffff7f86a6caf1
    0xffffff807dfb9350 : 0xffffff7f86a088c5
    0xffffff807dfb9380 : 0xffffff7f86a379c2
    0xffffff807dfb93d0 : 0xffffff7f86a56162
    0xffffff807dfb93e0 : 0xffffff7f86a58a69
    0xffffff807dfb9410 : 0xffffff7f86a5b825
    0xffffff807dfb9540 : 0xffffff7f86a5b4f5
    0xffffff807dfb9680 : 0xffffff7f86a5aefe
    0xffffff807dfb9690 : 0xffffff7f86a32cfb
    0xffffff807dfb96a0 : 0xffffff7f86a07fa8
    0xffffff807dfb96d0 : 0xffffff7f86a221d5
    0xffffff807dfb9700 : 0xffffff7f86a081ea
    0xffffff807dfb9760 : 0xffffff7f86a07ff4
    0xffffff807dfb97a0 : 0xffffff7f86a09598
    0xffffff807dfb97e0 : 0xffffff7f86a07dc2
    0xffffff807dfb9810 : 0xffffff7f86a6caf1
    0xffffff807dfb9850 : 0xffffff7f86a088c5
    0xffffff807dfb9880 : 0xffffff7f86a379c2
    0xffffff807dfb98d0 : 0xffffff7f86a56162
    0xffffff807dfb98e0 : 0xffffff7f86a58a69
    0xffffff807dfb9910 : 0xffffff7f86a5b825
    0xffffff807dfb9a40 : 0xffffff7f86a5b4f5
    0xffffff807dfb9b80 : 0xffffff7f86a5aefe
    0xffffff807dfb9b90 : 0xffffff7f86a32cfb
    0xffffff807dfb9ba0 : 0xffffff7f86a07fa8
    0xffffff807dfb9bd0 : 0xffffff7f86a13b13
    0xffffff807dfb9c00 : 0xffffff7f86a080e3
    0xffffff807dfb9c60 : 0xffffff7f86a07ff4
    0xffffff807dfb9ca0 : 0xffffff7f86a09598
    0xffffff807dfb9ce0 : 0xffffff7f86a07dc2
    0xffffff807dfb9d10 : 0xffffff7f86a6caf1
              Backtrace continues...
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85951 000->0xffffff7f85c53fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f858af000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f8593d000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f858fa000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5c61000->0xffffff7f85f83fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f859 51000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f858af000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86a02000 ->0xffffff7f86ac4fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f859 51000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f8593d000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f858af000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f858fa000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005000000
    Kernel text base: 0xffffff8005200000
    System model name: MacBookPro5,1 (Mac-F42D86C8)
    System uptime in nanoseconds: 42669121263477
    last loaded kext at 22177865270324: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f874c2000, size 16384)
    last unloaded kext at 22241738162614: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f874c2000, size 12288)
    loaded kexts:
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleLPC          1.6.0
    com.apple.GeForce          8.0.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

    Since you don't have an third-party extensions, and if you don't have any hardware attached (can't see 'cuz you cut that off), then it is likely an internal hardware problem a ~Bee suggested.
    Have you replaced RAM, recently?
    Apple had some problems with the logic board/graphics of the Mid 2010 Macbook Pro, but I hadn't seen anything on your model.

  • How can I write a query for this?

    I have a table as below ,
    room.........date.............inventory
    A..............01/01.................5
    A..............01/02.................5
    A..............01/03.................5
    A..............01/05.................5
    A..............01/06.................5
    A..............01/07.................8
    I want the output as below
    room.....begin_date........end_date......inventory
    A............01/01.................01/03..........5
    A............01/05.................01/06..........5
    A............01/07.................01/07..........8
    Is there any suggestion?
    Thanks
    null

    with x as
    (select 'A' room, to_date ('01/01/2007', 'mm/dd/yyyy') d, 5 i from dual union all
    select 'A' room, to_date ('01/02/2007', 'mm/dd/yyyy') d, 5 i from dual union all
    select 'A' room, to_date ('01/03/2007', 'mm/dd/yyyy') d, 7 i from dual union all
    select 'A' room, to_date ('01/04/2007', 'mm/dd/yyyy') d, 7 i from dual union all
    select 'A' room, to_date ('01/05/2007', 'mm/dd/yyyy') d, 5 i from dual union all
    select 'A' room, to_date ('01/06/2007', 'mm/dd/yyyy') d, 5 i from dual
    select min (d)
         , max (d)
         , min (i)
      from (
    select room
         , d
         , i
         , max (g) over (order by d) mg
      from
    (select room
         , d
         , i
         , case when lead (i) over (partition by grp order by d) = i
           then rownum
           end  g
    from (
    select room
    , d
    , i
    , d - rownum grp
    from x
    order by d
    group by mg

  • I want sql query for this output

    hi guys
    could u tell how can i write sql query for this out put
    i have one table like this
    ID ACCOUTID TAX
    1 1 A
    2 1 B
    3 2 C
    4 2 D
    5 3 E
    7 NULL F
    8 NULL G
    MY OUT PUT MUST BE LIKE THIS
    ID AID TAX
    2 1 A
    4 2 D
    7 NULL F
    8 NULL G
    HERE IN THIS OUTPUT I SHOULD HAVE
    MAXIMAM ID VALUE FOR A REPEATED AID VALUES
    AND
    THE ROWS AID VALUES IS NULL ALSO MUST PAPULATED IN THE OUTPUT.
    I KNOW ONE SOLUTION LIKE THIS
    SELECT MAX(ID),AID,TAX
    FROM TABLE T
    GROUP BY AID,TAX
    UNION ALL
    SELECT ID, AIC,TAX
    FROM TABLE T
    WHERE AID IS NULL;
    BUT I WANT SAME RESULT WITH OUT USING LOGICAL OPERATORS.
    COULD U PLZ TELL A SOL.

    Will this help:
    SQL> with t as
      2    (
      3      select 1 ID, 1 ACCOUTID, 'A' TAX from dual union all
      4      select 2, 1, 'B' from dual union all
      5      select 3, 2, 'C' from dual union all
      6      select 4, 2, 'D' from dual union all
      7      select 5, 3, 'E' from dual union all
      8      select 7, NULL, 'F' from dual union all
      9      select 8, NULL, 'G' from dual
    10    )
    11  --
    12  select id, ACCOUTID AID, Tax
    13  from
    14  (
    15    select t.*
    16          ,count(1)       over (partition by t.ACCOUTID) cn
    17          ,row_number()   over (partition by t.ACCOUTID order by id desc) rn
    18    from t
    19  )
    20  where cn > 1
    21  and (rn = 1 or ACCOUTID is null)
    22  /
            ID        AID T
             2          1 B
             4          2 D
             8            G
             7            F
    -- If I leave out the OR condition then you'll get this:
    SQL> ed
    Wrote file afiedt.buf
      1  with t as
      2    (
      3      select 1 ID, 1 ACCOUTID, 'A' TAX from dual union all
      4      select 2, 1, 'B' from dual union all
      5      select 3, 2, 'C' from dual union all
      6      select 4, 2, 'D' from dual union all
      7      select 5, 3, 'E' from dual union all
      8      select 7, NULL, 'F' from dual union all
      9      select 8, NULL, 'G' from dual
    10    )
    11  --
    12  select id, ACCOUTID AID, Tax
    13  from
    14  (
    15    select t.*
    16          ,count(1)       over (partition by t.ACCOUTID) cn
    17          ,row_number()   over (partition by t.ACCOUTID order by id desc) rn
    18    from t
    19  )
    20  where cn > 1
    21* and rn = 1
    SQL> /
            ID        AID T
             2          1 B
             4          2 D
             8            G
    --which follows the description you've given, but not the output

  • What to do when my iPhone is asking for password of old apple I.D. when I don't have it and have created a new applie i.d.  Can anyone please help me on this issue?

    Can anyone please help me on this issue "What to do when my iPhone is asking for password of old apple I.D. when I don't have it and have created a new applie i.d."??

    Sir, Thank you very much for your prompt response.  I have already done this.  But the problem is still persisting.  Actually, I want to upgrade my WhattsApp application and as soon as I click the upgrade button in App Store, it asks for the password of previous apple i.d., which I don't have as I have bought this phone from somebody.  There is no option for log out or log in.  It there any other way out to upgrade the WhatsApp ????

  • HT4623 I can't seem to get my keypad shortcuts to work on my iphone 4 after the ios6 update.  Anyone have a fix for this??  Apple???

    I can't seem to get my keypad shortcuts to work on my iphone 4 after the IOS 6 update.  Anyone have a resolution for this???  Apple???

    Unless Verizon has a special provision in this regard that ATT has never had, Apple handles all iPhone repairs and exchanges under Apple's warranty.
    There is a setting when capturing photos - Automatic, On, or Off for the flash when capturing photos.
    If there is no flash when set to On or Automatic in a dark setting and no change after the standard troubleshooting steps which in order are:
    Power your iPhone off and on.
    An iPhone reset.
    Restoring your iPhone with iTunes from the backup.
    Restoring your iPhone with iTunes as a new iPhone or not from the backup.
    Your iPhone has a hardware problem. You can call AppleCare or make an appointment at an Apple store if there is one nearby.

  • So I  downloaded acrobat XI Standard from the Adobe website, when I go to install it, it says "Adobe XI Pro" at the top left corner. Can anyone shed some light on this for me? I have a volume license for XI Std. so I would like to use the Std. version.

    So I  downloaded acrobat XI Standard from the Adobe website, when I go to install it, it says "Adobe XI Pro" at the top left corner. Can anyone shed some light on this for me? I have a volume license for XI Std. so I would like to use the Std. version.

    login and download your software from the adobe volume licensing website, Customer resources | Adobe Buying Programs

Maybe you are looking for

  • Access my flat file, which is located on client machine

    Hi all, I have configure Webutil on ApplicationServer to access flat file contents which is located on client machine also configure all of the required parameter. file open Dialog box open successfuly but after selecting flat file from client machin

  • How do I center align the text in my text boxes if they are currently right aligned?

    I created a client questionnaire in Word and then turn it into a PDF and created the text boxes necessary. The problem I am having in Adobe XI Pro is that I want all of the text in my text boxes to be centrally aligned rather than left aligned. Howev

  • Moving iTunes Library from iPhone 3G to MacBook Pro - Help Please

    I bought my first MacBook Pro last Summer and have since bought a second. Problem is, my iTunes library is on my company Dell Latitude 620 and my iPhone 3G. How do I get the library to my MacBook Pro? thanks!

  • Connection Pooling much faster but eventually brings down the site

    Hello, We are running Oracle 11g, with ODP.net. When we have connection pooling turned off the site is very slow. When we turn it on, the site runs very fast, but will all of a sudden slow down to a crash and require an IIS restart. (We will receive

  • Converting PDF CID fonts to .ai

    Hi. Does anyone know how to deal with fonts in Acrobat files that don't show up in Illustrator? Please take a look at this thread http://forums.adobe.com/thread/762863?tstart=0 and you'll see what the problem is. The font appears to be Syntax, which