How to set layout properties of data flow using BIML?

时间:2016-08-31 17:47:48

标签: ssis-2012 biml

Every thing is liner in my package which is making it look very thin and tall with so many tasks in it. Is it possible to set layout of tasks like width, height and position from BIML? so I can make it in good looking shape?

I can logically separate tasks into smaller groups with packages and containers but the least one I get could be on an average 20 DFTs.

1 个答案:

答案 0 :(得分:2)

Nope.

Biml describes the elements that exist within the SSIS object model. That model doesn't have entries for spatial layout of tasks and components nor does it contain anything for Annotations. Since neither of those exist in the object model, the emitted SSIS packages won't have them either.

The same would be true if you were using EzAPI or the base integration services library to construct your SSIS packages.

相关问题