What is the best method to move records into a SQL Server database. I will want to insert into multiple related tables. For example, Customer and Address. What is the best method to bring data from flat file to database tables using BizTalk. Is it a stored procedure with a bunch of params? Is it updategram? Is it BulkCopy via .net code call to load XML?
I am a SSIS/DTS person by nature, but in the attempt to maintian one point of interaction (BizTalk) I am curious about best method to bring data in from flat file to database.
Thanks.