70-467 · Question #14
70-467 Question #14: Real Exam Question with Answer & Explanation
The correct answer is D: Create an assembly that contains formatting properties and code.. For enterprise SSRS solutions needing centralized, easily updatable shared code and formatting, deploying a custom .NET assembly to the SSRS server is the correct strategy. All reports reference the single assembly, so updating and redeploying it propagates changes everywhere aut
Question
Options
- ACreate a report as a template. Apply standardized formatting to the template.
- BBuild a web service that retrieves formatting properties and runs code.
- CStore the formatting properties and code in database objects.
- DCreate an assembly that contains formatting properties and code.
Explanation
For enterprise SSRS solutions needing centralized, easily updatable shared code and formatting, deploying a custom .NET assembly to the SSRS server is the correct strategy. All reports reference the single assembly, so updating and redeploying it propagates changes everywhere automatically.
Common mistakes.
- A. A report template applies standardized formatting only at report creation time; changes to the template after reports have been created do not propagate to existing reports, requiring manual updates across the entire report catalog.
- B. A web service introduces network latency on every report render, creates an external dependency that becomes a single point of failure, and requires significantly more development and infrastructure effort than a compiled assembly.
- C. Storing formatting properties and code in database objects forces reports to query the database at render time for styling values, adds query overhead, and mixes presentation logic with data storage in a way that is harder to maintain than a versioned assembly.
Concept tested. SSRS custom assembly deployment for shared enterprise code
Community Discussion
No community discussion yet for this question.