Microsoft Exam Questions

What should you implement?

Note: This question is part of a series of questions that use the same or similar answer choices. An
answer choice may be correct for more than one question in the series. Each question is independent
of the other questions in this series. Information and details provided in a question apply only to that
question.
You have a database that is denormalized. Users make frequent changes to data in a primary table.
You need to ensure that users cannot change the tables directly, and that changes made to the primary table
also update any related tables.
What should you implement?

A.
the COALESCE function

B.
a view

C.
a table-valued function

D.
the TRY_PARSE function

E.
a stored procedure

F.
the ISNULL function

G.
a scalar function

H.
the TRY_CONVERT function

Explanation:
Using an Indexed View would allow you to keep your base data in properly normalized tables and maintain
data-integrity while giving you the denormalized “view” of that data.
http://stackoverflow.com/questions/4789091/updating-redundant-denormalized-data-automaticallyin-sql-server