What is the property “RunInOptimized”? How to set this property?
If this property is set to true then the SSIS engine ignore the unused/unmapped columns. Means it does not allocate memory to store data for those columns. At the compilation phase itself SSIS engine identifies what are the columns from source are using across the package, if it finds any columns are neither using nor mapping to destination, it simply ignores all those columns.
We can set this property at two levels “Project Level” and “Package Level”.
Project Level: From project properties → Debugging → RunIn*****. By default “FALSE”
Package Level: Can find in DataFlow properties. By default “TRUE”
Comments
Post a Comment