Why did all my data erase when i downloaded iOs6?

All my data was erase when i downloaded the ios6. All my apps, notes, email e.t.c. and no where did it say it was going to do that. On the last software update it didn't but, on this one it did.
Is that supposed to happen? is here a way to get everything back?

It seems to be a common problem.
https://discussions.apple.com/thread/4629816?tstart=0

Similar Messages

  • Why did all my apps update when I have automatic updates turned off?

    Settings/iTunes & App Stores/Automatic Downloads
    Music
    Apps
    Documents
    I have them all turned OFF so that I can manually update my apps when I choose to.
    Yesterday there were 11 updates left after I had finished updating the apps I use most often.
    Today, it says ALL my apps are up to date?!
    So, did Apple force a bulk update on me despite my having turned everything OFF? Or did all my updates just suddenly disappear overnight???
    I will be VERY angry if I find out that my apps can be forcibly updated without my say so!
    If so, how can I prevent this from happening again? If not, same question?

    It seems to be a common problem.
    https://discussions.apple.com/thread/4629816?tstart=0

  • Why did an error 3010 appear when I downloaded Adobe Acrobat 11?

    When I downloaded Adobe acrbat 11 prof. an error happened(error 3010).
    How will this affect mu use of Acr. 11? Will I be able to download online application forms and be able to fill them in?
    I am running windows7 with I.E

    Nubdub are you receiving the error 3010 when you are installing Acrobat or during the download process?  Can you perhaps post a screen shot of the error which you are experiencing?

  • All typed data erased when ...

    I am using Form 9i.
    I have master-details form. In detail form, key field is labour_code. When labour_code is selected, it displays the details in that row. If I selected some labour say 3, and on selected 4th labour if it is not available for this new job then my all data is erased. I have to select all data again.
    I am using two triggers on labour_code. When KEY-NEXT-ITEM trigger is made comment, then data is not erased. But then I didn't accomplish full task. What can be done to avoid this.
    Thanks and regards,
    Vikas
    1) WHEN-VALIDATE-ITEM
    DECLARE
    v_count                         NUMBER;
    v_status                    CHAR(1);
    v_workorder_no     VARCHAR2(15);
    v_pass_no                    VARCHAR2(15);
    v_to_dt                         DATE;
    BEGIN
         IF :workorder_dtls.labour_code IS NOT NULL THEN
              SELECT COUNT(*) INTO v_count FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
              IF v_count > 0 THEN --if labour exist.
                   SELECT status INTO v_status FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
                   IF v_status = 'I' THEN --'I' stands for busy.
                        --check if labour is for extension i.e. if labour is working for same workorder
                        SELECT COUNT(*) INTO v_count FROM workorder_dtls
                                            WHERE labour_code = :workorder_dtls.labour_code
                                            AND workorder_no = :workorder_dtls.workorder_no;
                        IF v_count > 0 THEN
                             SELECT to_dt, pass_no INTO v_to_dt, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND workorder_no = :workorder_dtls.workorder_no;
                             IF v_to_dt - SYSDATE < 3 THEN
                                  --if working in same workorder then for extension, then give from_dt, to_dt
                                  SELECT MAX(TO_DT)+1 INTO :workorder_dtls.from_dt FROM workorder_dtls
                                                      WHERE labour_code = :workorder_dtls.labour_code
                                                      AND workorder_no = :workorder_dtls.workorder_no
                                                      AND to_dt - SYSDATE < 3;
                             ELSE
                                  --if working in same workorder but not for extension then give message.
                                  MESSAGE('This labour is already working in this workorder using pass .'||v_pass_no||' which will expire on '||v_to_dt||'.');
                                  RAISE FORM_TRIGGER_FAILURE;
                             END IF;
                        ELSE
                             SELECT workorder_no, pass_no, to_dt INTO v_workorder_no, v_pass_no, v_to_dt FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND workorder_no <> :workorder_dtls.workorder_no;
                             MESSAGE('This labour is already working through workorder no. '||v_workorder_no||' using pass '||v_pass_no||' which will expire on '||v_to_dt||'.');
                             RAISE FORM_TRIGGER_FAILURE;
                        END IF;
                   ELSIF v_status = 'A' THEN--'A' stands for available.
                        IF :workorder_master.from_dt > SYSDATE THEN
                             :workorder_dtls.from_dt := :workorder_master.from_dt;
                             :workorder_dtls.issue_dt := :workorder_master.from_dt;
                        ELSE
                             :workorder_dtls.from_dt := SYSDATE;
                             :workorder_dtls.issue_dt := SYSDATE;
                        END IF;
                   ELSIF v_status = 'H' THEN--'H' stands for help-up.
                        SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND cancil_dt IS NOT NULL;
                        MESSAGE('This labour has been held-up for not submitting gatepass.');
                        RAISE FORM_TRIGGER_FAILURE;
                   ELSIF v_status = 'S' THEN--'S' stands for suspend.
                             SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code;
                        MESSAGE('This labour has been suspended through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                        RAISE FORM_TRIGGER_FAILURE;
                   END IF;
                   IF v_status IN ('A', 'I') THEN
                        IF :workorder_dtls.from_dt + 90 <= :workorder_master.to_dt THEN
                             :workorder_dtls.to_dt := :workorder_dtls.from_dt + 90;
                        ELSE
                             :workorder_dtls.to_dt := :workorder_master.to_dt;
                        END IF;
                   END IF;
              ELSE --if labour does not exist.
                   MESSAGE('Invalid labour code');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;
         END IF;
    END;
    2) KEY-NEXT-ITEM
                   :BLK_TEMP_WORKORDER.LABOUR_CODE := :WORKORDER_DTLS.LABOUR_CODE;     
                   GO_BLOCK('WORKORDER_DTLS_IMG');
                   EXECUTE_QUERY(NO_VALIDATE);      
                   GO_ITEM('WORKORDER_DTLS.from_dt');

    OK Sir, I am giving you indented code. This code is written in WHEN-VALIDATE-ITEM of labour_code.
    [HTML]
    DECLARE
    v_count                         NUMBER;
    v_status                    CHAR(1);
    v_workorder_no     VARCHAR2(15);
    v_pass_no                    VARCHAR2(15);
    v_to_dt                         DATE;
    BEGIN
         IF :workorder_dtls.labour_code IS NOT NULL THEN
              SELECT COUNT(*) INTO v_count FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
              IF v_count > 0 THEN --if labour exist.
                   SELECT status INTO v_status FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
                   IF v_status = 'I' THEN --'I' stands for busy.
                        --check if labour is for extension i.e. if labour is working for same workorder
                        SELECT COUNT(*) INTO v_count FROM workorder_dtls
                                            WHERE labour_code = :workorder_dtls.labour_code
                                            AND workorder_no = :workorder_dtls.workorder_no;
                        IF v_count > 0 THEN
                             SELECT to_dt, pass_no INTO v_to_dt, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND workorder_no = :workorder_dtls.workorder_no;
                             IF v_to_dt - SYSDATE < 3 THEN
                                  --if working in same workorder then for extension, then give from_dt, to_dt
                                  SELECT MAX(TO_DT)+1 INTO :workorder_dtls.from_dt FROM workorder_dtls
                                                      WHERE labour_code = :workorder_dtls.labour_code
                                                      AND workorder_no = :workorder_dtls.workorder_no
                                                      AND to_dt - SYSDATE < 3;
                             ELSE
                                  --if working in same workorder but not for extension then give message.
                                  MESSAGE('This labour is already working in this workorder using pass .'||v_pass_no||' which will expire on '||v_to_dt||'.');
                                  RAISE FORM_TRIGGER_FAILURE;
                             END IF;
                        ELSE
                             SELECT workorder_no, pass_no, to_dt INTO v_workorder_no, v_pass_no, v_to_dt FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND workorder_no <> :workorder_dtls.workorder_no;
                             MESSAGE('This labour is already working through workorder no. '||v_workorder_no||' using pass '||v_pass_no||' which will expire on '||v_to_dt||'.');
                             RAISE FORM_TRIGGER_FAILURE;
                        END IF;
                   ELSIF v_status = 'A' THEN--'A' stands for available.
                        IF :workorder_master.from_dt > SYSDATE THEN
                             :workorder_dtls.from_dt := :workorder_master.from_dt;
                             :workorder_dtls.issue_dt := :workorder_master.from_dt;
                        ELSE
                             :workorder_dtls.from_dt := SYSDATE;
                             :workorder_dtls.issue_dt := SYSDATE;
                        END IF;
                   ELSIF v_status = 'H' THEN--'H' stands for help-up.
                        SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND cancil_dt IS NOT NULL;
                        MESSAGE('This labour has been held-up for not submitting gatepass.');
                        RAISE FORM_TRIGGER_FAILURE;
                   ELSIF v_status = 'S' THEN--'S' stands for suspend.
                             SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code;
                        MESSAGE('This labour has been suspended through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                        RAISE FORM_TRIGGER_FAILURE;
                   END IF;
                   IF v_status IN ('A', 'I') THEN
                        IF :workorder_dtls.from_dt + 90 <= :workorder_master.to_dt THEN
                             :workorder_dtls.to_dt := :workorder_dtls.from_dt + 90;
                        ELSE
                             :workorder_dtls.to_dt := :workorder_master.to_dt;
                        END IF;
                   END IF;
              ELSE --if labour does not exist.
                   MESSAGE('Invalid labour code');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;
         END IF;
    END;[HTML]
    Another code is written in KEY-NEXT-ITEM of labour_code. This trigger is only used to display image of labour which exist in seperate block. And I think there is no other way to display image of labour. Is it correct sir?
    [HTML]
              :BLK_TEMP_WORKORDER.LABOUR_CODE := :WORKORDER_DTLS.LABOUR_CODE;     
                   GO_BLOCK('WORKORDER_DTLS_IMG');
                   EXECUTE_QUERY(NO_VALIDATE);      
                   GO_ITEM('WORKORDER_DTLS.from_dt');[HTML]
    Thanks and regards,
    Vikas

  • Why did all my messages delete when i restarted my phone

    I was on facetime and I wasn't receiving any of my messages so I went to my message app and i seen all the unread messages but they were blank and all i could see was the name of who sent it. So i restarted my phone and all my messages were gone !

    It seems to be a common problem.
    https://discussions.apple.com/thread/4629816?tstart=0

  • Why did I lose my music when I download and sync a movie

    We're new to ipods and itunes. We had a couple songs on our ipod and wanted to get a movie. It took us awhile to figure out how to sync it, but when we did, we got a message that said it would clear out our other libraries. I should have kept the exact message, but I didn't. I figured, OK, we'll just resync for the music again and went ahead. After resyncing after the movie, I was charged again for the music.
    Now, my son bought new music and synced it, but lost the movie we downloaded. Why does it do that and how can I avoid it?

    OK, read through this : http://support.apple.com/kb/HT1495?viewlocale=en_US

  • Why did all my music on my iphone get erased when i tried to sync to the iTunes on my new laptop?

    why did all my music on my iphone get erased when i tried to sync to the iTunes on my new laptop?

    As a rule syncing is one way, from the library to the device. There should have been a warning that media content on the device would be removed and replaced with that in the local library. If the content were still on the device it could be recovered with the steps in Recover your iTunes library from your iPod or iOS device. You can redownload your qualifying past purchases from the iTunes Store, Amazon store, etc. Do you have the previous computer your device synced with, or a backup, from which the library could be recovered?
    tt2

  • Why did Mozilla (v.4) erase all my bookmarks which existed yesterday? Can these kinds of disasters happen again in the future with Firefox? Mozilla developers: we are living in 2011...

    Why did Mozilla (v.4) erase all my bookmarks which existed yesterday? Can these kinds of disasters happen again in the future with Firefox? Mozilla developers: we are living in 2011...

    Firefox makes bookmark backups daily in the following location: C:\Documents and Settings\{Username}\Application Data\Mozilla\Firefox\Profiles\123xxx.default\bookmarkbackups (where "123xxx.default represents a randomly named folder).
    To restore from one of them, hit CTRL+SHIFT+B to open the Bookmarks manager and then click "Import and Export" | Restore and choose a date. See screenshot.
    Before you do that though, could you please hit CTRL+I
    Can you see any Bookmarks in there?

  • Why do all the programs open when the mini is turned on, and how to avoid this?

    why do all the programs open when the mini is turned on, and how to avoid this?

    Open System Preferences > Users & Groups then select the Login Items tab.
    Remove all apps listed there.
    And check /Library/StartupItems
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/StartupItems
    Click Go then move all items from the StartupItems folder to the Trash.

  • Why did I get my brother's contacts when I downloaded ios6?

    why did I get my brother's contacts when I downloaded ios6?

    Did you ever use his Apple ID on your phone? Perhaps you signed in using his Apple ID and iCloud downloaded his contacts to your phone. Are your contacts still on your phone? Chech and see, under settings what Apple ID your are signed in with.

  • Why did all my scroll bars disapear? I don't have any option in my System Preferences to always turn scroll bars on (as suggested)

    Why did all my scroll bars disapear?
    I don't have any option in my System Preferences to always turn scroll bars on (as suggested)

    Sweet... all better now.
    I was looking in my FINDER preferences, not my APPLE preferences.
    Thanks for clearing that up for me.

  • Why did my phone shut down when I started updating software?

    Why did my phone shut down when I started updating software?

    Hi Patraposo,
    Thanks for visiting Apple Support Communities.
    It is difficult to know why devices behave unexpectedly; however there are several articles on the Support site that can help recover your iPhone if the update did not complete.
    If your iPhone will not turn on, start with the steps in the "Power/Battery" section of this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    If you just see the "connect to iTunes" screen, the steps in this article can help:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    If you see another symptom, feel free to reply with more information.
    Best,
    Jeremy

  • Why does the purchase verification appear when I download free app?

    Why does the purchase verification appear when I download free app?

    Is this what you mean...
    apple_prompting_some_users_for_extra_app_store_security_details

  • HT4623 iPad keeps saying iOS 5.1.1 is "up to date" -- yet trying to download iOS6 -- any suggestions?

    iPad keeps saying iOS 5.1.1 is "up to date" -- yet trying to download iOS6 -- any suggestions?  Have tried "settings" on the iPad, which continues to say 5.1.1 is up-to-date, and have sync'd with iTunes, which also says the iOS 5.1.1 is up-to-date.

    No, the ipad first gen. will be getting no more updates. Its no longer available in the apple store.
    Unfortunately, if you wish to use apps or features that require iOS 6, you'll need at least the ipad 2

  • Why can't i connect to itunes after downloading ios6

    why can't i connect to itunes after downloading ios6 software

    Try:
    iOS: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    you need iTunes version 10.7. If a Mac instead see:
    ios 6 and macosx 10.5 on a pre intel...: Apple Support Communities

Maybe you are looking for