Update with subqueries tuning help

I have the following update that does the required job, but undersdtandably it is running really slowly.
update com_mat_stores
set MST_QTY_ISS_TY =  (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                               '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                               '21',  COST_NO_UNITS)),0) STK_QTY
                                    FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                    AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                    OR (COST_CSY_COSTEL IN ('20','21')))),
    MST_VAL_ISS_TY = (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                                                     '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                                                     '21',  COST_VALUE)),0) STK_VAL
                                    FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                    AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                    OR (COST_CSY_COSTEL IN ('20','21'))))
where  MST_QTY_ISS_TY <>  (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                               '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                               '21',  COST_NO_UNITS)),0) STK_QTY
                                    FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                    AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                    OR (COST_CSY_COSTEL IN ('20','21')))) 
OR  MST_VAL_ISS_TY <> (SELECT NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                         '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                         '21',  COST_VALUE)),0) STK_VAL
                                    FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                    AND COST_MST_ID = MST_ID AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M')
                                        OR COST_CSY_COSTEL IN ('20','21')));I managed to get a select for the records changed to use an inline view and this is much faster (see below), but I cannot get this select translated into a update statement. Any help or ideas how to change this. The 2 tables in question are quite large COM_MAT_STORES has 34k and com_costs has 90k that match the criteria (7 million in total). I have checked
SELECT MST_ID, MST_MAT_STOCK_CODE, MST_STO_CODE, MST_QTY_ISS_TY, MST_VAL_ISS_TY, STK_QTY, STK_VAL
              FROM COM_MAT_STORES,  (SELECT  COST_MST_ID CMST,
                                     NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_VALUE) ,
                                                                     '20',  DECODE(SUBSTR(COST_VALUE,1,1), '-', COST_VALUE, COST_VALUE*-1),
                                                                     '21',  COST_VALUE)),0) STK_VAL,
                                     NVL(SUM(DECODE(COST_CSY_COSTEL, '23',  ABS(COST_NO_UNITS) ,
                                                                     '20',  DECODE(SUBSTR(COST_NO_UNITS,1,1), '-', COST_NO_UNITS, COST_NO_UNITS*-1),
                                                                     '21',  COST_NO_UNITS)),0) STK_QTY
                                    FROM COM_COSTS WHERE COST_COST_YEAR = 2009
                                    AND ((COST_CSY_COSTEL = '23' AND COST_TRANS_CODE = 'M') OR (COST_CSY_COSTEL IN ('20','21')))
                                    GROUP BY COST_MST_ID)
           WHERE CMST(+) = MST_ID
           AND (NVL(STK_VAL,0) <> MST_VAL_ISS_TY OR NVL(STK_QTY,0) <> MST_QTY_ISS_TY);Here is the explain plan of the update statement
UPDATE STATEMENT     CHOOSE     56     34119     443547                         
UPDATE COMDBA.COM_MAT_STORES                                             
FILTER                                             
TABLE ACCESS(FULL) COMDBA.COM_MAT_STORES     ANALYZED     56     34119     443547                         
SORT(AGGREGATE)               1     37                         
TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
SORT(AGGREGATE)               1     37                         
TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
SORT(AGGREGATE)               1     37                         
TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              
SORT(AGGREGATE)               1     37                         
TABLE ACCESS(BY INDEX ROWID) COMDBA.COM_COSTS          1     25     925                         
INDEX(RANGE SCAN) COMDBA.COM_COST_14          2     97476                              

As a first step you can remove the unwanted sub queries.
update com_mat_stores
   set (
        mst_qty_iss_ty,
        mst_val_iss_ty
       ) = 
            select nvl(sum(decode(cost_csy_costel, '23',  abs(cost_no_units),
                                       '20',  decode(substr(cost_no_units,1,1), '-', cost_no_units, cost_no_units*-1),
                                '21',  cost_no_units)),0) stk_qty,
            nvl(sum(decode(cost_csy_costel, '23',  abs(cost_value) ,
                                '20',  decode(substr(cost_value,1,1), '-', cost_value, cost_value*-1),
                                '21',  cost_value)),0) stk_val                                                              
       from com_costs
      where cost_cost_year = 2009
        and cost_mst_id = mst_id
        and (
             (cost_csy_costel = '23' and cost_trans_code = 'm')
           or
          (cost_csy_costel in ('20','21'))
where (mst_qty_iss_ty, mst_val_iss_ty) !=
               select nvl(sum(decode(cost_csy_costel, '23',  abs(cost_no_units) ,
                                                               '20',  decode(substr(cost_no_units,1,1), '-', cost_no_units, cost_no_units*-1),
                                                               '21',  cost_no_units)),0) stk_qty,
                      nvl(sum(decode(cost_csy_costel, '23',  abs(cost_value) ,
                                                          '20',  decode(substr(cost_value,1,1), '-', cost_value, cost_value*-1),
                                                          '21',  cost_value)),0) stk_val                                                              
                          from com_costs
                         where cost_cost_year = 2009
                           and cost_mst_id = mst_id
                           and (
                                (cost_csy_costel = '23' and cost_trans_code = 'm')
                                 or
                                (cost_csy_costel in ('20','21'))
                         ) 

Similar Messages

  • Why update with subqueries does not have cost and cardinality?

    There is update.
    update test t1 set dummy = (select dummy from test2 t2 where t1.id = t2.id);Both tables which have actual statistics. Each has 1000 rows. And column ID have values from 1 to 1000 in each table.
    This is explain plan
    | Id  | Operation          | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT   |       |  1000 | 13000 |   426   (9)| 00:00:01 |
    |   1 |  UPDATE            | TEST  |       |       |            |          |
    |   2 |   TABLE ACCESS FULL| TEST  |  1000 | 13000 |   426   (9)| 00:00:01 |
    |*  3 |   TABLE ACCESS FULL| TEST2 |     1 |    13 |   426   (9)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - filter("T2"."ID"=:B1)We can see here, that Oracle consider subquery within update as once-executed subquery.
    This is runtime plan
    | Id  | Operation          | Name  | Starts | E-Rows | A-Rows |
    |   1 |  UPDATE            | TEST  |      1 |        |      0 |
    |   2 |   TABLE ACCESS FULL| TEST  |      1 |   1000 |   1000 |
    |*  3 |   TABLE ACCESS FULL| TEST2 |   1000 |      1 |   1000 |
    Predicate Information (identified by operation id):
       3 - filter("T2"."ID"=:B1)Why first plan does not have cost in step 1?
    Does Oracle always not understand that update with subqueries will performed as NL or filter? In other words that step 3 will executed many times.
    Or it is my bug (or what?)?

    793769 wrote:
    Does Oracle always not understand that update with subqueries will performed as NL or filter? In other words that step 3 will executed many times.
    Or it is my bug (or what?)?It's not possible to say whether this is a bug or a deliberate choice.
    Because of "subquery caching" (see http://jonathanlewis.wordpress.com/2006/11/06/filter-subqueries/ ) the optimizer cannot predict how often the subquery will have to run. So possibly it shows nothing rather than showing the best or worst cases or a pure guess.
    Regards
    Jonathan Lewis

  • Updated with NO SIM - HELP!

    Quick summary: Living in France for 3 months and put AT&T account on hold. They told me that if I accidentally made a call from my phone it would automatically take me off hold and resume my monthly AT&T service fees. So I took the card out. All summer I have been transferring stuff to the phone and using it basically as an iTouch. I just updated my iTunes to get either a podcast or show that required the update and then went to update the phone too to transfer that content to the phone. Whoops. Didn't know you couldn't update the phone without the SIM b/c I have never not had a SIM in there while updating.
    From what I have read, to fix this you install the SIM used to originally activate the phone. That was my husband's old card which he no longer has as he handed the phone down to me. Is there anything I can do to get my phone to connect again?
    Thanks so much for any help you guys can provide.
    Shannon

    I have an AT&T SIM in the phone right now and it is not working. Regarding the need to have the original SIM used to activate the phone, I am not sure that is quite right. The SIM used to activate my phone was used for only about a month and then my husband decided to put the SIM he had in his blackberry into the iPhone and use it for work. He then discovered that his company did not support email on the iPhone so he went back to the blackberry and gave me the phone. I switched to AT&T from Verizon, transferring my number, and AT&T gave me a new SIM and I bought a data plan. Since all this I have updated the phone at least twice and never had this problem. I made these two updates with MY sim in the phone and not my husband's first temporary SIM which is long since gone.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).

    I need to know which update(s) I can apply to help stabalize the system.

    Typing the body of the thread message in the title, huh? -)
    I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).
    Only Apple could hamstring and tie Mac OS to Windows. There isn't any other than whether you can download the drivers into Windows (you can) but Apple puts a block on the installer setup even if your mac does not support it.
    Windows 7 needs at least Boot Camp 3.1 and 3.3 is what you should already have. And you are not getting security updates if you don't have at least 10.6.8 as was pointed out.  --- you arent using Software Update as you should. And you should backup and clone Mac (and Windows) as well.
    You need Mountain Lion to use Boot Camp 5.x which supports Windows 7 & 8 and 64-bit.
    I would upgrade to Lion if you can realizing that Rosetta and PowerPC are no longer supported though.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Boot Camp 5.0 Drivers
    http://support.apple.com/kb/DL1638
    Frequently asked question
    http://support.apple.com/kb/HT4818
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdfcreate a Windows support software (drivers) CD or USB storage media
    http://support.apple.com/kb/HT4407
    The Boot Camp Assistant can burn Boot Camp software (drivers) to a DVD or copy it to a USB storage device, such as a flash drive or hard drive. These are the only media you can use to install Boot Camp software.
    https://support.apple.com/kb/HT4569
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    Instructions for all features and settings.
    Boot Camp 4.0 FAQ Get answers to commonly asked Boot Camp questions.
    Windows 7 FAQ Answers to commonly asked Windows 7 questions.
    http://www.apple.com/support/bootcamp/
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
    Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.
    How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support, click here.

  • After hours of back-up, downloading and uploading...I am now updated with all the latest Mac software. However, I no longer have access to Excel and Word. Is there a way I can access my documents in either of those? Help, please.

    After hours of back-up, downloading and uploading...I am now updated with all the latest Mac software. However, I no longer have access to Excel and Word. Is there a way I can access my documents in either of those? Help, please.

    If you have older versions of excel and word that previously ran under the Rosetta emulator (allows PowerPC code to run on Intel system), they will no longer work with Lion.
    You can use the Apple programs Pages and Numbers to access the files. They can be bought and downloaded from the App store. NeoOffice is available at http://www.neooffice.org/neojava/en/index.php which has Lion support. OpenOffice doesn't talk to Lion support, it's at http://www.openoffice.org/

  • TS1881 Since my last update with itunes I can no longer sync my pictures on my phone to my computer  Can someone help?

    Since my last update with itunes June 17,  I can no longer sync my pictures on my phone to my computer  Can someone help?

    Do other irems sync to the iPod?
    If a PC try:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    Does the iPod in in My Computer?
    If yes canyo see the photoe in the DCIM folder in My Computer>iPod>DCIM?
    Other uses have reported the same problem

  • Bluetooth shuttted down after I updated to Mavericks, please help me !  I am 70 Years old and worked very happy with my iMac (21,5" mid 2010, 3,2 GHz Intel Core 3) until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2. 2 Days all was OK. Next M

    Bluetooth shuttted down after I updated to Mavericks, please help me !
    I am 70 Years old and worked very happy with my iMac (21,5“ mid 2010, 3,2 GHz Intel Core 3)
    until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2.
    2 Days all was OK. Next Morning-Start he needs (until now) 3 minutes to show me a SCREEN only milky white. After that he starts like ever with all ICONS in about 1 minute. (together 4 min.)
    ..But I must notice, that I cannot make anything, because the „BLUETOOTH APPLE WIRELESS KEYBOARD  and the APPLE  MAGIC MOUSE“ doesn't work anything like before.
    I could nothing do, I must drop my APPLE only out.
    That I maked ever 10x and all was the same... (Maveriks also 4x new updated)
    I taked my Logitech-Bluetooth-Mouse from the WIN-Laptop, dropped it in USB from iMAC...and in one second I could work only with this MOUSE...I buyd the Logitech COMBO K520 and all was OK now with my lovely APPLE iMAC to work with him...But without APPLE KEYBOARD and MAGIC MOUSE...and with a 4 min. -START until now.
    I  asked the EXPERTS from APPLE-SUPPORT under Tel. 0800-6645451 in Germany, became a Number, maked many Things by starting new, but the mistake after all is the same like before.
    When I look into ...Apple/ Info/System/ Hardware/ Bluetooth   ..my APPLE says: NO INFOs FOUND (Es wurden keine Informationen gefunden.)
    Under Hardware/ Diagnose : Selbsttest beim Einschalten: zuletzt ausgeführt: 15.05. 14, Ergebnis: Bestanden (that means OK) !!
    I asked many Peaple, who sold APPLE-Computers in the STORS, but they all had no IDEA, how they can help.
    I think, it could be a DRIVER when Starting the BIOS, JAVA RUNTIME a.s.o...
    Is an Expert under YOU to help me by my Problem with this iMAC ?

    dietmarfromdeu,
    if you start up your iMac in Safe mode, do you still have Bluetooth problems with your Apple wireless keyboard and Magic Mouse?

  • About to back up iTunes to XHD. Have old version 10.6.3.  Have been afraid to update with 40GB of music. Been digitizing vinyl.  In this version, playlists export as m3u, which needs to be converted to MP3-Song by song???  Help?? What do I do first?  Coul

    About to back up iTunes to XHD. Have old version 10.6.3.  Have been afraid to update with 40GB of music. Been digitizing vinyl.  In this version, playlists export as m3u, which needs to be converted to MP3-Song by song??? Goal is to also be able to burn MP3 to flash drive and to XHD as usable data.
    Help?? What do I do first?  Could export as m3u-then figure it out later? Or will this data be unreadable junk in a new version of iTunes?
    Does new version 11.whatever., have a provision to make all into MP3? Obviously past applecare contract.
    Been looking at forums-not clear what to do.
    Is there a simple way to convert/export m3u as MP3 in the newest version of iTunes?  Am I asking the right questions???

    Hi printmistress888,
    Welcome to the Support Communities!
    The article below may be able to help you with this.  Click on the link to see more details and screenshots. 
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751
    iTunes 10 for Mac: Save a copy of your playlists
    http://support.apple.com/kb/ph1744
    Cheers,
    - Judy

  • HT1222 Last time I did an update...I lost most of my music...thousands of songs and had to reinstall them!!!!  I am scared as **** to do another update!!  I have radio shows to do and can't afford to spend the time with this.  Help anyone?

    Last time I did an update...I lost most of my music...thousands of songs and had to reinstall them!!!!  I am scared as **** to do another update!!  I have radio shows to do and can't afford to spend the time with this.  Help anyone?

    A bit late for this advice now, but hopefully you'll know what to do next time.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Update - Help - Brand New ipod - won't update with software

    IPod will not update with cd-rom it came with - this is the first - initial - brand new install of ipod
    win xp with sp2 installed
    used cd-rom that came with ipod - followed instructions to the tee - stated it can not update ipod - itunes does not see ipod - went to web site and downloaded 47mb file from june 05
    still will not update - states ipod not supported by this software - the ipod is BRAND NEW - 30gb color photo ipod??
    please help me

    Hi I had the same problem with my last ipod. i tried all of the steps on the apple support site but none of them worked. I decided to send my ipod in for a repair. Anyway when a week later my ipod came back it was fixed but when i loaded up the computer the disk locked again. I followed through the instructions which said to download the newest software. So i downloaded the new software again and this still didnt work. The last thing i tried to do was to use an old version of an updater so i used (ipod updater 2004-11-15) this ran through the restore process and after completing this, the menu on the ipod loaded up. I then connected to itunes and it allowed it to communicate and transfer the songs
    It worked for me i hope it works for you.
    Best of luck
    Daz Semple

  • I cant find the end button when i receive a incomming call please help me. Is there any solution for it or is it a bug in the ios7.0.3 iam updated with ios7.0.3

    I cant find the end button when i receive a incomming call please help me. Is there any solution for it or is it a bug in the ios7.0.3 iam updated with ios7.0.3

    Do you mean decline button before picking up the call?

  • While downloading software update for Itunes, getting message saying detecting Ipad in recovery mode and telling us to restore Ipad to original settings, which we don't want to do.  Also cannot turn on Ipad; shows Itunes symbol with connector.  Help!

    While downloading software update for Itunes, got message saying detecting Ipad in recovery mode and telling us to restore Ipad to original settings, which we don't want to do.  Also cannot turn on Ipad; shows Itunes symbol with connector.  Help!

    No promises but a System Reset is worth trying:
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.
    A System Reset does not remove any apps, music, movies, etc. nor does it cause any settings to revert back to default.
    Also, you might wish to download the iPad-2 User Guide.  Pay special attention to page 162.  Note that this Guide also applies to the iPad-1 with IOS 4.3 except for those functions that are not supported by the hardware.
    http://support.apple.com/manuals/#ipad
    Finally, the User Guide can be downloaded at no charge via iBooks and a less comprehensive version of the Guide is included as a Safari bookmark.

  • Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    haha, so now i'm thinking. I'm learning the terminal as fast as i can but there are several lines of codes and commands in there that throws up red flags to me that i don't fully understand. It just looks fishy too me. It would be highly appreciated if someone could just check this out just to tell me that i don't need to worry about it. Or point me in the right direction. I just feel un easy about this. ha.

  • When I try to install the latest update I receive this message: "Apple Mobile Device Failed to start".  I am trying to update with my computer.  Help!

    When I try to install the latest update I receive this message: "Apple Mobile Device Failed to start".  I am trying to update with my computer.  Help!

    Hey AndreaKK,
    I would try the following directions:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    If you have Windows XP, there are slightly different directions in here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    Welcome to Apple Support Communities!
    Regards,
    Delgadoh

Maybe you are looking for

  • Error while invoking a Web Service from a Web Application in Websphere 5.1

    Hi, I get the following error when i try to connec to a Webservice on Weblogic server. Can anybody help me in determinig the reason for the error- faultCode: Server.generalException faultString: org.xml.sax.SAXException: WSWS3047E: Error: Cannot dese

  • Documents stuck in printer queue - Airport Extreme + Windows 7

    Hi There, I have a HP CP1215 Laserjet hooked up to my Airport Extreme and print to it from a Windows 7 (x64) machine. Everything works fine in the sense that I can print documents and the quality is great, the problem is that the document remains in

  • Mac sys rqts osx v10.5.8 Vs os10.4.11

    i would like to purchase the i pad2, however my mac mini's system  is 10.4.11. i noticed the tech specs require a 10.5.8 or higher.  do i have to purchase a whole new mac to be compatiable? thank you,

  • How do I disable the ability to delete history?

    I work at a middle school where all of the 6th graders have 11 in Macbook Pros currently with Mac OS X Version 10.7.5. We have been playing around with the parental control features on the computer, but have not been able to find how to make a passwo

  • Keeping plot colors with the right data

    I have a vi written in 7.1 that has three traces in one plot.  I have selector radio buttons so the user can turn on or off any channel.  The problem is the color of the trace is automatically grabbed by the vi and chooses the colors based on which t