70-463 · Question #76
70-463 Question #76: Real Exam Question with Answer & Explanation
The correct answer is C: Develop a custom task.. A custom SSIS task is compiled into a .NET assembly and deployed to the GAC or a shared location. Once deployed, any SSIS package can reference it as a reusable control flow task without duplicating code. When the logic needs to change, only the assembly is updated - all packages
Question
Options
- AUse the Expression task.
- BUse the Script task.
- CDevelop a custom task.
- DUse the Script component,
- EDevelop a custom component.
Explanation
A custom SSIS task is compiled into a .NET assembly and deployed to the GAC or a shared location. Once deployed, any SSIS package can reference it as a reusable control flow task without duplicating code. When the logic needs to change, only the assembly is updated - all packages that reference it automatically use the new behavior. Option B (Script task) embeds the code directly inside each package's XML, so the same code would need to be copied to every package - violating the 'no copying' requirement. Option A (Expression task) only evaluates SSIS expressions and cannot implement arbitrary custom logic. Option D (Script component) and Option E (custom component) are data flow components, not control flow tasks, and the scenario describes a control flow capability.
Community Discussion
No community discussion yet for this question.