HT1353 I have a IPOD 5th generation with more than 1000 titles of music

I bought it in 2007. I then lost it and lost my itune access too. In 2012 I started a new i tunes account and downloaded around 20 titles of music. After that I received my IPOD back. Now I do not know how synchronize my IPOD in a way that my laptop that my itunes center is receiving the titles of my IPOD and that I do not risk to delete any titles by synchrizing. When I tried to synchronize I am asked if I want to delete titles from my IPOD. So I do not know what to do....I want simply to copy all 1000 titles from my IPOD to my Itunes center and not the other way round. Thank you.

You cannot use iTunes to transfer song files from iPod to computer (except for songs purchased from the iTunes Store).  iTunes syncing is generally in one direction, from the computer's iTunes library to the iPod.  However, there are third-party methods and utilities that can transfer song files from iPod to computer.  If you do an Internet search on something like "ipod transfer," you should get some links.  (The CNET article seems to be popular.)
Once the song files are on your computer's drive, you can add them to your current iTunes library.  Then, with your new and old songs consolidated, you can sync your iPod to that library.
NOTE:  If your old songs were purchased from the iTunes Store, you can re-download them at no cost.  You need to sign in to the iTunes Store using the Apple ID used to make the purchases.  From the iTunes Store Home screen, click on Purchased under QUICK LINKS.  On the Purchased screen, you can find previous purchases and download them into your current iTunes library.

Similar Messages

  • Can you sync an ipod nano 5th gen with more than one computer

    Can you sync an Ipod nano 5th generations with more than one computer.  One is a Dell with xp operating system and the other is an Mac laptop.

    It is possible to sync your iPod with multiple computers, but syncing with different platforms is not supported by Apple.  See this article for more details on how to get this set up.
    http://support.apple.com/kb/HT1202
    B-rock

  • I have an IPod 5th generation and I would like to give it away with the apps, but have all personal data deleted, app can no longer be found in the apple store and I'd like to to be able to keep it

    I have an IPod 5th generation and I would like to delete all personal content, and be signed out of my Apple ID as well, but there are apps that no longer exist on the apple store that I would like to keep.

    Do this:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    Then go to Settings>General>Reset>Erase all content and settings

  • HT4623 Hello! So I have a iPod 5th generation, and I just had a recent update, it was for iOS 6.1.3, and now for some reason, I can't get the iOS 7 update. Could anyone help me?

    Hello! So I have a iPod 5th generation, and I just had a recent update, it was for iOS 6.1.3, and now for some reason, I can't get the iOS 7 update. Could anyone help me?

    Apple's servers are slammed right now with iOS 7 downloads AND activation requests.
    Be patient and try again later.

  • I have an iPod 5th generation 30 gb it charges on mac os iTunes fine,but i still have problem i can't put now tunes on the iPod i tried every thing reset and all of this stuff..help please

    I have an iPod 5th generation 30 gb it charges on mac os iTunes fine,but i still have problem i can't put now tunes on the iPod i tried every thing reset and all of this stuff..help please

    Hi Mohamed4000,
    Thanks for visiting Apple Support Communities.
    If your iPod isn't syncing, make sure you've tried all the steps in our iPod assistant:
    http://www.apple.com/support/ipod/five_rs/ipod5gen/
    Best Regards,
    Jeremy

  • I have install io6 and now Music doesn't work, sometimes it stay with a blank page with no possibility to press anithing, sometimes it crash. I have match music active with more than 15000 title. Someone could help me?

    I have install io6 and now Music doesn't work, sometimes it stay with a blank page with no possibility to press anithing, sometimes it crash. I have match music active with more than 15000 title. Someone could help me?

    What is your current Flash Player version: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html ?
    What is your display adapter, driver version & date?  See http://forums.adobe.com/thread/945765

  • I shared an ipod 5th generation with my ex partner and she set it up with her email and password. how can i change it for my password and email address so that i can wipe it and start again?

    i shared an ipod 5th gen with my ex partner and she set it up with her email and password. i have the ipod now but no password and would like to put it on my email and password so that i can wipe it clean and start again, any ideas?

    The iPod isn't tied to an Apple ID, but is likely tied to an iTunes library. If you want to set it up as a new iPod (as if you were just pulling it out of the box), restore it to factory settings in iTunes.
    Restoring iPod to factory settings
    B-rock

  • List with more than 1000 elements

    I'm trying to use this query:
    select *
    from street
    where street_cod in ('street_code_list')
    It working well when the 'street_code_list' has less than 1000 codes but it fails when it have more, with a message that says that a list can't have more than 1000 elements. How can I fix this problem? Can I use any other kind of object to store my list?
    I'm querying the database in ColdFusion using ODBC.
    Thank you in advance,
    Rui

    Another thing to consider doing is simply creating a "list table" which would contain your list elements and allow you to do a
    SELECT X
    FROM Y
    WHERE X IN (SELECT X
    FROM Z)
    type query.
    I don't know where you are getting your list from, but if it is persistant (i.e, doesn't change with every program run) this is certainly a viable option (and may be usable even if the list does change every run).
    If this is being executed in PL/SQL (or some other procedural language) you could also just loop through your list: execute the query with the first 1000 list elements and do your processing, then the next, and so on. Of course, to some extent this depends on your processing, but if you need the entire result set before you can process it, then you could store the individual result sets in a PL/SQL table or an array (if you are using Pro*C or whatever) and then process when the PL/SQL table/array was fully populated.

  • IN operator with more than 1000 values

    Hi,
    For a given list of IDs (PKs), I need to fetch the corresponding rows.
    The problem is that I have more than 1000 values and as far as I know that IN operator is limited to 1000
    values.
    I thought about using UNION such that each Select contains up to 1000 IDs.
    example":
    select * from temp where id in(1....1000)
    union all
    select * from temp where id in(1001....2000)
    Is there a better way to do that?
    Thanks
    dyahav

    As others have presented technical solutions, i'll present you a logical one (seemingly logical anyways, but it will depend on your application).
    I have seen some applications where you get
    select * from some_table where ... <conditions>;That result set is returned to the front end and presented to the users who then pick a series of records and submit another request to the database which ends up being...
    --note, this could be a many table join, with lots more information that just the some_table, this is illustrative only
    select * from some_table where pk_value in (super_super_duper_list_based_on_last_result_set);If this mimics what you have in your application, i'd recommend just fixing it so the users can select a reasonable set of data, OR the entire set (in the last case you'd just send the <conditions> instead of a massive list of PK values).
    Again, highly speculative but i thought i'd mention it in the off chance it's useful to you.

  • Error occurs when executing an item in an inbox with more than 1000 entries

    Hi Everyone,
    One of our approvers in SRM experienced an error when his inbox contained more than 1000 entries .  Further execution on any inbox item produces errors.
    Would you know where to set the maximum allowable entries in a user's inbox? Can this be set thru SRM config or Basis functionality?
    We also searched for existing SAP Notes but found nothing.
    Your inputs and help are greatly appreciated.
    Thanks and Regards,
    Vhong

    Hello,
    The user has sent me the screen shot. But this has no error messages. The approval transaction shows an ITS screen/code with template 'bbpapproval/99/saplbw02_1200.html'
    However, we have a user in Quality where the page displays with no problem and with 1675 Entries.
    Do you think this is more of an ITS setting or any Template/JavaScript issues?
    I got this code (view source code) earlier today and the topmost header of the code is:
    <!--
    This page was created by the
    SAP Internet Transaction Server (ITS, Version 6200.1025.7214.5, Build 908978, Virtual Server Q36, Add. service info none, WGate-AGate Host esetnmw028, WGate-Instance Q36)
    All rights reserved.
    Creation time:  Mon Mar 15 07:21:39 2010
    Charset:        iso-8859-1
    Template:       bbpapproval/99/saplbw02_1200.html
    -->
    Regarding the not-so-good practice of approvers to have more than 1000 entries in their inbox, we are still in the process of planning on how to divide the task to different approvers since there is only one approver (Project Manager) for the related network.
    Thanks and Redards,
    Vhong

  • Error Creating Invoices with more than 1000 positions

    Hello.
    I am creating invoices in SD module with VF01 transaction.  When the document has more than 1000 positions an error is displayed.
    The text of the error is:
    Memory area p.status GUI SAPMV60A SM is too small.
    área memoria p.status GUI SAPMV60A SM demasiado pequeña.
    I would like to know if there is any way to correct this error. If it happens because memory is too small, how could it be increased?
    Thank you.
    Diana Carolina.

    Hi Diana
    As far as I know, standard SAP has restricted the no. of line items in an accounting document to 999.
    So, this is in turn impacts the no. of line items you can have on a Sales invoice,
    Since every invoice  line item can have atleast 2 accounting entries, the max. no. of  invoice line items you can have is 499.
    I dont think there is no work around for this
    Rgds

  • Oci error in report 6i in reports with more than 1000 pages

    hi
    in a report that has more than 1000 page output , run in report 6i while formatting pages an error occurs:
    OCI error.==>SELECT NAME,
    what this means?
    please help me.
    CAROL.

    in reports that i know number of pages for example 1100 pageswhile formatting pages 150-200 this error occurs.
    Did you get the error if total report pages < 1100?
    indeed in another report with about 3500 pages output this error not occurs. Any diff. of setting/limits etc. between your two reports?

  • Vector or ArrayList  use for dropdown with more than 1000 entries

    Hi Friends
    I am having more than 1000 entries of different TimeZone's which i need to display in a dropdown list.
    i am not able to decide whether i need to use a Vector or Arraylist for storing these values.
    please let me know which one will be best suited to use in case the list entry is more than 1000 characters.
    waiting for a positive reply from your side.
    Thanks & Regards
    Vikeng

    A JComboBox can be constructed from a Vector (rather than any other sort of List) without having to implement your own ComboBoxModel. (JList is similar).
    I agree with kajbj - a control like this with a thousand entries is rather poor interface design. One exception might be if the entries are sorted in some way, and you "jump" to the appropriate place in the list as the user types.

  • To display text field with more than 1000 length in ALV

    Hi Friends,
           I need to display material long text field which is more than 1000 length in ALV or Object oriented ALV.
    Please help me to resolve the issue.
    Regards,
    Jaya.

    Hi,
    U mean to say in a single cell of ALV ??
    It is not possible in ALV .. As per OSS note 857823
    Below is the reason for same.. I think you should to split in number of columns.
    Summary
    Symptom
    Entries in cells of the type CHAR or string are truncated after 128 characters in the SAP GUI.
    Other terms
    ALV Grid Control (cl_gui_alv_grid), function module (Full-screen)
    Grid (Reuse_alv_grid_display, SAPLSLVC_FULLSCREEN), SAPGUI, back end, front end
    Reason and Prerequisites
    The data table that is sent to the front end only allows character values with the length 128.
    Solution
    This is the standard system behavior and cannot be changed.

  • I can't sync my ipod 5th generation with my computer, lost symbol. Help

    My computer screen is not showing the sync symbol, therefore I can't sync my new songs onto my ipod touch 5th generation, I have tried everything but just can't seem to find how to sync anymore

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or                     
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem
    DId yo sync with this computer before?
    Saying "I have tried everything" provides us with zero information as to what you did try. If you really did try "everything" then there is no way we can help.

Maybe you are looking for

  • Low memory and app crashes

    anybody else getting low memory warnings when using certain apps? is there a fix for this? say deleting apps?

  • URGENT-CREATE A HTML FILE WITH AN STRING INPUT FROM THE RUNNING JSP

    I am designing a web page where the user enters a page after entering his/her login and password.The User should now be provided with a display page containing the servers that he has permissions for access.The servers that he has permissions are mai

  • A LOT OF PROBLEMS PLEASE HELP!!!!!

    WELL I HAVE A 30 G CLASSIC BUT IT WONT SYNC IT TELLS ME "I TUNES CANT READ IPOD CONTENTS', DIAGNOSTICS TELLS ME "IEEE 1394 HOST CONTROLLER NOT FOUND" what does all of this mean i have restored this ipod more times than i can count i need help

  • Where is option to have side bar in iTunes 12 ?

    Since, 11 iTunes has been disabling my option of having the sidebar... which is annoying... but now I cant find the option to have it again... since I found this better and easier to use than that ribbon of silly icons... It is a pain in the neck dra

  • Forum Sample Error

    I bought the Developer Toolbox and am using the Forum Sample to design a Message Board. Everything except the post_message.php page is working. I keep getting this error: "You have an error in your SQL syntax; check the manual that corresponds to you