HT6058 how do i do this update iOS 7.0.4

I do not know how to do this iOS 7.0.4 , my I PHONE4S is telling me that i have an udate to do and i am not able to do the update its requesting for me to do. Because i just dont know how to do it. Please help me out here with this . Thank you so much,

trose6201 wrote:
i just dont know how to do it. Please help me out here with this .
http://lmgtfy.com/?q=how+to+update+iphone

Similar Messages

  • How much space gb for updating iOS 8.1.1

    How much space gb for updating iOS 8.1.1

    Depends on what iOS version you are coming from.   If you are at iOS 8 it should be less than 100MB.
    Otherwise it will vary depending on where you start from.
    Also, I will request this post be relocated to the Using iPad area, as it has nothing to to with iBooks Author (The section it was posted in).

  • How do I get this beta IOS 7.0.2 JUNK TO WORK with my iPod touch 5???

    How do I get this beta IOS 7.0.2 JUNK TO WORK with my iPod touch 5?? I was prefectly happy with my iPod until I got the notice to upgrade itunes to 11.1 and would you like to upgrade your iPod from IOS 6 to IOS 7. And like an idiot I took the little green pill and pushed the button. Now I can't open iTunes, some apps; like the Lindsey Sterling app, Safari and Disney don't work either (not that I care about the Disney one, but, it's part of the base setup, you'd think "IT" would work!) almost anything with video links will not open, iCloud can't find me. All I get is that annoying white screen. I'M NOT HAPPY! I could have bought a Windows machine for a lot less money and have the same problems!?! (I'll bet Mr. Jobs is spinning like a top right now!)  And I have goggled-- found a few fixes: re-install, restore, etc. found one that stated to get iTunes back to go into the iPods setting by double ckicking the home button go to iTunes app and sign out, then sign in again-- those options didn't work. JEM24

    If you restored to factory settings/new iPod via iTunes (Not via Settings>General>Reset>Erase all Content and Setting) and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
      Apple Retail Store - Genius Bar

  • How can I rewrite this update stmt to improve its poor performance?

    Hi,
    I have the following update stmt that runs for over 6 hours. Here is the SQL and its plan:
                UPDATE TABLE1
                     SET mainveh = 'Y'
                 WHERE (comp#,polnum,a8dtef,a8deef,a8dtac,
                        DECODE(everif,'Y',10000,0)+auunit*100+vrcdsq)
                    IN (SELECT comp#,polnum,a8dtef,a8deef,a8dtac,
                               MAX(DECODE(everif,'Y',10000,0)+auunit*100+vrcdsq)
                          FROM TABLE1
                         GROUP BY comp#,polnum,a8dtef,a8deef,a8dtac);
    PLAN_TABLE_OUTPUT
    | Id  | Operation             | Name     | Rows  | Bytes |TempSpc| Cost (%CPU)|
    |   0 | UPDATE STATEMENT      |          |     1 |   108 |       |   798K  (1)|
    |   1 |  UPDATE               | TABLE1   |       |       |       |            |
    |   2 |   HASH JOIN           |          |     1 |   108 |  1079M|   798K  (1)|
    |   3 |    TABLE ACCESS FULL  | TABLE1   |    21M|   834M|       |   224K  (1)|
    |   4 |    VIEW               | VW_NSO_1 |    21M|  1364M|       |   440K  (1)|
    |   5 |     SORT GROUP BY     |          |    21M|   794M|  2453M|   440K  (1)|
    |   6 |      TABLE ACCESS FULL| TABLE1   |    21M|   794M|       |   224K  (1)|I'm using Oracle 10.2.0.3. The TABLE1 table has 21 million rows. The update stmt will update about 15 million rows. How can I rewrite this update stmt so it'll perform better? There is a primary index on all the columns selected in the subquery. That is the only index on TABLE1.
    Thank you!
    Edited by: user6053424 on Jul 21, 2010 6:59 AM

    Hi,
    Thank you for your suggestions. There is an index on the columns in the group by, it is the PK index on TABLE1. I'm suspecting that due to the amount of data to update, the optimizer decided that full table scan is cheaper than index scan. I'm very interested in the GTT idea, but still need some help if I decide to create a GTT from the subquery, because if I just do this:
    create global temporary table table1_tmp
    on commit preserve rows
    as SELECT comp#,polnum,a8dtef,a8deef,a8dtac,
               MAX(DECODE(everif,'Y',10000,0)+auunit*100+vrcdsq)
          FROM TABLE1
         GROUP BY comp#,polnum,a8dtef,a8deef,a8dtac;then the original update stmt still has the DECODE and such in it, I'm not sure how much benefit that'll do to us:
    UPDATE TABLE1
                     SET mainveh = 'Y'
                 WHERE (comp#,polnum,a8dtef,a8deef,a8dtac,
                        DECODE(everif,'Y',10000,0)+auunit*100+vrcdsq)
                    IN (SELECT comp#,polnum,a8dtef,a8deef,a8dtac,???
                          FROM TABLE1);Your input is greatly appreciated! Thanks!

  • How I can do this update, when I have two records (one primary key, no seq)

    How I can do this update in pl\sql
    Here is the table with some data
    CREATE TABLE INSERT_TE
    PIDM        VARCHAR2(8),
    FORM_ID     VARCHAR2(2),
    TEACHER     VARCHAR2(30)
    INSERT into INSERT_TE
    PIDM,
    FORM_ID,
    TEACHER
    SELECT
    '1106651',
    'TE',
    'Teacher, Alber Howard'
    from dualcommit;
    INSERT into INSERT_TE
    PIDM,
    FORM_ID,
    TEACHER
    SELECT
    '1106651',
    'TE',
    'Teacher, Alber2 '
    from dualcommit;
    INSERT into INSERT_TE
    PIDM,
    FORM_ID,
    TEACHER
    SELECT
    '2321241',
    'TE',
    'Teacher, Silly Billy '
    from dualcommit
    You are going to ended with something like this: In a cursor..
    PIDM     FORM_ID     TEACHER
    1106651     TE     Teacher, Alber Howard
    1106651     TE     Teacher, Alber2
    2321241     TE     Teacher, Silly Billythen I need to update a table
    if the there is only one record like this one 2321241 TE Teacher, Silly Billy
    not problem I do this
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'But if there is a PIDM (pk) with two records
    PIDM FORM_ID TEACHER
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 I need to do 2 updates (notice the AND sarchkl_admr_code rec1 for the firs and rec2 for the second
    The first record should update the table when the condition is sarchkl_admr_code = 'REC1' and the second record with the
    condition is sarchkl_admr_code = 'REC2'
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'and
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC2'I am doing this in pl\sql, I don't have a sequence in the table INSERT_TE, how I know that the first record in
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 update a rec1 and the second updates when sarchkl_admr_code = 'REC2',
    I guess I can create a sequence, but I am inserting a table from a select satement, I am getting the error
    ORA-02287: sequence number not allowed here, when I try to do the following:
    INSERT INTO SYTEACH
    SYTEACH_PIDM,
    SYTEACH_ID,
    SYTEACH_TEACHER,
    SYTEACH_SEQ
    SELECT  
          DISTINCT
          spriden_pidm,
          sarchkl_admr_code,
          szsform_form_id,
          szsform_schl_off_type||', '||szsform_schl_off_firstname||' '||szsform_schl_off_lasttname teacher,
           SZSFORM_SEQ.NEXTVAL
            FROM   saturn_midd.szsform, saturn.spriden, saturn.sarchkl
           WHERE       spriden_ntyp_code = 'CAPP'
                   AND szsform_common_app_id = spriden_id
                   AND spriden_pidm = sarchkl_pidm
                   AND sarchkl_admr_code = 'REC1'
                   AND szsform_form_id = 'TE'
    What is the simple way of doing this update..

    Hi,
    you said:
    >
    But if there is a PIDM (pk) with two records
    PIDM FORM_ID TEACHER
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2
    >
    No! pks are unique! (otherwise we don't call them pk)
    For your table you could define a unique like this:
    PIDM column + a sequence. (new column):
    ALTER TABLE INSERT_TE ADD(TEACH_SEQ NUMBER)
    UPDATE INSERT_TE x
       SET TEACH_SEQ =
              (SELECT n
               FROM   (SELECT ROWID rid,
                              ROW_NUMBER() OVER(PARTITION BY pidm ORDER BY TEACHER) n
                       FROM   INSERT_TE t) s
               WHERE  s.rid = x.ROWID)
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard      1
    1106651     TE     Teacher, Alber2       2
    2321241     TE     Teacher, Silly Billy      1I need to do 2 updates (notice the AND sarchkl_admr_code rec1 for the firs and rec2 for the second
    The first record should update the table when the condition is sarchkl_admr_code = 'REC1' and the second record with the condition is sarchkl_admr_code = 'REC2'
    >
    normally no.
    but you can (now) do
    select PIDM, FORM_ID, TEACHER, 'REC'||TEACH_SEQ TEACH_SEQ from INSERT_TE
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard     REC1
    1106651     TE     Teacher, Alber2      REC2
    2321241     TE     Teacher, Silly Billy      REC1and use the last column for you update ...
    Edited by: user11268895 on Aug 20, 2010 2:01 PM

  • How do i delete history - in ios6 i tapped home key twice, then could hold on an app and delete history.  how do i do this in ios 7?

    how do i delete history - in ios6 i tapped home key twice, then could hold on an app and delete history.  how do i do this in ios 7?

    If you are talking about multitasking, double tap the home button and swipe up on the app you want to remove.  They look like pages now.

  • OK, I've downloaded Firefox 4.0, but there is no "continue" button to proceed with the "install" process! How do I install this update???

    OK, I've downloaded Firefox 4.0, but there is no "continue" button to proceed with the "install" process! How do I install this update???

    After saving the file which is likely called "Firefox Setup 4.0.1.exe" you need to run it to install Firefox 4.
    If you do not clear the downloads from the download manager, you can run the installer from the downloads manager. Open the download manager, then right-click on the Firefox setup file and select Open. As soon as you start running the setup file, close Firefox. You need to do this so that the setup file can replace the files in the Firefox installation directory.

  • How do I uninstall this update?

    I've just installed the latest Yosemite update and iPhoto has become Photo. I detest it - 10 000 photos all jumbled up in a tiny screen like on an iPad.
    So, how do I uninstall this update?
    <Re-Titled By Host>

    iPhoto running in 10.10.3
    And as you just want to argue about every fact I am done with you, I shall no longer respond.
    Bye

  • How to unblock function for updating IOS software.

    we did say not to upgrade some time ago, now we want to upgrade ios, how to find and unblock function for upgrading ios to newer software?

    I did everything that you guys asked me to do. Until now my iphone is useless. A friend of mine asked me to update his iphone 4 running ios 5.1.1 to ios 7.1.2 and I was able to update it without experiencing any error then I tried it again on my iphone but the same error appeared. The same (error code 3194).
    This got me thinking that APPLE must have blocked my iphone from updating to later version of IOS. can someone please help me figure out and understand why this is happening to my iphone if other iphone like my friend's can update ios so easy?

  • HT5278 How do I download this update?

    Hi, I am new to iphone and I receieved a software update notice. It is for ios5.1.1  How do I download and install this update?

    Along the left border of the iTunes window, find a tab with the name of your phone.  Click it and iTunes will go to the summary page.
    Actually, you can update without the computer since you already have iOS 5.:
    Settings > General > Software Update

  • HT1338 I just updated my system to 10.6.8.  New computer just out of the box, but I wanted to download Numbers from the App store and it says I need 10.7.4.  How do I get this update?

    I have a new IMac, purchased from my Dad that he never used.  I just did the latest update to 10.6.8.  I wanted to get "Numbers" on the computer from the App Store but it says I need 10.7.4.   How do I get this?  Everytime I try update it goes to 10.6.8.  I am new to Apple and struggling a bit.

    Choose About this Mac from the Apple menu and check the processor.
    If it's a Core Duo Mac, you must install the DVD version of iWork. If you previously got a compatible version of Numbers from the Mac App Store, go to its home page and click on Support under Quick Links.
    If it's a Core 2 Duo or better Mac, try purchasing Mac OS X 10.8 from the Mac App Store. If you get told that it's incompatible, phone the online Apple Store and order a download code for 10.7.
    If upgrading to 10.7 or 10.8 requires any other upgrades or replacements(they both require at least 2GB RAM and don't support PowerPC-only software such as Office 2004), it may be cheaper to buy and install the DVD version of iWork even if your computer can be upgraded to use the Mac App Store version.
    (74446)

  • How to restore apps after update Ios?

    i have updated Ios from 4 to 5. but mistakenly i didn't select backp while sync selected.is it possible to retriveve my old dowloaded apps again from my computer.
    thanks

    OK, sounds like none of your apps are in iTunes yet. What you need to do is go to the iTunes store in the left hand column then go to the App store at the top of the page under the little apple icon, then go to the right hand side of this page and look for the link called "purchased". Click this link and then choose the button in the lower right hand corner called "downlad all". After you have all your apps downloaded to iTunes, you should be able to sync them to your phone again.

  • Please, Please help. How do I install this update

    I keep getting this error (F3-FF00-0006) when trying to do a system recovery on a Toshiba Satellite L500 Laptop that was running W7. The Toshiba support site say's to download the HDD Recovery Update 1.0.0.4 and install  it. I can download it on another computer and put it onto a disk, but if the L500 I am trying to do a recovery on is all but useless...how do I get the update onto it to fix this recovery error!!!
    This seems to be a flaw in Toshibas logic here. There are no instructions on what to do with the update, any help will be most appreciated. Oh, I have put the update on a disk and put into the DVD drive of the L500...and am still getting the same error
    Kind regards
    Calmlee

    Have ordered Recovery disks from Toshiba support at $66 the set. See if that sorts out my problem.

  • IMessage verify error,says unable to verify because email address already in use,how do you fix this? IOS 5

    As header says how do you fix this?

    I had two Apple accounts prior to iCloud's debut along with a separate MobileMe account. I'm not sure how things were set up prior, but now with iCloud, I just realised that I can log in to apple.com with my former MobileMe email address. So now I have three Apple accounts.
    I use my former MobileMe email address to log in to iMessage. If you don't do this, when you try to use the temporary location sharing feature of Find My Friends, you'll get some kind of error message regarding this.
    The additional email address I wanted to add to iMessage was used as the primary Apple ID for one of my other Apple accounts and as a secondary address in the other. I had to resolve both of these issues before I could use this email address as a secondary address with iMessage. For the former, I had to use a different email address for the primary Apple ID while for the latter, I had to simply remove the email address as a secondary address in the account.
    You can manage all your Apple accounts at https://appleid.apple.com. Hope this helps.

  • HT201270 need a newer version of ios ...have 4.3 cant download anthing...how do I do this update

    my ipad has ios 4.3 and will not let me upate to a newer version
    unable to download facebook, games etc because of this older version
    help!!!

    How to update iDevices

Maybe you are looking for

  • Apple going MS style - don't install Lion if you don't need to

    Hi, I am obviously frustrated. I want to warn anyone with an Apple MacBook, MacBook Air or iMac that is not very recent. If you do not need Lion, don't install it. It is a disaster. Don't get me wrong. I am a huge Apple fun, but with this release I a

  • StageWebView and Acrobat Reader Not Working

    Hi, I started noticing this back in AIR 3.6. It seems that now when using StageWebView to display a pdf file, it just opens a blank window and no longer loads the adobe reader plugin to display the pdf. Has anyone else seen this? thx

  • JMS sender channel binary format possible?

    Hi, We're still having codepage problems from MQ to SAP via JMS. We send text messages, the QM format name is MQSTR and the message type is datagram. At the moment SAP development is saying: If the XML is encoded in anything other than UTF-8, then th

  • Macbook pro shutsdowns all application and logs-out when it goes to sleep

    My laptop logs me out and shutdown all application and goes to the login screen. This happens everytime it goes to sleep. This morning it happaend when i loged in and it loged me out and took me back to the login screen. Any idea why its doing this ?

  • Applying multiple xsl's

    I've inheirited someone else's code, as we tend to do from time to time. The simplest way that I can think of fixing a problem with our xml is to apply one style sheet to the xml, then apply a second. I have tried multiple times to get this to work,