I have a slow custom data source in a SSIS Dataa Flow Task.I have to run the package with multiple parameters
If I want to upload data to a DB using SQL Data Destination(Bulk Insert) the connection times out
If I write the data to a flat file I cannot run multiple instances of the package, since they will write to the same file. Can I pass the file name as a parameter somewhere?
Do I need to write a custom Script Destination as the last resort?