views:

52

answers:

1

Hi, I need to parse a bunch of delimited flat files and import them into a database. I could build my own simple metadata-driven parser and importer but figure there must be something like this out there already?

Thanks, Dave.

+1  A: 

Have you looked into SQL Server Integration Services (SSIS)? It will do this, as well as the sorts of cleanup or other manipulation frequently required after parsing flat files.

John Saunders
SSIS has a very good story around logging and diagnostics! You can even write your own log provider and integrate it, with no change to the packages. What concerns do you have? It's ok in 2005, and kicks ass in 2008.
John Saunders