Artists are not all in artists

not all the artists are in the artists folder and I am unable to access some of my songs.
jamie

I've just discovered this too, and it can be a pretty serious problem especially if you have a lot of tracks. The tracks are actually there, but they just don't show up since there is no "All>" menu. But if you hit play on the Artist name (rather then select/browse into the name), you can still access all the tracks.
I tried to work around the bug by giving one other track an album title of a blank "(space)", then resynced my iPod. Inoticed that iTunes actually transfered a second copy of each track I did this to (about fifty tracks or so), adding and extra 400MB or so to my iPod!
So, then I delete the new album titles, and wouldn't you know it but iTunes recopied the tracks to my iPod AGAIN without deleting the previous copies. The glitch is still present, but only one copy of the track is there (albeit buried by the glitch). So now an 18.1GB iTunes library takes up over 19GB on the iPod.
What a pain... It seems I'll have to reformat my iPod to reclaim the lost space.

Similar Messages

  • HT204053 why are not all my songs I have purchased in the itunes store and are on my computer not on my phone?

    why are not all my songs I have purchased in the itunes store and are on my computer not on my phone?  Very frustrating I purchaed almosta $100 worth of songs for a trip and they are not on my phone after continuious syncs.  Do I have to pay for itunes match for this?

    Welcome to the Apple Community.
    Have you actually selected them to be synced to your device from the iTunes sync settings.

  • Select only records where column values are not all equal to zero

    Hi everyone, this seems so easy but it's got me stumped on finding a clean, easy way to accomplish this. I'm sure when someone responds, I'll kick myself. So, assume the following is what I've got:
    with mytable as (
    select 'Type 1' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'FEB' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAR' as monthname, 5 as theval from dual union all
    select 'Type 1' as itemtype, 'APR' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAY' as monthname, 4 as theval from dual union all
    select 'Type 1' as itemtype, 'JUL' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'AUG' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'SEP' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'OCT' as monthname, 7 as theval from dual union all
    select 'Type 1' as itemtype, 'NOV' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'DEC' as monthname, 2 as theval from dual union all
    select 'Type 2' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'FEB' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'APR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAY' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'OCT' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'NOV' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'DEC' as monthname, 0 as theval from dual
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    order by itemtypeI need an outer query around this one or something that will only select "Type 1"... i.e., if all of the months are each equal to zero, don't include the record in the result set.
    Summing them to get a total of zero is not an option, as I could have -15 and +15 in different columns, in which case, that record would need to be displayed.
    Something as simple as... "where not (oct = 0 and nov = 0 and dec = 0...) at the end is all I seem to need. I've thought about adding a case clause for each column, but that doesn't seem very efficient. Ideas?
    Thanks in advance!
    Mark
    Edit... I know the following will work using the MINUS operator, but my real query is really huge, and I don't want to have to write it twice...
    {code}
    select
    itemtype,
    sum (case monthname when 'JAN' then theval else 0 end) as JAN,
    sum (case monthname when 'FEB' then theval else 0 end) as FEB,
    sum (case monthname when 'MAR' then theval else 0 end) as MAR,
    sum (case monthname when 'APR' then theval else 0 end) as APR,
    sum (case monthname when 'MAY' then theval else 0 end) as MAY,
    sum (case monthname when 'JUN' then theval else 0 end) as JUN,
    sum (case monthname when 'JUL' then theval else 0 end) as JUL,
    sum (case monthname when 'AUG' then theval else 0 end) as AUG,
    sum (case monthname when 'SEP' then theval else 0 end) as SEP,
    sum (case monthname when 'OCT' then theval else 0 end) as OCT,
    sum (case monthname when 'NOV' then theval else 0 end) as NOV,
    sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    minus
    select
    itemtype,
    jan,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec
    from (
    select
    itemtype,
    sum (case monthname when 'JAN' then theval else 0 end) as JAN,
    sum (case monthname when 'FEB' then theval else 0 end) as FEB,
    sum (case monthname when 'MAR' then theval else 0 end) as MAR,
    sum (case monthname when 'APR' then theval else 0 end) as APR,
    sum (case monthname when 'MAY' then theval else 0 end) as MAY,
    sum (case monthname when 'JUN' then theval else 0 end) as JUN,
    sum (case monthname when 'JUL' then theval else 0 end) as JUL,
    sum (case monthname when 'AUG' then theval else 0 end) as AUG,
    sum (case monthname when 'SEP' then theval else 0 end) as SEP,
    sum (case monthname when 'OCT' then theval else 0 end) as OCT,
    sum (case monthname when 'NOV' then theval else 0 end) as NOV,
    sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    where ( oct = 0 and nov = 0 and dec = 0 and jan = 0 and feb = 0 and mar = 0
    and apr = 0 and may = 0 and jun = 0 and jul = 0 and aug = 0 and sep = 0
    order by itemtype
    {code}
    Edit again... Ok, I guess I'm answering my own question here, but I think using a WITH clause to write the main query once and then selecting * from it twice using the MINUS operator in between where the second query has where (oct = 0, etc.) is what I need. If anyone else has better suggestions, please do let me know! Here's the pseudo logic for what I've come up with so far...
    {code}
    WITH mainquery as (select everything)
    select * from mainquery
    minus
    select * from mainquery where (oct = 0, nov = 0, etc...)
    {code}
    Thanks again!
    Mark
    Edited by: user455268 on Mar 1, 2012 7:13 PM
    Edited by: user455268 on Mar 1, 2012 7:16 PM

    Hi,
    You can do that with a HAVING clause:
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    HAVING      MIN (theval)     != 0
    OR      MAX (theval)     != 0
    order by itemtype
    ;If the values are all 0, then the MIN and the MAX will both be 0.
    If either the MIN or the MAX is not 0, then the values are not all 0.
    This assumes that the combination (itemtype, monthname) is unique, as it is in your sample data.
    If that's not the case, start with a subquery that GROUPs BY itemtype, monthname, so that, when you get to the main query, that combination will be unique.

  • Genres are not all adding to ipod 7 on synching

    I am new to ipod nano.  I have downloaded music onto my pc using itunes.  I connected ipod and synched.  However not all genres eg easy listening appear on my ipod.  Please advise.

    Hi,
    You can do that with a HAVING clause:
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    HAVING      MIN (theval)     != 0
    OR      MAX (theval)     != 0
    order by itemtype
    ;If the values are all 0, then the MIN and the MAX will both be 0.
    If either the MIN or the MAX is not 0, then the values are not all 0.
    This assumes that the combination (itemtype, monthname) is unique, as it is in your sample data.
    If that's not the case, start with a subquery that GROUPs BY itemtype, monthname, so that, when you get to the main query, that combination will be unique.

  • Apple tv my tv programmes are not playing in widescreen even though rented movies are. Aditionally my photos on my iPhone 4 are also shown only in the middle of the screen? Why are not all films/programmes / photos filling the whole screen?

    Just purchased Apple TV 2 & music videos purchased and films rented from iTunes play in 16:9 ratio and fill my 6 year old Samsung TV screen completely. However my photos and videos played by AirPlay play in the centre of the screen along with TV series purchased and played from iTunes. Why are not all played media filling the TV screen even though they are playing in 16:9 on the TV?

    if the original material is not in widescreen appletv will not play it in widescreen
    if it did it would mean that it had to cut off some of the image

  • Why are not all photos taken with an iphone available on the icloud, even that i made some fotos at the same time. Some of them are afterwards available on fotostream others not

    Hi,
    why are not all photos taken with an iphone available on the icloud, even that i made some fotos at the same time?
    Some of these photos are afterwards available on fotostream others not.
    Thx
    Markus

    If they are in photos view then they are in an event unless you have a corrupted library
    How are you"merging" the photos?
    most common issue is either bad sort (view menu ==> sort events) or bad camera dates
    select one and show event to see the event
    LN

  • IPad pixels are not all working so display is multicoloured any ideas

    iPad pixels are not all working so display is multicoloured any ideas.

    Not normal. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • Hi ! How to identify a 2.0 usb on the Mac mini because I was told that they are not all 2.0

    Someone knows how to identify the usb 2.0 on a mac mini because I use the mini just for music and I have been told that they are not all 2.0.

    Actually, you can have a mixture of USB2.0 and USB 3.0 devices on the 2012 Mini's. USB3.0 devices will operate at 3.0 speed and USB2.0 devices will operate at 2.0 speed. It all depends which device is plugged in first not the slowest speed device. So, if a USB3.0 device is plugged in first, it will use SuperSpeed and USB2.0 devices will use High-Speed. If a USB2.0 device is plugged in first, ALL devices (3.0 and 2.0) will operate at High-Speed (USB2.0).
    In the System Information under USB there are two types of USB hubs. One is USB High-Speed Bus which will show the USB2.0 devices. Another is USB SuperSpeed Bus which shows the USB3.0 devices. You can see your devices under each Bus.
    Below is from this Apple Link:
    How do I get the best performance from the USB 3 ports?
    The first device you plug in will configure the port, so always connect USB 3 capable hubs or devices first.
    What happens if I plug in a USB 2 device into the USB 3 port first?
    If you plug in a USB 2 hub first, all devices connected or "daisy-chained" to that hub will operate up to the maximum transfer rate of USB 2 speed (480 Mbps).

  • I have three iPhones using the same iTunes account, can we set something so that we are not all getting everyones txt messages to all phones?

    I have three iPhones using the same iTunes account, can we set something so that all our txt messages are not appearing on all phones?

    Settings > Messages > Receive At...
    Any iPhone that lists the same email will receive the same texts. This has to be changed in order to stop receiving on all devices.

  • Multimedia touch panel buttons on Satellite A500 are not all working

    Hello,
    I recently purchased an A500 (PSAR9A-02J001) laptop running Windows 7 (32-bit) Home Premium. Not all the top Multimedia touch panel buttons are working. When buttons are pressed, the laptop makes a beeping sound (which is normal) but the corresponding function is not executed.
    For example, the Eco button at the top doesn't switch on/off the eco and the mute button does not mute the volume.
    Device manager shows all devices as working correctly.
    There are no errors in the Event Viewer Application or System logs.
    Please advise!
    Thank you,

    Hello
    Try please to reinstall Toshiba value added package.
    Remove preinstalled version, restart your notebook and install latest version from Toshiba download page.

  • Images are not all represented in PDF

    Hi, I hope my English is good enough!
    I use InDesign CS5 and have in my project a double page with lots of pictures. Among the images is a background image. I have the following problem. When I create a PDF of this spread, either the export or print, are in the PDF, not all images shown. Some images have a white narrow border. Once the PDF is printed, however, the white border has disappeared, probably a representation problem. However, the missing frames are still missing. Opt for the export settings "PDF/X-1a: 2001", which will see all pictures. Can someone explain to me?
    Thank you in advance.
    Greetings Torsten

    You absolutely don't want to use the smallest file size preset for printing.
    I would recommend either the Press Quality (which converts colors to CMYK), the High Quality Print (which does not convert colors, but does not embed profiles) or best of all, if the printer can handle it, PDF/X-4 which leaves colors unchanged and embeds the profiles for conversion in the Printer's RIP.
    My suspicion is the white lines you mention are a transparency flattening artifact known as "stitching." Using Acrobat 5 or higher compatibilty, which all of the presets mentioned above do, will leave the transparency live in the PDF for falttening in the RIP. I would not use the PDF/X-1a standard unless the printer tells you that he cannot work with live transparency. Stitching is usually only a problem on screen or in digital prints and generally does not show in press output.

  • Why are not all of my albums transferred to my itouch when it is synced?

    I can see my albums in iTunes.  After syncing, not all albums are transferred

    Thanks for that.  On closer inspection, the albums all appear on the device within itunes but not on the itouch itself

  • Why are not all strokes scaled, not all objects scaled ?

    I have made a drawing. Then I want to scale it. I select to scale the strokes.
    But:
    - not all strokes are scaled: some are scaled, some are not scaled
    - several objects (that were cloned all from one object) are scaled differently and get different shapes.
    What's the cause? What am I doing wrong?
    Here you can see two screenshots: one before scaling, one after scaling to 45% and zooming in a bit.

    Hi Jacob,
    thank you very much to reply!
    Your tip solved the problem.
    I had thought that it could be something like this but didn't fint the place where the option could be (de)selected.
    It's a strange thing that also the stroke-problem is solved: can't realy explain...
    Illustrator may be the best-in-class, but you cannot imagine how much time I have already lost with this kind of 'problems'.
    Nevertheless, thanks again for helping me!

  • I have iTunes 10.5 and a 4g iPod touch. WHen I upgraded to 5.01, my photos are not all in the correct folders. Any ideas?

    When I load my photos on my 4g ipod touch with iOS 5.01, the photos are there but not all in the correct folders. How can I correct that?

    I spent last week looking for a solution to that little yellow "!" needle haystack....
    It is probably buried where nothing can touch or change it other than what I resorted to and would have saved time, clean install after I made sure to have two backup sets: Windows Easy Transfer plus Paragon clone OS and partitions to drive. Had to spend a full day reinstalling, updates, etc. Careful not to bring back any prefs or data that might be corrupt or wrong.
    10.5 and iOS 5 on new iPod 4G works much better though and as they should and no issues like I had with AMS or other services or needing to restart first before launching iTunes.

  • My jpeg's are not all exported?

    Hello, when I am exporting files to a dropbox shared folder
    (in Jpeg format) and limit the images  to max 500 Kb each, a lot of pictures are not exorted, with error code 36, what is wrong?
    They are "big" enough?

    What version of iPhoto?
    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library thumbnails
    LN

Maybe you are looking for

  • Can't get eth0 to work after fresh install .

    I just finished installing Arch; everything went well, with the exception of Networking . When booting into the new system and logging in as root, I did ping www.google.com and the output was like 70+ tries at receiving data from google, although it

  • Class Cast Exception running Kodo JCA in Weblogic 8.1

    Hi, I have a stateless session EJB that accesses Kodo through the JCA adapter. The database I'm connecting to is mysql. The problem I'm having is that the persistence manager throws a class cast exception when trying to commit the transaction. See be

  • Place fixed flash animation in Dreamweaver

    Hi All, I am a complete beginner with Dreamweaver, and having great problems fixing the size of a flash animation I'm playing as an intro. I have managed to get the animation in and it centred, but when I tested it on another computer I noticed it ha

  • FCP error during install.

    I keep getting an error after installing FCP 5.1.1. It says error during install please try again. Im using 10.4.7 on my ibook 1ghz 640mb ram. I know it will work because a friend has installed it on his. Any one help?

  • Why does my encoded DVD adds a zoom-in and a delay wherever the imported asset has a cross-dissolve?

    Greetings! Still a rank amateur, and a frustrated one because the Encoder when it burns a DVD for me (with no bells or whistles) adds a zoom-in to the cross dissolves that perform very happily in my cs5 sequence and in my H264. When I burn a DVD from