views:

172

answers:

2

what's the easiest way to bulk load my iTunes library xml into an existing SQL Server database?

+1  A: 

bcp with xml flag.

http://msdn.microsoft.com/en-us/library/ms162802.aspx

It really depends how you want it in there and what you're purposes are, which you haven't explained.

Sam
A: 

I would recommend looking at the iTunes COM interface. There is an C# SDK that is straightforward to use and the documentation is good. You can download it here: SDK

epotter