Depending on how big your music collection is, you could limit the result you do get back like follows:
- Code: Select all
select top 1000 id,path,type from media_file order by id
You can increase/decrease "top 1000" as you like, so you can try and check what would be the maximum until your subsonic website times out.
After you found the sweet-spot you are confident with using and the server still works properly, you may use the highest ID from the result you got back to get the next set of result: (replace 123456 with the highest ID from your last result)
- Code: Select all
select top 1000 id,path,type from media_file where id > 123456 order by id
Repeat this until you got everything back from your Subsonic database.
Once that is done you could order everything by Path in Excel to probably make it easier to read.
Best of Luck you are able to retrieve everything necessary