Reputation: 21178
I'd like to use the Bulk Insert Task using a format file to a target Server/Database/Table. The table may or may not already exist. Is there anyway to have the Bulk Insert Task in SSIS 2008 drop and re-create the table from my SSIS Format File as part of the process?
Upvotes: 0
Views: 1634
Reputation: 48402
Why not put a task (SQL Task) in front of the Bulk Insert task that checks for the existence of the table, and if it doesn't exist, create it?
Upvotes: 3