In my opinion this is not possible ...Duplicates where both records are from local source are not found.
Category | SubCategory | FullPath | MBID | SourcePath |
MusicFanart | MusicFanartManual | C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\music\Boney M. (7278).jpg | C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\music\Boney M. (7278).jpg | |
MusicFanart | MusicFanartScraped | C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Boney M. (7278).jpg | C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Boney M. (7278).jpg |
Mystery, tried to make a change. I went through the phone to the home server, then to the test computer, made changes and here is the test result. I am not sure how this works and whether it works at all. It is very inconvenient to do something from work, on my home computer.But there are several such records in my FH database!
Thanks!
Maybe this help:Duplicates where both records are from local source are not found.
SELECT FullPath, COUNT(Provider) FROM Image WHERE Provider = 'Local' GROUP BY UPPER(FullPath) HAVING COUNT(UPPER(FullPath)) > 1 ORDER BY FullPath;
Some cleanups when updating the database are added. But maybe not all.Will it do a database clean-up and/or prevent new duplicate entries?
Maybe this help:
SQL:SELECT FullPath, COUNT(Provider) FROM Image WHERE Provider = 'Local' GROUP BY UPPER(FullPath) HAVING COUNT(UPPER(FullPath)) > 1 ORDER BY FullPath;