I have over two hundred individual files I need to load into a sql server database, and unfortunately they are all coming my way as excel csv files. Excel csv files are formatted corectly, but they use an UTF-8 or UTF-16 character format (I forget which), which trips up sql server when you try and bulk insert them. I have fiddled around with different arguments for my bulk insert but I run into other problems. The simplest solution has been to simply use the clipboard to copy them into another file, because the clip board always copies as plain text.
What I would really like to do is use a command line tool to convert all the files into plain text ascii character format in one pass. I am using a windows 7 operating system. Thank you.