Delete the duplicate and delete the song??

almost had it with itunes. please someone convince me that jriver isn't better than itunes if you actually have a collection!! Here's the latest in frustrations:
Thought i would clean up the library the other day and deleted about 30 gigs in "display duplicates" view. Wow! I knew i had some duplicate songs but 30 gigs?
hmmm...the brain starts to work now
"let me see if i can play these" i thinks to myself---after the deed was done.
gone.
but the tags are still there! wheeee! at least i can still look at dumb ones and zero's display in algorithims on my screen that amount to nothing! cool!!
and here's the best part: i have 289 albums left to go in duplicate mode!!
HERE'S THE KEY PROBLEM:
all the songs show as duplicate, but 99.99% are...the majority are duplicate song names pointing to the same file.
any way to clean this up would be great!

iTunes seems to work fine on fairly large collections. Haven't played with jriver media center much - isn't it a PC program? In my limited exposure it seemed counterintuitive sometimes, but, that might be because I'm more used to iTunes. Then the poor guy showing off his PC driven stereo to me had to reboot the PC part way through Probably a rare occurance, or so he says. On the other hand when I was showing what iTunes could do, I got the dreaded spinning beachball for about 30 seconds. So neither is perfect.
Dealing with duplicates is tricky business. On my collection showing duplicates mostly shows different versions of the same song by the same artist. Only a very few are actual duplicates that I imported twice by mistake.
You've learned the hard way that if you throw the "duplicate" song into the trash, then it goes into the trash. But wait, if you have not yet emptied your trash the music files may be sitting there and you can put them back where they belong.
Like anything you have to take it slowly and easy with iTunes so you learn how it works as you go. . .
It really is not a bad music player.
There are two parts to iTunes; the iTunes Library file, and the iTunes Music folder. The actual music is in the iTunes Music folder - never trash anything from there unless you are sure you never want to have it again. The iTunes Library file is just a database that points to your music.
If you somehow end up with multiple pointers in the iTunes Library file to the same music file in iTunes Music then when you delete the entry in iTunes Library you do not want to actually delete the music file in iTunes Music.
I haven't tried TP2's tip to search out duplicate/dead/ghost entries in the database - it might work, but before I tried it I'd see what it does on a small sample of the library, and then only if I had a good current backup of both the Library file and the Music folder. A music collection usually represents lots of time and money, it should be backed up (one big advantage of a digital music collection is it is much easier to backup than in the old analog days).

Similar Messages

  • Delete the duplicate and keep the max records.....

    I would like to remove the duplicate records based on columns ID and VAL but keep the max SAL records. ID + VAL is the key in the table and just delete same records by keeping the max sal.
    Note: Eventhough there are two records for the same max SAL, just keep one
    eg
    SQL>  select * from temp_fa;
            ID        VAL        SAL
             1        100         10
             1        100         20
             1        100         20
             2        200         10
             3        300         10
             3        300         30
             4        400         10
             4        400         10
             5        500         10
             5        500         20
             5        500         20
    After deleting the table should looks like
    SQL>  select * from temp_fa;
            ID        VAL        SAL
             1        100         20
             2        200         10
             3        300         30
             4        400         10
             5        500         20

    user520824 wrote:
    I would like to remove the duplicate records based on columns ID and VAL but keep the max SAL records. ID + VAL is the key in the table and just delete same records by keeping the max sal.
    Note: Eventhough there are two records for the same max SAL, just keep one
    eg
    SQL>  select * from temp_fa;
    ID        VAL        SAL
    1        100         10
    1        100         20
    1        100         20
    2        200         10
    3        300         10
    3        300         30
    4        400         10
    4        400         10
    5        500         10
    5        500         20
    5        500         20
    After deleting the table should looks like
    SQL>  select * from temp_fa;
    ID        VAL        SAL
    1        100         20
    2        200         10
    3        300         30
    4        400         10
    5        500         20
    Hi,
    In this script I included sal in the key because it's more safe for you.
            ID        VAL        SAL
             1        100         10
             1        100         20
             1        100         20
             2        200         10
             3        300         10
             3        300         30
             4        400         10
             4        400         10
             5        500         10
             5        500         20
             5        500         20
    --1.Preserve first row from all duplicates
    create table first_duplicate as
    (select distinct val, id, sal
    from temp_fa
    where to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) in
    (select to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) p_key
          from temp_fa
          group by to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal)
             having count(to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal))>1)
    --2.Delete all duplicates
    DELETE  FROM temp_fa
    where to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) in 
         (select to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) p_key
         from temp_fa
         where to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) in
              (select to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) p_key
              from temp_fa
               group by to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal)
                  having count(to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal))>1)
    --3.Add first row from all duplicates
    insert into  temp_fa (val, id, sal)
    select * from first_duplicate;
    --4.Delete rows that don't have the max salary
    DELETE  FROM temp_fa
    where to_char(temp_fa.id)||to_char(temp_fa.val)||to_char(temp_fa.sal) in 
         (select to_char(id)||to_char(val)||to_char(sal) p_key
         from temp_fa
              MINUS
         (select to_char(x.id)||to_char(x.val)||to_char(x.sal) p_key
         from temp_fa x,
         (select val, id, max(sal) max_val from temp_fa
           group by  val, id ) y
           WHERE x.val = y.val and
            x.id  = y.id and
            x.sal =max_val
    HR: XE > select * from temp_fa order by id;
            ID        VAL        SAL
             1        100         20
             2        200         10
             3        300         30
             4        400         10
             5        500         20
    HR: XE > Regards,
    Ion
    Edited by: user111444777 on Sep 25, 2009 10:42 PM

  • Why did my iTouch duplicate my pictures? I deleted the duplicates and now the others wont show...why?!

    please...
    help me,
    all my summer pictures are now blank...I can see all of them but only their THUMBNAILS..but when i click on it ,it shows up plain ol black.
    HELP

    The only way to lose content on the device is restore as "new" from iTunes or "Erase All Content and Settings" from the device.
    Start by resetting or restarting the device to see if that rectifies the problem.

  • Each song on my iTunes has a duplicate. How do I delete all duplicates and prevent this from happening again in the future?

    Each song on my iTunes has a duplicate. How do I delete all duplicates and prevent this from happening again in the future?

    After I had updated to Itunes 11 (also on Windows 7), I had the same experience, but I suspect that it was because I accepted a proposal to set up an external media library in order to simplify security backups. An associated result was that I had lost all of my playlists!
    What I did was to restore the entire library off my Ipod, using a very good program called PodToPC (a free download is available) selecting an option to replace all of the stuff in the Itunes library. I use the Ipod Classic simply because it has a large capacity to hold my collection of CD and Vinyls. No way was I going to modify duplicates of 10000 tracks in 750 playslists by hand!  I did have a few residual problems with some of the playlist specs but, after a few hours of work all was restored.
    I hope this is useful.

  • Large number of duplicate listings of songs. 1 (or several) is found and then 1 or more with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found.

    large number of duplicate listings of songs. 1 (or several) is found and then 1 or more not-found with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found. How do I do this without losing my one good copy?

    large number of duplicate listings of songs. 1 (or several) is found and then 1 or more not-found with the circled "!" in col 1. I would like to automatically delete all duplicates and then all marked as not found. How do I do this without losing my one good copy?

  • How do I delete a song from my iTunes, keep it in the cloud and in the playlist it resides?

    I don't know why, but a few weeks ago I was able to do this... Now I cannot figure it out.
    I want to delete the music from my computer, keeping it in the cloud (with the download button on the side), and keeping the clouded song in the playlist it belongs to. Everytime i delete the song, its out of the playlist!

    Hello!
    Interesting question. I just tested it myself and it is working as expected. My first suggestion is to ensure you're running the latest version of iTunes.
    Then simply delete the song from your library, do NOT check the box to also remove it from iCloud, click Delete Item, then click Move to Trash. The little cloud icon appears next to it in the list. Then go view the playlist and the song will still be there, again with a cloud icon next to it. Additionally, next to the playlist in the sidebar, there will be a iCloud download button as well.
    Jordan

  • I have MBP 13 late 2011:Will it be able to support a 3tb hardisk?Secondly, if i delete a song from itunes,is that song removed from the mac and is the space freed up?If not then what should I do to free up space when i delete songs from itunes?

    I have MBP 13 late 2011:
    Will it be able to support a 3tb hardisk?
    Secondly, if i delete a song from itunes,is that song removed from the mac and is the space freed up?If not then what should I do to free up space when i delete songs from itunes?

    Your MBP will support a 3T HDD provided it is formatted correctly and has sufficient power.  Most large HDDs require an outboard power source.
    When you delete songs from iTunes you will get a message if you want to send it to trash.  If you send it to trash, space will be freed up only when you empty trash.  An individual song does not consume much space so if your HDD is becoming full, more drastic action s should be considered, such as moving an entire file to an external HDD.
    Ciao.

  • TS3569 On my iPad 2, one particular recurring event keeps duplicating itself. I delete the duplicate and it reappears a day later. Help.

    On my iPad 2, one particular recurring event keeps duplicating itself. I delete the duplicate and it reappears a day later. Help.

    Do you use MobileMe and an iPhone? If yes, do this in the following order:
    Mac:
    (1) back up the applications giving you problems
    iPhone
    (1) Open settings, then open "mail, contacts, calendars"
    (2) Open .Mac account
    (3) Turn OFF the applications that are causing problems
    (4) When you turn off on of the applicatios, a red sign "stop syncing" will appear. Press it. A msg will appear "turning off xxx"
    (5) Get out of settings
    (6) Don't do anything for about 20 mins. Don't touch your iPhone or your Mac. (syncing needs time to settle down)
    After 20 minutes...
    Mac:
    (1) Open each application that is giving you problems. Fix errors. Back up.
    (2) Do this for each application
    iPhone
    (1) Open settings, then open "mail, contacts, calendars"
    (2) Open .Mac account
    (3) Slide switch to ON for each app you turned off; there won't be a msg
    (4) Get out of settings
    (5) Via MobileMe, syncing will start again.
    Wait about 20 minutes, again. You should see all in order after that. At least, that was my experience.

  • I am trying to free up some room on my touch and am unable to delete any songs or books from the listing.  With iTumes open and my touch listed I open the touch.  I then select the items I want to delete from the touch and press the delete button.

    I am trying to free up some room on my touch and am unable to delete any songs or books from the listing.  With iTumes open and my touch listed I open the touch.  I then select the items I want to delete from the touch and press the delete button.  Nothing happens.  I have also tried to right click on the item, but a delete option is not listed.  What do I need to do to get rid of some books?

    Open itunes, connect ipod, go to each tab, select what you want to be on the ipod, sync

  • I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    I have 2 photo albums on my iPhone that i want to delete. One is called "Photo Library" the other is called "iPhonePics". I cannot delete any of the photos in either album. How do I delete the photos and/or the albums?

    You can uncheck multiple songs by selecting all the songs you want to uncheck, then right-click and choose "uncheck selection".  Also, make sure that you have checked "Sync only checked songs and videos" on the Summary tab of your iTunes sync settings or the sync process will ignore your selections.
    You can remove all the photos from your camera roll using Preview on your Mac.  Connect your phone to your Mac, open Preview, go to File>Import from iPhone.  When your photos appear in Preview, select the photos you want to delete, then click on the icon at the bottom showing the red circle with the diagonal line through it (see image below), then click Delete.
    To remove photos from the Photo Stream album on your phone you'll have to either reset Photo Stream (deleting all the photos from iCloud) or turn off Photo Stream on your phone.

  • Cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    cannot send or receive yahoo mail or gmail from iPhone . installed ios 6 recently. tried rebooting the phone and deleting the email account and adding again but nothing works ! can someone suggest a solution?

    Not sure about yahoo, but for gmail, I done the following:
    Set up using Exchange on iPhone, it'll keep prompting for password.  On PC use captcha option, log in to gmail account from PC after completingg captcha option, enter password on iPhone.
    See how that goes for gmail, let us know.
    Hopefully someone will have fix for yahoo.

  • I don't have very much space left on my iCloud backup. I had a previous iPhone, my current iPhone and my iPad that are all connected to one cloud. Can I delete the backup from my previous iPhone? Will it delete in the cloud AND on the phone?

    I had a previous iPhone, my current iPhone and my iPad that are all connected to one cloud. Can I delete the backup from my previous iPhone? Will it delete in the cloud AND on the phone? or does it just delete from iCloud? or does it just delete from the phone? Someone please help!

    You can delete the backup without any problem. Only the backup will be deleted from iCloud and nothing else will be deleted, so you can do it without worrying about losing data on iCloud or your devices

  • How can I delete the video and keep the Audio  in a few frames using Imovie 11

    How can I delete the video and keep the Audio  in a few frames using Imovie 11?

    I've met the problem too before. but i solved it with  Audio Converter Mac instead of iMovie. If you have similar situation that just want to keep audio but not video, and if your file format is not workable in iMovie, you can use the Audio Converter for help too. it can easily help to extract audio soundtrack from any video format. Or if you need to convert one audio format to another, it is a good choice too, because it supports many common audio output formats.
    <Link Edited By Host>

  • HT1918 i can not change the address from USA to Canada so i live in Canada now How can i do that? or if i can not change How can i delete an account and make the new account by use the same email address?

    because i can not use the Canadian card to redeem in my account from USA. should i delete an account and create the new one that should valid in Canada by using the same email address? or what should i do? (i really want to use my recent email)

    Hi Kazmania89,
    Welcome to the Support Communities!
    If you require additional assistance with this, click on the link below for guidance:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Once you are able to gain access to the old Apple ID, this article may be helpful:
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    I have purchased music, apps, or books with multiple Apple IDs. How can I get all of this content onto my iOS device?

    First, you need to copy all of your purchased content so it is on the same Mac or PC with iTunes. This computer should be the one you sync your device with. For more information on how to move your content, see these articles:
    Mac:  iTunes for Mac: How to copy purchases between computers
    PC:  iTunes for Windows: How to copy purchases between computers
    Next, authorize your computer to play content with each Apple ID in iTunes. Once your computer is authorized for all your content, it can be synced to your iPhone, iPad, or iPod touch. 
    Cheers,
    - Judy

  • I have iBooks 2.1 on ipad. I changed my password and can no longer update the app. If I delete the app and install the updated version, will I lose the books I have purchased?

    I have iBooks 2.1 on ipad. I changed my password and can no longer update the app. If I delete the app and install the updated version, will I lose the books I have purchased?

    Try logging out of your account on the iPad by tapping on your id in Settings > iTunes & App Stores and then log back in and see if you can then update the app.
    If you do delete the app then you should be able to re-download your ibook purchases via the Purchased tab in the ibookstore in the app. But in case some of them are no longer available in the store and/or you have PDFs or epubs in it, then you could first connect it to your computer's iTunes and do File > Transfer Purchases (File > Devices > Transfer Purchases on iTunes 11) which should copy them over to the Books part of your iTunes library so that you have your own copy of them and can sync them back (even though they aren't iTunes purchases it should also copy over any PDFs or epubs that you have in the iBooks app)

Maybe you are looking for

  • Help! Deleted folders in mail - have all the emails been lost?

    I get hundreds of emails a week so I have to keep everything pretty well organised in separate client folders, supplier folders, staff folders etc. Anyway I wanted to re-arrange some of the folders and to delete some I no longer needed. I moved a fol

  • Can fill-able forms created in Acrobat 9 work with SharePoint 2013 workflow?

    Okay so here's the deal..... I have a few HR forms that need to be searchable and created as workflows in SharePoint 2013. Creating a custom list will not work because it is not a built to create forms. Integrating InfoPath would be ideal, but it wil

  • Why is the OTN forum so unstable ?????

    Why is the OTN forum so unstable ????? I haven't seen any other Forum on the WORLD WIDE WEB being so slow/unstable? Maybe you should move over to some MS products (FYI this was a jocke).

  • Retriving live data frm FTP.

    We are doing some data anaylis for solar power outputs. Omron Data Logger will log the datas into webbrowser . Is there a way that we could read the datas value directly fromFTPconnection. I dont think you all can acces to my FTP link as it has locat

  • Automating the Creation Process for 1 video for 1000s?

    Here's what I want to do, but I don't know if it's possible: For my company, I have designed a fairly simple motion graphics type video for various products that we sell online. It involves the image of the project, some descriptions of it and a titl