Say in a data flow task, I have an OLE DB source. I would like to increase the performance of the SSIS. Does it matter where I SELECT less columns?
-
Create a view in database that SELECT less columns, use that as the source.
-
Type SQL SELECT inside the source to select less columns.
-
Choose the table then untick the columns inside the source.
Thank you
In SSIS ,you shouldn’t be using
Table name or view from a variableas they tend to pull all the data .It behaves as Select *.The best way is type out the SQL command which increases the performance . But using View ,
the performance is increased many folds .Check this article for using View in OLEDB SOurce