70-463 · Question #223
You are designing a complex SQL Server Integration Services (SSIS) project that uses the Project Deployment model. The project will contain between 15 and 20 packages. All the packages must connect to
The correct answer is B. Implement project connection managers.. In SSIS's Project Deployment model, project-level connection managers are defined once at the project level and are automatically available to every package within the project. This is precisely the feature designed for the scenario described: 15-20 packages all sharing the same
Question
You are designing a complex SQL Server Integration Services (SSIS) project that uses the Project Deployment model. The project will contain between 15 and 20 packages. All the packages must connect to the same data source and destination. You need to define and reuse the connection managers in all the packages by using the least development effort. What should you do?
Options
- ACopy and paste the connection manager details into each package.
- BImplement project connection managers.
- CImplement package connection managers.
- DImplement parent package variables in all packages.
How the community answered
(35 responses)- B91% (32)
- C3% (1)
- D6% (2)
Explanation
In SSIS's Project Deployment model, project-level connection managers are defined once at the project level and are automatically available to every package within the project. This is precisely the feature designed for the scenario described: 15-20 packages all sharing the same data source and destination. With project connection managers, you configure the connection once and all packages inherit it, minimizing development effort and ensuring consistency. Package-level connection managers (option C) would require you to define them separately in each package - high effort and error-prone. Copying and pasting (option A) is manual and tedious. Parent package variables (option D) are used for passing values between parent and child packages, not for sharing connection managers.
Topics
Community Discussion
No community discussion yet for this question.