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.

Similar Messages

  • My iTunes Match not add my songs to my iPod touch that I have on my external hard drive I had this drive for 3 years now ain't notting wrong with my songs on it but they are not been added to my iPod why is this so plz fix this or iTunes Match gonna suck

    So I sign up for iTunes Match an start adding music to my iPod touch 5 generation I have a lot of music on my hard drive that I had for over 3 years now but some reason they are not syncing to my iPod touch notting is wrong with my music some may not have a track name but they r fine. Note ,before I added iTunes Match to my iPod I could of synced my music with no problem , so can u guys plz fix this ? Why can't my music be added to my iPod ?iTunes don't have all the songs I want I have my own music before iTunes so I don't understand why can't I have them on my iPod touch 5gen ?

    Hi,
    What is the iCloud status of these tracks?
    You can add icloud status column to song view - go to menu > view> view options and tick box. This will tell you what has been Matched, Uploaded, Purchased, Inelligible, Duplicate or Waiting.
    Jim

  • 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.

  • 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.

  • Why are the application in the apple store are not compatible with the iPod touch 4g? Apple please realize there are some of us who still have the iPod touch 4g!

    Why are the application in the apple store are not compatible with the iPod touch 4g? Apple please realize there are some of us who still have the iPod touch 4g! I just want to know.

    Once I find the game i will truly screenshot that it states "not compatible for these models". I just find it RIDICULOUS that my iPod touch is in good condition and some of the applications that I want download sometimes are not compatible with my iPod touch 4g. I am not going to buy an ipod 5th generation if my 4g is still going strong since the year of 2010.

  • I have many download app and game but these app and games are not install on my ipod show me the error "an unknown error occurred (0xE8008001)" What can i do please solve it

    I have many download app and game but these app and games are not install on my ipod show me the error "an unknown error occurred (0xE8008001)" What can i do please solve it

    download apps and go to this http://www.apple.com/support/ipod/five_rs/

  • 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 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.

  • 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.

  • My headphones are not clicking into my ipod touch 4g 64gb port, and are causing it to pop out at the smallest movement, how can i fix it?

    basically it's been a problem for a while now my sennheiser headphones are not clicking in correctly and are popping out at every movement causing it to pause my music, (very annoying) but it works fine if i hold it in, but can't do this all the time.I dom't know what the problem is or how i can fix.
    any help would be greatly recieved
    regards
    PD

    If it happens with another set of headphones then the headphone jack in the iPod needs replacing.  Apple will only exchange your iPod for a refurbished one for  this price:
    Apple - Support - iPod - Repair pricing
    A third-party place like this one is less expensive. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • 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.

  • Contacts are not syncing to MobileMe, iPod or laptop

    Tried syncing after the MobileMe switch, and my calendars and bookmarks updated fine, but my contacts did not. I could not get new and modified contacts from my MacPro to my MacBook or my iPod Touch, even after trying numerous times.
    I tried resetting the data on MobileMe from my MacPro using "Reset Sync Data" from the Advanced option on the Sync tab in System Prefs, to no avail.
    I then tried unregistering all computers, deleting the information for MobileMe, and resetting the Sync History in iSync itself, and starting from scratch and still nothing.
    I have 314 cards in my Address book on my desktop but no matter how many times and what I've tried on syncing MobileMe, this is still what I see when I go to /contacts on www.me.com:
    "You have no contacts.
    Click the 'New Contact' button in the toolbar or turn on Push on your iPhone or iPod touch and Sync on your Mac or PC. Learn more…"
    Even more frustrating is now that I've reset everything to try to force the sync data to reset, my contacts are only on my MacPro, and not on my iPod or laptop at all anymore where I really need them.
    (And now I notice that MobileMe is not updating changes I've made in iCal on the MacPro.)
    Any help will prevent me from going insane, destroying property and injuring myself or others. Thanks!
    (P.S.: Sync has always been a little flaky, so I'm posting this here as well as in the MobileMe forums in case it has to do with iSync and my system instead of MobileMe.)

    Where is my address book - cannot access contacts - unable to sync address book from .mac to mobile me - are they all lost??????? I understand "they" are working on this? when will I have access to my contacts, etc? VERY FRUSTRATING - I have not memorized my contacts!!!!!!!

Maybe you are looking for

  • Need Help On creation of Proxy in webservices !!

    Hi all , Can one any one help me  in finding what is  creation of standalone/deployable Proxy in webservices. Is there any material where can i get to know in detail about this. Please help me

  • Install of 9201 on Solaris 9

    I am getting this same error on install of 9201 on Solaris 9 ; ld is core dumping - I have all of the required packages so I can't figure out why linking is failing, can anybody please give me a fix?!!? Calling action unixActions2.2.0.6.0 make instal

  • Unable to display customs document in SAP GTS

    Hello, I am using SAP GTS 7.2 Compliance services. SPL and Embargo services are working well (I am not using License determination). Indeed, when I save a sales order in ERP, it is effectively checked for compliance, as I receive a message when it is

  • Issue with Business Services on 11.1.1.8

    I am creating DBAdapter services in jdev and then trying to create Business Services in OEPE. I was using the 11.1.1.4 with no issues, but had to upgrade so the server and dev tools were in sync for easy deployment. Basically when you select the WSDL

  • Can't reinstall Safari 4.1.1

    I am running OS 10.4.11 - I recently updated Safari to 4.1.1 but Safari wouldn't work. I trashed it so I could try to reinstall it but my computer tells me I already have that version running. I installed Firefox just to have a browser but I would li