>The problem is that I cannot remember which of all my albums have
>varying YEAR tags. Does anyone have any suggestion on how to search for
>those albums? Each album is stored in a separate folder.
>
If you know how to run SQL queries against your SqueezeCenter DB, you can use 
this:

select CONVERT(a.title USING UTF8) AS 'album name'
from (
  select album, year, count(*) as tracks
  from tracks
  group by album, year) as mya
  join albums a on mya.album = a.id
group by mya.album
having count(mya.year) > 1

This will report the name of each album that has songs with different years.
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping

Reply via email to