Looking for some tips on Decoding date. TX

HI,I still have problem with this decode. I need to count students group by their region on each month. The output should be
COUNTRY OCT NOV DEC .....
USA 5 20 30
CAN 100 1 0
MEX 10 20 30
The date format is 5/19/2007
This is my code: and thanks for your help
WITH Q AS (SELECT DISTINCT A.STDID, A.NUMBER, A.ADMIT
FROM PROG A
JOIN CITIZEN B ON A.STDID = B.STDID
JOIN REGION_TBL C ON C.REGION = B.REGION
AND A.NUMBER = 'PS'
AND A.ADMIT IN ('2007','2008'))
SELECT J.REGION, I.DESCR,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '09', 1, 0))) SEP_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '10', 1, 0)))OCT_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '11', 1, 0)))NOV_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '12', 1, 0)) )DEC_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '1', 1, 0)) )JAN_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '2', 1, 0)) )FEB_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '3', 1, 0)) )MAR_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '4', 1, 0)) )ARL_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '5', 1, 0)) )MAY_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '6', 1, 0)) )JUN_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '7', 1, 0)) )JUL_TOTAL,
SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '8', 1, 0)) )AUG_TOTAL
FROM CITIZEN J
JOIN PROG L ON J.STDID = L.STDID
JOIN Q ON J.STDID = Q.STDID
AND Q.NUMBER = J.NUMBER
GROUP BY J.REGION, I.DESCR

SUM(DECODE(TO_CHAR(L.ACTION_DT,'YYYY-MM-DD', '09', 1, 0))) SEP_TOTAL,Apart from having brackets in the wrong place you are comparing a date that you are converting to a string in the format YYYY-MM-DD to a string that is 1 or 2 digit number.
This should be something like
SUM(DECODE(TO_CHAR(L.ACTION_DT,'MM'),'09',1,0)) as SEP_TOTAL,

Similar Messages

  • I am looking for some advice on data roaming in Lanzarote

    Hi All I am going to Lanzarote in a few days and I am looking for some advice on data roaming, what add on's are available and how much will it cost.There isn't much info on the website.Also my son is on Orange, does anyone know what the charges will be for him? We are both on pay monthly. Thanks 

    Buying a bundle doesn't mean that your device will work aborad you need to make sure roaming is enabled on your account.
    If you have a EE extra plan you still need to make sure roaming is enable on your account your plan only gives you free/cheaper calls when abroad.
    If your wanting to enable roaming on your account there could be a deposit to pay if you haven't had the device for about 6 months.
    Unless you have paid the deposit then roaming is not enabled on your account.
    You need to activate roaming on your account by calling 150 from your device or from a landline 01707 315000 before you leave the UK.
    But you can still do this if you are abroad.
    If you have had the device/contract for 6 months or over you can login to your online account and turn on roaming yourself
    Manage this device>Usage controls>Roaming abroad - Allow and Call abroad and turn it on. If the option is not there you need to call
    It can take 24 hours to activate
    If you had this device/contract for under 6 months you need to call customer services on +44 7953 966250 from a landline.
    Once you have activated roaming you can then use this link to see what cost there is and what bundles you can have.
    http://explore.ee.co.uk/roaming/ee
    Please read this about voicemail
    http://ee.co.uk/help/getting-started/setting-up-voicemail/divert-to-voicemail
    And this
    http://ee.co.uk/articles/set-up-your-phone-for-using-abroad
    Also sending a text to 150 with the words of RO country your going to i.e. RO Spain will get you a reply of what the costs will be from that country.

  • Looking for some assistancte in GUI_DOWNLOAD

    Hi there,
    See I have this exercise I have to do here. Basically I have to create a program that will download the contects of SBOOK to my pc. I have to use GUI_DOWNLOAD in this exercise. Also, the user will have to input the path and file name of the file to be downloaded to. I have place appropriate error message on the screen as well but I'm not sure how to do this.Being relatively new to this, I tried looking for some samples and this is what I came up so far.
    REPORT  ZISTANZS_TRNG_EX9C.
    TABLES: SBOOK.
    PARAMETERS: FILEINP(30) DEFAULT 'c:\TEMP\wee.txt' OBLIGATORY.
    DATA: BEGIN OF ITAB OCCURS 100.
          INCLUDE STRUCTURE SBOOK.
    DATA: END OF ITAB.
    CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
             FILENAME            = FILEINP
             FILETYPE            = 'ASC'
             write_field_separator = 'X'
         TABLES
             DATA_TAB            = ITAB
         EXCEPTIONS
             FILE_OPEN_ERROR     = 1
             FILE_WRITE_ERROR    = 2
             OTHERS              = 3.
    Unfortunately, it doesn't work though. It keeps saying that my FILENAME is not the same data type as FILEINP? I'm asking for some assistance in how this can be properly solved? Any help would be appreciated /

    Hi,
    Please refer the code below:
    * File download, uses older techniques but achieves a perfectly
    * acceptable solution which also allows the user to append data to
    * an existing file.
      PARAMETERS: p_file like rlgrap-filename.
    * Internal table to store export data
      DATA: begin of it_excelfile occurs 0,
       row(500) type c,
       end of it_excelfile.
      DATA: rc TYPE sy-ucomm,
            ld_answer TYPE c.
      CALL FUNCTION 'WS_QUERY'
           EXPORTING
                query    = 'FE'  "File Exist?
                filename = p_file
           IMPORTING
                return   = rc.
      IF rc NE 0.                       "If File alread exists
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
    *          TITLEBAR              = ' '
    *          DIAGNOSE_OBJECT       = ' '
               text_question         = 'File Already exists!!'
               text_button_1         = 'Replace'
    *          ICON_BUTTON_1         = ' '
               text_button_2         = 'New name'
    *          ICON_BUTTON_2         = ' '
    *          DEFAULT_BUTTON        = '1'
    *          DISPLAY_CANCEL_BUTTON = 'X'
    *          USERDEFINED_F1_HELP   = ' '
    *          START_COLUMN          = 25
    *          START_ROW             = 6
    *          POPUP_TYPE            =
          IMPORTING
               answer                = ld_answer
    *     TABLES
    *         PARAMETER              =
          EXCEPTIONS
              text_not_found         = 1
              OTHERS                 = 2.
    * Option 1: Overwrite
        IF ld_answer EQ '1'.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
    *            BIN_FILESIZE            =
                 filename                = p_file        "File Name
                 filetype                = 'ASC'
    *       IMPORTING
    *            FILELENGTH              =
            TABLES
                data_tab                = it_excelfile   "Data table
            EXCEPTIONS
                file_write_error        = 1
                no_batch                = 2
                gui_refuse_filetransfer = 3
                invalid_type            = 4
                OTHERS                  = 5.
          IF sy-subrc <> 0.
            MESSAGE i003(zp) WITH
                     'There was an error during Excel file creation'(200).
            exit. "Causes short dump if removed and excel document was open
          ENDIF.
    * Option 2: New name.
        ELSEIF ld_answer EQ '2'.
          CALL FUNCTION 'DOWNLOAD'
            EXPORTING
                 filename            = p_file          "File name
                 filetype            = 'ASC'           "File type
    *             col_select          = 'X'            "COL_SELECT
    *             col_selectmask      = 'XXXXXXXXXXXXXXXXXXXXXXXXXX'
    *                                                   "COL_SELECTMASK
                 filetype_no_show    = 'X'     "Show file type selection?
    *       IMPORTING
    *             act_filename        = filename_dat
            TABLES
                 data_tab            = it_excelfile    "Data table
    *            fieldnames          =
            EXCEPTIONS
                 file_open_error     = 01
                 file_write_error    = 02
                 invalid_filesize    = 03
                 invalid_table_width = 04
                 invalid_type        = 05
                 no_batch            = 06
                 unknown_error       = 07.
        ENDIF.
      ELSE.                               "File does not alread exist.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
    *          BIN_FILESIZE            =
               filename                = p_file         "File name
               filetype                = 'ASC'          "File type
    *     IMPORTING
    *          FILELENGTH              =
          TABLES
               data_tab                = it_excelfile   "Data table
          EXCEPTIONS
               file_write_error        = 1
               no_batch                = 2
               gui_refuse_filetransfer = 3
               invalid_type            = 4
               OTHERS                  = 5.
        IF sy-subrc <> 0.
          MESSAGE i003(zp) WITH
                   'There was an error during Excel file creation'(200).
          exit. "Causes short dump if removed and excel document was open
        ENDIF.
      ENDIF.
    Thanks,
    Sriram Ponna.

  • I'm looking for some inspiration here on how best to set up my TC

    Copied from a post else where, any help greatly appreciated!!
    I'm looking for some inspiration here on how best to set up my TC for my needs & wondering how others do for similar needs....
    I have a 2TB TC that I have set up so that all of mine & my girlfriends photo's, music, movies & documents are on the one location so that we can access it wirelessly from both our MacBooks & also from a MacMini which I'm going to buy in a month or 2. Changing the location for where iTunes & iPhoto look wasn't a problem but browsing through iPhoto in particular is really slow due to the number of previews I presume, and also we are now unable to have any of the media with us when traveling about, synching phones on the move is a disaster as well!
    Anyway,
    is there an easy way of setting up iTunes / iPhoto so that we can have all the data on the TC managed on the MacMini but import small iTunes Playlists & iPhoto Albums to our MacBooks without having to change in preferences where the applications look for data each time we get home?
    Any help anybody can offer would be grand!
    Thanks in advance.........

    You topic might be better suited for the iPhoto or iTunes forums, since your question seems to be with the application(s) functionality, not really the Time Capsules. However, if you start iPhoto or iTunes while holding down on the "option/alt" key, you can manually select a library to access. When you want one of your computers to access the library on the Time Capsule, make sure it's mounted as a shared volume on your Desktop and then open iTunes and point it towards the library on the Time Capsule. If you want to use a smaller library on your computer, open iTunes and point it to the library on your Mac. I've never switched back and forth multiple times between multiple libraries, so you might check in the iPhoto or iTunes forums to see if any issues may arise from doing this repeatedly.
    -Doug

  • Looking for some RAW + JPEG Workflow suggestions

    I'm looking for some suggestions on how best to organize my workflow now that I've started shooting with RAW +JPEG. I previously shot only in RAW, but the time spent in post-production was killing me. I've realized that for 95% of my shots that already have the correct exposure, white balance, etc, a JPEG photo is really all I need and saves me a ton of time. I've become convinced that editing every single photo from a shoot in RAW is overkill. I want to have the RAW versions, however, to rescue that occasional great shot where I unfortunately miffed the settings.
    Through reading other posts here and experimenting, I've found that Aperture basically defulats to showing me only the imported RAW photos and that I need to click "New Version from Master JPEG" to see the JPEG version. This seems counterintuitive to the workflow I'd like to establish though. (i.e. I'm thinking it would be nice to see only the JPEG versions, and then only bring up the RAW version when the photo needs some serious correction).
    I suppose I could highlight the entire batch of imported photos and select "New Version from Master JPEG" and then sort through each RAW/JPEG stack, but I'm still hoping there's a less cumbersome way. Anyone out there have any good workflow suggestions for this issue? I'm curious how other people out there deal with this issue in their workflow.
    Thanks in advance!
    Message was edited by: Nate Cannon

    Try this - I do this as a matter of course:
    -select all of the photos after importing them into a project
    -create a new album from selection/call it JPG
    -with all of the images still selected create new version from master JPEG. all of these should now be the album pick
    -close all stacks, the JPEG will be the one showing up on top for that album.
    RB
    More here: [Aperture RAW+JPG|http://photo.rwboyer.com/2009/01/14/aperture-2-quick-tip-shooting-rawjp g>

  • Looking for some info, Creative is not much help.

    Looking for some info, Creative is not much help. Ok, right now I have an Audigy 2 ZS Platinum. It can use the digital inputs to decode either Dolby Digital, DD EX, DTS, and DTS ES to the analog speaker outputs. (Also a 5. setup.)
    I recently built a new PC, and would like to replace the sound card, but I use that feature (as well as some others). Seeing how Creative doesn't want to easily display the capabilities of there cards, I would like someone to let me know what card will allow the fallowing in Windows XP, Vista, and theoretically Windows 7.
    Hardware decoding of Dolby Digital, DD EX, DTS, and DTS ES and allow a proper 5. playback through analog speakers.
    Recording of whatever is playing out of the the speakers. The recording selection is labeled "What U Hear")
    The reasons behind me wanting to buy a new card are simply that I would prefer to run it through PCI-Express, and have full compatibility at the release of Windows 7 without any loss of features I need. From what I can tell, if things work in Windows Vista they will work in [email protected]

    All I can say to you (someone correct me if I'm wrong) is that Xtremegamer's doesn't decode DD/DTS via hardware with official drivers (altough they're capable of - all X-Fi are capable of decoding). XtremeMusic does the job with official drivers. I don't know the rest of the models. Someone adds [email protected]

  • Looking for some RAID storage ideas...can anyone help?

    Hi, I'm looking for some recommendations out there. I'm going to be getting a new PowerMac tower with a cinema display and will also be looking to get some RAID-type storage for it so that I can do lots of video editing and photo storage.
    Ideally, I'd like to get a rack-type storage with swappable drives much like the XServe RAID but I don't need it to have server capabilities like the XServe does, i.e. I'm not going online with anything. This is purely going to be working as an external storage tower that two adjeacent computers will be directly firewired to.
    Obviously, the XServe would fit this, but like I said, I don't need the computer/server capability and also would not want to spend $6000 just for a single TB of storage that the XServe has. I'm thinking more along the lines of a swappable drive rack system like the old Avid systems used to have 10 years ago. Does anyone know if Apple makes such a thing? Or if any third party companies do?
    Thanks.

    If you are using typical DV cameras you don't need striped RAID to capture the video or edit it either. And striped means you lose one drive you lose two drives worth of data.
    The LaCie Bigger and Biggest disks may be suitable solutions, they are hardware RAIDed internally and come in 1 and 1.5TB models, using FW 800 they are plenty fast for video.

  • Looking for nice Tips and Tricks on mac os 10.6?

    hello, i'm a new mac user and just looking for some amazing tips and tricks i could try on my new mac.
    thank you

    JoeyG15 wrote:
    Hello, thank you for the warm welcome..and i have a IMac 27 inch and i love it. no crashes no virus my life so complete now and i am just looking for any type of tips that i could tried on my new mac computer.
    thank you
    You are very welcome. I will mention one thing not to do. Don't start down loading any of the system clogging freeware that is out there. Learn to do real Mac trips; not to use the sub-par software that is out there. I'll find the thread that I mentioned above for you. Edit: Here it is: http://discussions.apple.com/thread.jspa?messageID=10430346&#10430346. Check out especially the third post on this thread. These are the kinds of things I would advise your to start learning about.

  • Looking for some assurances that I haven't made a mistake switching to Mac.

    Bought an intel-powered IMac 9 days ago and love everything about it's look, functionality, etc.. Only problem: I've had a bout of "Application has closed unexpectedly" occcurrances while using Safari (while at AOL.com deleting emails from aol account) and while editing pics in iPhoto. As this happened time and again, I got a sad, sinking feeling that I'm headed for the same frustrations that I've had w/ every Windows machine I've ever owned. Ugh!..I switched to Apple for the specific purpose of avoiding crashes!!! Apple support walked me through steps to fix (removed/updated Quicktime, and check a few other things..). They were very helpful, but... I absolutely detest having to do this. Other than Office:Mac, i've added nothing to this machine! I'm really stressed about this. I paid far more for this than I would have for a Windows machine simply because I had heard that Apple machines don't do this sort of thing!!
    Please tell me that this is normal and expected with a new machine and not a harbinger of more complicated problems to come!! I'm hoping that once resolved, I won't much more of this.. On the other hand, if many of you feel that this issue is a bad omen, I'll take the machine back while I still can. ..What a pity though, it's truly been a joy to use so far.
    IMAC (early 2006)   Mac OS X (10.4.4)  

    Hi syd123! And Welcome to Discussions!
    No you haven't made a mistake! You will love your Mac!
    Deleting AOL Mail, crashes Safari (Consolidation)
    It seems the most recent Safari, and or 10.4.4, update has created this problem.
    Apple & AOL are both aware of this, but, as far as I know, no correction has been implemented.
    Here are some of the work arounds, that I have been able to discern from the various posts regarding this issue.
    Use the FIREFOX BROWSER.
    Use your AOL Mail program.
    Use this utility AOL SERVICES ASSISTANT, to set up Apple Mail, to access AOL Mail.
    Access the AOL Mail thru Classic AOL Webmail.
    And here are links, to the various threads, discussing this issue.
    <a href="http://discussions.apple.com/thread.jspa?threadID=314479&start=0&tstart=0 "Safari and AOL</a>
    AOL/ Delete/ Safari crash
    safari crashing with aol.com mail deletion
    AOL Webmail and Safari on 10.4.2 crashes on delete mail
    Update 10.4.4 causes crash
    Safari crashes when deleting email on AOL
    Safari Update
    Safari Crashes AOL mail
    Safari Crashes when Deleting or Reporting E-Mail as SPAM on AOL Web Mail
    Looking for some assurances that I haven't made a mistake switching to Mac. This Thread
    Good Luck!
    ali b

  • I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling. I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get the

    I'm looking for some help connecting linksys IP Cameras to my home network to monitor my property when I'm travelling.  I used to do this with linksys WAPS, but since I've discarded all my old linksys networking and standardized on airport, I can't get these things working.  I know that I have to identify my camera through the DHCP table and set up port forwarding and there is the problem. 
    My network consists of 4  base stations set up in a roaming network - same network name and passwords.  I need to do it this way so I don't have to switch network when I move from one side of the house to the other, go to the cabana, or my shop in the barn.  The network works pretty well since I went to a roaming set up.  Good performance, yata, yata, yata.
    However, the roaming network requires the AEBS's to be set up in bridge mode, rather than sharing an ip address.  When the AEBS is set to  bridge mode, you don't see a DCHP table or have the ability to identify your IP Cam through the AEBS - and hence, no port forwarding. 
    I am able to identify and set up my Linksys IP Cam by locating the ip address on my FIOS router, even though, it's plugged into an AEBS.  I set it up, see the video, remove the ethernet cable from the IP Cam, restart - and I can't get to it from an AEBS.  In researching this, it appears, I should be setting up the AEBS to "share an IP Address", going to the DHCP table and identifying the camera's IP address and setting up port forwarding.  However, you don't see any of the DHCP or port forwarding options in Airport Network Utility when configuring in bridge mode. 
    I'm hoping I'm missing something here and that the solution isn't to set it up at the FIOS router level, but I'm beginning to think that's my only hope.  What concerns me there is that I should be able to see the IP cam on the network without port forwarding since I'm not coming from outside, and I can't even do this unless it's connected hard wire.
    I'd appreciate any insight into this that anyone might have.  I've hit the wall with what I know.
    Thanks.

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • Looking for some advice dealing with Kernel Panics

    Hi there! I'm looking for some help regarding constant kernel panics I've been getting on my machine. It has been happening pretty regularly for the last month or so, occuring sometimes three times in one day and other times none. I've been looking to see what might cause the issue and have thus far come up emptyhanded. I can't think of anything I've modified recently that would be causing the issue. I performed a hardware test using AHT and no errors were found. I've included both the most recent report from the panic as well as the EtreCheck report. Any and all advice is appreciated!
    Thanks in advance!
    Anonymous UUID:       D680EEB6-4BD2-B93C-318E-D6D262CA3B53
    Mon Apr 28 17:28:08 2014
    panic(cpu 0 caller 0xffffff7f875b6fb0): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811c014000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.35/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f57cb140 : 0xffffff8005222fa9
    0xffffff80f57cb1c0 : 0xffffff7f875b6fb0
    0xffffff80f57cb290 : 0xffffff7f85c94eab
    0xffffff80f57cb350 : 0xffffff7f85d5e49a
    0xffffff80f57cb390 : 0xffffff7f85d5e50a
    0xffffff80f57cb400 : 0xffffff7f85fdd056
    0xffffff80f57cb530 : 0xffffff7f85d81b39
    0xffffff80f57cb550 : 0xffffff7f85c9b8fd
    0xffffff80f57cb600 : 0xffffff7f85c99408
    0xffffff80f57cb800 : 0xffffff7f85c9a386
    0xffffff80f57cb8e0 : 0xffffff7f86c0c9c2
    0xffffff80f57cb920 : 0xffffff7f86c1c37f
    0xffffff80f57cb940 : 0xffffff7f86c4a33b
    0xffffff80f57cb980 : 0xffffff7f86c4a39b
    0xffffff80f57cb9c0 : 0xffffff7f86c21e15
    0xffffff80f57cba10 : 0xffffff7f86bedb5e
    0xffffff80f57cbaa0 : 0xffffff7f86be9ae7
    0xffffff80f57cbad0 : 0xffffff7f86be7636
    0xffffff80f57cbb00 : 0xffffff80056cbe03
    0xffffff80f57cbb90 : 0xffffff80056cdcff
    0xffffff80f57cbbf0 : 0xffffff80056cb81f
    0xffffff80f57cbd40 : 0xffffff80052b6558
    0xffffff80f57cbe50 : 0xffffff8005226bf1
    0xffffff80f57cbe80 : 0xffffff80052139f5
    0xffffff80f57cbef0 : 0xffffff800521e043
    0xffffff80f57cbf70 : 0xffffff80052c976d
    0xffffff80f57cbfb0 : 0xffffff80052f3b46
          Kernel Extensions in backtrace:
             com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000->0xffffff7f85eadfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f85c35000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.2.4)[B0E6AAA7-E970-3D81-8B43-145D56 A3A4AC]@0xffffff7f85eb8000->0xffffff7f86161fff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
             com.apple.driver.AppleMuxControl(3.4.35)[1BFF66C1-65E4-3BB3-9DEE-B61C3137019B]@ 0xffffff7f875a9000->0xffffff7f875bbfff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.35)[09897896-ACBD-36B5-B1D4-0CCC4000E 3B3]@0xffffff7f875a1000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f85bdd000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f875a4000
             com.apple.GeForceTesla(8.2.4)[B6C71E9A-E304-354B-80AD-C69C9032D367]@0xffffff7f8 6bcc000->0xffffff7f86c96fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f858bb000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[999E29DA-D513-3544-89D1-9885B728A098]@0xff ffff7f85c35000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85b28000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.2.4)[80472F2E-D31D-32C4-88BA-2EB3D63 C159F]@0xffffff7f85c45000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13C64
    Kernel version:
    Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Kernel UUID: 9FEA8EDC-B629-3ED2-A1A3-6521A1885953
    Kernel slide:     0x0000000005000000
    Kernel text base: 0xffffff8005200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 31531656545358
    last loaded kext at 27797939824574: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f876b9000, size 20480)
    last unloaded kext at 27858255752654: com.apple.driver.AppleUSBCDC          4.2.1b5 (addr 0xffffff7f876b9000, size 16384)
    loaded kexts:
    com.splashtop.driver.SRXFrameBufferConnector          1.5
    com.avatron.AVExFramebuffer          1.7
    com.splashtop.driver.SRXDisplayCard          1.5
    com.Cycling74.driver.Soundflower          1.5.2
    com.avatron.AVExVideo          1.7
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.2.3f10
    com.apple.driver.AGPM          100.14.15
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleMikeyDriver          2.6.0f1
    com.apple.driver.AppleHDA          2.6.0f1
    com.apple.driver.AppleIntelHDGraphics          8.2.4
    com.apple.driver.AppleIntelHDGraphicsFB          8.2.4
    com.apple.GeForceTesla          8.2.4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleMuxControl          3.4.35
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.iokit.SCSITaskUserClient          3.6.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.iokit.AppleBCM5701Ethernet          3.8.1b2
    com.apple.driver.AppleUSBEHCI          660.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.AppleGraphicsDeviceControl          3.4.35
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOBluetoothFamily          4.2.3f10
    com.apple.driver.DspFuncLib          2.6.0f1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.5fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.3f10
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.iokit.IOFireWireIP          2.2.6
    com.apple.driver.AppleHDAController          2.6.0f1
    com.apple.iokit.IOHDAFamily          2.6.0f1
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleGraphicsControl          3.4.35
    com.apple.nvidia.classic.NVDANV50HalTesla          8.2.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.nvidia.classic.NVDAResmanTesla          8.2.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.7.0d10
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.CoreStorage          380
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.6
    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.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.iokit.IO80211Family          630.35
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOEthernetAVBController          1.0.3b4
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBFamily          675.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463531323634485A2D3147314431
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463531323634485A2D3147314431
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS725050A9A362, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: iPhone
    USB Device: Built-in iSight
    USB Device: IR Receiver
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Internal Memory Card Reader
    Thunderbolt Bus:
    EtreCheck:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.66 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 512 MB
    System Software:
              OS X 10.9.2 (13C64) - Uptime: 0 days 0:8:28
    Disk Information:
              Hitachi HTS725050A9A362 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        disk0s2 (disk0s2) <not mounted>: 499.25 GB
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. iPhone
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Internal Memory Card Reader
    Thunderbolt Information:
    Configuration files:
              /etc/hosts - Count: 7
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] com.Cycling74.driver.Soundflower (1.5.2) Support
              [kext loaded] com.avatron.AVExFramebuffer (1.7 - SDK 10.8) Support
              [kext loaded] com.avatron.AVExVideo (1.7 - SDK 10.8) Support
              [kext loaded] com.splashtop.driver.SRXDisplayCard (1.5 - SDK 10.8) Support
              [kext loaded] com.splashtop.driver.SRXFrameBufferConnector (1.5 - SDK 10.8) Support
              [not loaded] foo.tap (1.0) Support
              [not loaded] foo.tun (1.0) Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.SwitchBoard.plist Support
              [loaded] com.barebones.authd.plist Support
              [loaded] com.barebones.textwrangler.plist Support
              [loaded] com.bitcasa.BitcasaUpdateCheck.plist Support
              [running] com.cleverfiles.cfbackd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.realvnc.vncserver.plist Support
              [failed] com.splashtop.streamer.SRServiceDaemon.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.CS5ServiceManager.plist Support
              [running] com.amazon.sendtokindle.launcher.plist Support
              [failed] com.bitcasa.BitcasaUI.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [loaded] com.realvnc.vncserver.peruser.plist Support
              [not loaded] com.realvnc.vncserver.prelogin.plist Support
              [failed] com.splashtop.streamer.SRServiceAgent.plist Support
              [running] klpr-relay.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.facebook.videochat.[redacted].plist Support
              [running] com.pando.PMB.plist Support
              [failed] com.ruudburger.couchpotatoserver.plist Support
              [failed] com.ruudburger.headphones.plist Support
              [loaded] com.valvesoftware.steamclean.plist Support
    User Login Items:
              runapp.command
              Dropbox
              Alfred 2
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.3.0.18358 Support
              Default Browser: Version: 537 - SDK 10.9
              SlingPlayer: Version: (null) Support
              net.juniper.DSSafariExtensions: Version: (null) Support
              AdobePDFViewerNPAPI: Version: 10.1.9 Support
              FlashPlayer-10.6: Version: 13.0.0.206 - SDK 10.6 Support
              Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.206 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              CitrixICAClientPlugIn: Version: 11.4.3 - SDK 10.0 Support
              googletalkbrowserplugin: Version: 5.3.0.18358 Support
              AdobePDFViewer: Version: 10.1.9 Support
              PandoWebPlugin: Version: PandoWebPlugin 2.3.3.8 Support
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.2.1 - SDK 10.6 Support
              JavaAppletPlugin: Version: Java 7 Update 51 Check version
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              Move-Media-Player: Version: npmnqmp 071706000001 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Perian  Support
    Time Machine:
              Skip System Files: YES - System files not being backed up
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        MyBook [Local]
                        Total size: 2 
                        Total number of backups: 2
                        Oldest backup: 2012-08-22 09:59:19 +0000
                        Last backup: 2013-05-08 19:40:47 +0000
                        Size of backup disk: Excellent
                                  Backup size 2  > (Disk size 0 B X 3)
                        Time Machine Backups [Local] (Last used)
                        Total size: 0 B
                        Total number of backups: (null)
                        Size of backup disk: Excellent
                                  Backup size 0 B > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                 100%          Microsoft Word
                   3%          WindowServer
                   2%          mdworker
                   2%          Google Chrome
                   0%          fontd
    Top Processes by Memory:
              246 MB          iTunes
              180 MB          Google Chrome
              172 MB          WindowServer
              156 MB          com.apple.IconServicesAgent
              131 MB          Microsoft Word
    Virtual Memory Information:
              3.54 GB          Free RAM
              2.59 GB          Active RAM
              730 MB          Inactive RAM
              1.15 GB          Wired RAM
              475 MB          Page-ins
              0 B          Page-outs

    The likely culprit:
    The problem is likely due to the discreet GPU failing. Download gfxCardStatus 2.3 and use it to disable the GPU. This is a temporary workaround until you get your motherboard replaced.
    Possible other causes are the software that installed these:
    com.splashtop.driver.SRXFrameBufferConnector          1.5
    com.avatron.AVExFramebuffer          1.7
    com.splashtop.driver.SRXDisplayCard          1.5
    com.avatron.AVExVideo          1.7
    Now they may be causing panics because the try to use acceleration in the GPU which leads to the panics. You are unlucky to have a particular model that has a real problem with this.

  • Im looking for some assistance in configuring our wireles...

    Im looking for some assistance in configuring our wireless router to allow remote connections into it.. and then from there access any of the 5 computers on our network. I dont have the model number with me now, but just want to know where to start....
    Goal=== to allow me to access our remote locations network and access / vnc into our 5 terminals...
    I just need to know how i can configure the router to allow outside connections and then from there connect to our other machines via VNC...
    Any suggestions on where to start with this?

    in order to access the router remotely , you need to enable remote management on the router and to access the terminals using VNC .. you need to open the ports used by VNC ..

  • Looking for some help in creating an ItemFilter for a Targeter

    Looking for some help in creating an ItemFilter for a Targeter
    Need a examples for creating itemfilter and TargeterFirst

    Hi David,
    We can integrate Syncfusion with LightSwitch application, if you want to customize column when create a report using syncfusion reportviewer, since I didn't try this third party
    extension before, I think you could consider getting help from
    syncfusion forum, more syncfusion experts can help you on this issue.
    Thanks for your understanding.
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Looking for some advice.

    Hi. Hope this is right forum. First post. A brief background. Years ago (2007-2008) I created a web portfolio for school. First it was in HTML (Dreamweaver) and then Flash. I hadn't really touched it in years and decided this past couple of months, after playing in the medium again, to get back into wed design, 3d, and digital content creation. That said, I went in and updated both the HTML and Flash versions with the knowledge I currently have, limited though it is. I now would like to go forward and build a completely new site and teach myself HTML, JavaScript, and WebGL along the way (possibly before hand). Hopefully I'll get working on the new site before the end of the year. In the mean time, I'm using my old site as a stop-gap measure. I've also taken books out from the library to begin journey into the above mentioned languages.
    This all said, I'm looking for some advice on what direction I should go next...look into... Does my current objective seem reasonable? Also, could anyone give feedback on what I did wrong and what I've done right on my old site. I think, as far as what went wrong, the Flash page is just too large. No one wants to wait so long for it to load. I think I got carried away with it. Also, too many sound effects. That said, I think the HTML site was constructed in an "old-fashion" way. No one makes sites like that anymore. I basically set it up in Photoshop, sliced it, and assembled it in Dreamweaver. The end result is a bunch of tables in HTML? A friend suggested I look into a CMS (?) like WordPress?
    Here's my current site: http://www.personal.kent.edu/~mstingle/
    Constructive feedback on what I did right and wrong would be great. And, where I should be looking next for rebuild of my portfolio.
    Cheers.

    WebGL is still  experimental.  Most browsers don't fully support it yet.
    http://caniuse.com/webgl
    The current trend is Responsive Web Design -- layouts that work in all devices (mobile, tablet and desktop).  This technology relies on CSS layouts (no tables) with media queries for different viewport widths.  Below is a crude example built with the FluidGrid Layouts feature in DW CS6 or CC:
    http://alt-web.com/FluidGrid/Fluid2.html  -- resize your browser's viewport to see it in action.
    Flash is dead on the web now because the world's most popular mobile & tablet devices don't support it.  Animations are mostly being built with HTML5, CSS3 and JavaScript.  See Adobe Edge Animate.
    If you're not a skilled coder and just want a basic static web site, Adobe Muse might be all you need.  http://www.adobe.com/products/muse.html   That said, Muse cannot support server-side programming so you can't use it for advanced features like CMSs, blogs, etc...
    If you're a Creative Cloud member, you can use Behance & ProSite to build & share your portfolio online.
    http://www.adobe.com/products/creativecloud/behance-community.html
    http://prosite.com/
    In terms of your own site, ask yourself how much content & which features it will need to support in the coming months/years.  If it's going to be a relatively small site (under 20 pages), a static HTML site is probably all you need.  IMO, WordPress -- a dynamic CMS built with PHP & MySql databases -- would be overkill.  However, if you plan to make your site into a  blog for example, then a dynamic CMS is an option to consider.  WordPress isn't the only kid on the block either.  There's also Drupal, Joomla!, and many more...
    Nancy O.

  • Looking for some advice on what to do about

    So I have a macbook pro - late 2007 model I guess
    2.16 core duo(just before the core 2 duo's i guess)
    2gig's ram
    ATY,RadeonX1600 256mb
    My problem itself is in 3 parts
    1.) My battery fried late 2008(have it running off the adapter since) and I was wondering if my model will fit with the 2008 model batteries? If so do you know how much it would cost(cdn dollars if possible)
    2.) My video card is from what I believe to be ruined/terrible shape. I've been using SMC fan control for awhile to sway the overheating, and it helps but I believe the damage was already done while I did not have it active while using my computer for games and other various things(MBP's seem to run insanely hot?)
    I will be calling the apple store i bought it from tomorrow but I was looking for some advice on any type of diagnostic tests I might be able to do to test my video card as well how much would it cost to replace(assuming you can't upgrade much in a laptop)
    3.) Wondering your opinion on the overall value of the computer with the replacements/without.
    It appears to run perfectly fine though sometimes when program's open up I start to see tearing and pixel's looking crazy all over my screen(assuming a fried video card)

    You can buy the battery design for any old MacBook Pro models (not the unibody). MacBook Pro from the first to the last generation uses the same battery. It cost $129 (not sure how much it cost in Canadian but probably a $20-$30 premium). As for your graphics card, Apple has a one price model for all hardware repairs ($310 or something around there and converted to Canadian probably around $350 to $360). I think you should get it replaced. The only test that I can think of is to re-install the OS and see if the problem occurs, if it does then its most likely a hardware issue. There is no standard test that's widely available. With the replacement I think the computer values in the range of $1800 to $1500) and without the repair I would say about $1350 to $1000 at best.

Maybe you are looking for

  • Itunes 8 won't connect to the internet. Connection is live

    I recently upgraded to version 8 and now it won't connect to the internet. I ran diagnostics and my connection is ok but itunes won't connect. It says that the connection timed out but it pops that message up instantly so it doesn't even have a chanc

  • Selection-screen design

    Hi everyone, I am working on a project for which I have to design a selection-screen. The requirement is such that there are 3 obligatory fields to be filled by the user, which are as follows: P_LAUFD(parameter,obligatory-date), P_LAUFI(parameter,obl

  • Inbound proxy code

    Hi All, I have created one inbound proxy. I implemented the class used and i regenrated it. But method name was different before and after. My code is gone. Is there any way to retrieve it again?? Thanks, Archana

  • Explorer and safari

    i use explorer 5.2 for mac but it keeps crashing. does anyone have any ideas of what i could do to stop this or what may be causing it? ialso have safari but when i try to use it it only opens the homepage and google search works but then seems to ge

  • Can't open CS5 PSD's and Photoshop hangs

    My Mac Pro is fine (clean installs and new hard drive did not clear up this problem, and the issue is also occurring on my laptop), but when I try to open certain PSD's I get this message: The operation could not be completed. An unexpected error occ