Hi @Riley
Is there any difference between BULK INSERT and OPENROWSET(BULK...)?
Besides the syntax difference, there is no difference to me.
Regarding SSIS, the Data Flow task encapsulates the data flow engine that moves data between sources and destinations, and lets the user transform, clean, and modify data as it is moved. Addition of a Data Flow task to a package control flow makes it possible for the package to extract, transform, and load data.
This task has its own design surface like the Control Flow, where you can arrange task-like components called transforms to manipulate data as it flows in a pipeline from the source to a destination. The Data Flow is the heart of SSIS, because it encapsulates all the data transformation aspects of ETL. It can set several data source and destination which is different with Bulk Insert task.
Drag and drop the data flow task and inside the data flow drag and drop flat file source and OLE DB destinations and copy the data. This approach is useful if we want to perform any SSIS transformations.
Use the SSIS Bulk Insert Task. This approach is more powerful compared to the previous one because internally, Bulk Insert Task uses Bulk Copy (BCP) operation (Which is very fast in SQL Server).
More details you may refer:
Best regards,
Cosmog Hong