Upgraded to ios 5 deleted all data

Hi.
     My friend wanted me to update his ipod touch 4g to ios 5 and in the process I lost all of the data from his ipod. I backed it up and restored to ipod touch from backup but all of his music, podcasts, and apps/app data is gone. I did not transfer purchaces from the ipod because I did not want his data in my iTunes liobrary.
Thanks
Window 7
Itunes 10.6.3.25

That is correct.  Itunes content is not part of the back at all.
If the apps/music/podcasts/etc were not on the computer then they would be deleted.
Your friend will have to sync with his own computer to get them back or redownload them.

Similar Messages

  • Upgrading to iOS 6 deleted all my contacts.

    After upgrading to iOS 6 on my iphone 4s - all my contacts disappeared.  Is there any way to get them back?

    Try Unchecking and rechecking...
    Also... On the Phone...
    Close All Open Apps... Sign Out of your Accounts... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    After I reset my Ipod (deleted all data and settings) windows 7 doesn't recognize by ipod touch, and it doesn't appear in the itunes library or in the device menu, but it does charge. How can I get my computer to recognize it again?

    Refer to this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538

  • I recently lost my windows laptop due to a virus. I had backed up all files onto a drive(files only). However no itunes playlists. i have all my playlists on my iphone and pics etc however when im trying to sync to my new computer itunes deletes all data

    I recently lost my windows laptop due to a virus. I had backed up all files onto a drive(files only). However no itunes playlists. i have all my playlists on my iphone and pics etc however when im trying to sync to my new computer itunes wants to  deletes all data off of my iphone so i click cancel
    i want to update to iOS 5 and still have itunes be able to copy my playlists from my iphone. for free. why does apple provide a recovery from iphone option?

    If you have a backup, restore the ENTIRE iTunes folder to the computer.  This restores the library and device association files.  If for some reason you chose to only back up the media and not the entire iTunes folder, then the only option is to let iTunes wipe the drive and re-sync.

  • HT4061 I tried to upgrade to IOS 6 and all I am getting when I am trying to re-start is a message for connect ti Itunes?  Help

    I tried to upgrade to IOS 6 and all I am getting when I am trying to re-start is a message for connect ti Itunes?  Help

    IPhone, iPod Touch, and iPad iOS Compatibility
         Device                                       iOS Verson
    iPhone 1                                       iOS 3.1.3
    iPhone 3G                                    iOS 4.2.1
    iPhone 3GS                                 iOS 6.1
    iPhone 4                                       iOS 6.1
    iPhone 4S                                    iOS 6.1
    iPhone 5                                       iOS 6.1
    iPod Touch 1                               iOS 3.1.3
    iPod Touch 2                               iOS 4.2.1
    iPod Touch 3                               iOS 5.1.1
    iPod Touch 4                               iOS 6.1
    iPod Touch 5                               iOS 6.1
    iPad 1                                           iOS 5.1.1
    iPad 2                                           iOS 6.1
    iPad 3                                           iOS 6.1
    iPad 4                                           iOS 6.1
    iPad Mini                                      iOS 6.1
    Upgrading iOS
       1. How to update your iPhone, iPad, or iPod Touch
       2. iPhone Support
       3. iPod Touch Support
       4. iPad Support
         a. Updating Your iOS to Version 6.0.x from iOS 5
              Tap Settings > General > Software Update
         If an update is available there will be an active Update button. If you are current,
         then you will see a gray screen with a message saying your are up to date.
         b. If you are still using iOS 4 — Updating your device to iOS 5 or later.
         c. Resolving update problems
            1. iOS - Unable to update or restore
            2. iOS- Resolving update and restore alert messages

  • How to delete all data in all tables in one time ?!

    1 CREATE OR REPLACE PROCEDURE delete_all_data
    2 IS
    3 v_statement VARCHAR2 (200);
    4 BEGIN
    5 FOR i IN (SELECT *
    6 FROM user_tables)
    7 LOOP
    8 v_statement :=
    9 'delete table ' || i.table_name ;
    10 EXECUTE IMMEDIATE v_statement;
    11 END LOOP;
    12 commit;
    13* END;
    SQL> /
    Procedure created.
    SQL> exec delete_all_data
    BEGIN delete_all_data; END;
    ERROR at line 1:
    ORA-00903: invalid table name
    ORA-06512: at "DE2.DELETE_ALL_DATA", line 10
    ORA-06512: at line 1
    I made the previous code , but it's didn't work with me .... any help for this problem please ?!
    I'm just reminder ..... all what I need ,that delete all data in all tables in one time only .
    I'm waiting for the answer ..... and thanks in advance

    create or replace
    FUNCTION TRUNC_SCHEMA RETURN NUMBER AS
    CURSOR select_table IS SELECT TABLE_NAME AS TNAME FROM USER_TABLES ORDER BY 1;
    sTableName Varchar2(128);
    sUser Varchar2(128);
    sConstraintName Varchar2(128);
    plsql_block Varchar2(512);
    BEGIN
    SELECT USER INTO sUser FROM DUAL;
    IF ((sUser='SYSTEM') OR (sUser='SYS')) THEN
    RETURN 1;
    END IF;
    EXECUTE IMMEDIATE 'PURGE RECYCLEBIN';
    -- DISABLE table's constraints
    FOR C1 IN (select CONSTRAINT_NAME, TABLE_NAME from user_constraints where STATUS = 'ENABLED' AND CONSTRAINT_TYPE in ('P','R') ORDER BY R_CONSTRAINT_NAME) LOOP
    sConstraintName := C1.CONSTRAINT_NAME;
    sTableName := C1.TABLE_NAME;
    plsql_block := 'ALTER TABLE ' || sTableName || ' DISABLE CONSTRAINT ' || sConstraintName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    FOR D IN select_table LOOP
    --get table name
    sTableName := D.TNAME;
    -- clear table
    plsql_block := 'TRUNCATE TABLE ' || sTableName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    -- ENABLE table's constraints
    FOR C2 IN (select CONSTRAINT_NAME, TABLE_NAME from user_constraints where STATUS = 'DISABLED' AND CONSTRAINT_TYPE in ('P','R') ORDER BY R_CONSTRAINT_NAME desc) LOOP
    sConstraintName := C2.CONSTRAINT_NAME;
    sTableName := C2.TABLE_NAME;
    plsql_block := 'ALTER TABLE ' || sTableName || ' ENABLE CONSTRAINT ' || sConstraintName;
    EXECUTE IMMEDIATE plsql_block ;
    END LOOP;
    RETURN 0;
    EXCEPTION WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERROR: ' || SQLERRM);
    RETURN 1;
    END TRUNC_SCHEMA;
    /

  • I have upgrade to IOS 8 and all Fotos are ereased and on my Computer is only the last Backup and there a no Photos now what can i do?

    I have upgrade to IOS 8 and all Fotos are ereased on my Iphone and on my Computer is only the last Backup and there a no Photos now what can i do?

    You really need to try this on a computer, not on the iPad.
    Seeing how what is in the cloud is also on the iPad, if the content is not on the iPad, there is a good chance that the content is lost. But you can try logging into www.icloud.com in a web browser on a computer and log into your account and see if you can get into the Pages app. You may have to sign up for iCloud drive if you didn't do so already. Make SURE you that you read the blurb that will pop up in that window in iCloud for more information.

  • HI, I need your help. How can I delete all data, when I do not have the special security code, which I didn´t remember ? I also think, that I never create this code before. But I cannot put my settings back.

    HI, I need your help. How can I delete all data, when I do not have the special security code, which I didn´t remember ? I also think, that I never create this code before. But I cannot put my settings back.

    You must remember the code, if you can't then take the phone and proof of purchase to an Apple Store.

  • HT204053 I have a school ipad with iCloud using a different ID (my school email address) . I am leaving and want to buy my own ipad and transfer all my data and docs to my personal iCloud account but don't know how to do this without deleting all data and

    I have a school ipad with iCloud using a different ID (my school email address) . I am leaving and want to buy my own ipad and transfer all my data and docs to my personal iCloud account but don't know how to do this without deleting all data and photos?

    Heya Katie!!
    So, the article you have there, HT4895, is pretty good. Just look at the FAQ section of it.
    But basically, you will want to create a backup on your computer through iTunes...Just plug your current iPad into it and make sure your iPad and iTunes are logged in with the same Apple ID. At that point, just create a backup.
    When you get your new iPad, and before you plug it in or set it up, follow the directions in this link to change your Apple ID. http://support.apple.com/kb/HT5621?viewlocale=en_US
    Once you have that done, plug your new iPad into your computer to sync up with iTunes. Follow the directions for Restore from Backup and it should bring all that info back to your new iPad.
    And changing your Apple ID email info will allow you to have your own!!! This should solve all your issues and GL!!!

  • How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos box' yet it still wont let me transfer videos from my i

    How do i put tv programmes and videos from itunes to another iphone, without having to delete all data on the phone and replacing it with my library? i switched the 'sync only ticked songs and videos' yet it still wont let me transfer videos from my itunes onto my new phone, any ideas??

    Copy the entire itunes folder from the old computer to the new computer.

  • After deleting all data and trying to restore from icloud, How long does it sit on the choose backup screen after choosing your backup?

    I backed up on icloud and then went to settings and deleted all data.  When my phone restarted and I got all the way to choose icloud back up to restore, my phone has now sat on that same screen for over 2 hours now.  Only thing that has happened was a message that popped up and said that could not connect to itunes server.  Is it just frozen or is it actually restoring?  I have tried restarting the phone and starting over several times, but everytime it just sits on this screen.  My son did his and it was working within 20 mins.

    And which account did you enter these contacts in?
    On My Mac
    or
    iCloud?

  • HT201263 I tried to reset my iPhone (3gs) with deleting all data. When it power off and automatically again on then it is showing Apple logo only. Not restore and startup my phone. I tried to charge and not charging. What I should do now?

    I tried to reset my iPhone (3gs) with deleting all data. When it power off and automatically again on then it is showing Apple logo only. Not restore and startup my phone. iPhone alerming low charge and I tried to charge and not charging.
    What I should do now?

    Something has gone wrong. Turn your phone off, then force it into recovery mode:
    Leave the USB cable connected to your computer, but NOT your phone, iTunes running, press & hold the home button while connecting the USB cable to your dock connector, continue holding the home button until you see “Connect to iTunes” on the screen. You may now release the home button. iTunes should now display that it has detected your phone in recovery mode, if not quit and reopen iTunes. If you still don’t see the recovery message repeat these steps again. iTunes will give you the option to restore from a backup or set up as new. In your case, select "new".

  • Downloading iOS 5 deleted all my photos, contacts, and text messages, i recieved an (-50) error during setup, and i was running the new update of iTunes.

    Downloading iOS 5 deleted all my contact, pictures, and texts. I was running the new update of iTunes and i still recieved an error of (-50). Can anyone help with how i can get all my stuff back? Also i just had updated my phone in October and it said the last time i updated 5/18/11 which is not true i am using a PC.

    I had the same problem and managed to get all my old contacts back. It was because I synced my contacts toiCloud on the initial setup, but nothing was in there. If you go to settings-iCloud- and turn off contacts, your old contacts should appear!

  • OFI_AP_4  Delete all data and REINIT the load to FIAP ODS and Cube

    Hi bw GURUS I need a quick help, I have requirement to Delete all data and REINIT the load to FIAP ODS and Cube  i have data source ofi_ap_4, please tell me what should i do as i know LO extraction but whats is the transaction code to run the set job for FIAP like for Purchasing I have OLI3BW now tell me what will be the steps to reinit the load to fiap ods and cube.
    i know this much as below
    Delete the data from cube and ODS
    Delete the Init in Cube AND ods NOW reinit i mean load the init, but now problem is before doing that i need to run the set up job or tell me what are the steps please
    its very important since i am doing in production
    thanks
    Soniya

    You are right by your approach to update from PSA to ODS as u have wrritten before. Just got to PSA tree select the PSA request and choose update Immediatly or scedule for update.
    (and if u have 0FI_GL_4 but u r not using it ..it is fine. I  was telling that in case u have that and you are trying to use somethin with 0FI_AP_4)

  • Help ... I've accidentally deleted all data of my user in the terminal. what to do? Can i undo the commands?

    Help ... I've accidentally deleted all data of my user in the terminal. what to do? Can i undo the commands?
    greetings from austria

    You cannot undo commands. When you delete/remove files with the rm command the files are not put in the trash where they could be recovered. They are gone.
    You should have your system backed up with Time machine and/or backup clone of your system. Use them to recover you files.

Maybe you are looking for

  • Multiple WVC80N issue

    Hello, I just purchased a WVC80N camera and am experiencing the following issues: The monitoring software shows no video image.  Tried the utility on w2k3 server and on xp.  Both show no video. When I attach a browser to the camera to view video, the

  • Center Alignment

    I need some help in centering the text in my error message boxes? Could anyone help?

  • Abap Query Execution

    Hi, I want to execute Abap Query using a Transaction Code. Please help me out to run a query using Transation code. Thanks in Advance John Vikram

  • Windows Password

    Hi Forum Gurus, I forgot windows password for login purposes in my T400. Was using fingerprint from the very first day. Never ever used windows passowrd in past. Today I decided to create fresh finger prints & decided to delete my old finger print "w

  • Does sunstudio support c++0x now ?

    I found Support for C++0x in Sun Studio said sunstudio will support c++0x after c++0x publication . does sunstudio support c++0x now? if not ,what is the plan to support ?