70-465 · Question #35
Drag and Drop Question You plan to deploy SQL Server 2012. You must create two tables named Table 1 and Table 2 that will have the following specifications: - Table1 will contain a date column named…
The correct answer is Sparse; Computed. For Table1, the 'Sparse' column option is correct because SQL Server sparse columns eliminate storage overhead for NULL values - when a column is NULL approximately 80% of the time (and the threshold for storage savings is typically 60%+ NULLs for most data types including…
Question
Exhibit
Answer Area
Drag items
Correct arrangement
- Sparse
- Computed
Explanation
For Table1, the 'Sparse' column option is correct because SQL Server sparse columns eliminate storage overhead for NULL values - when a column is NULL approximately 80% of the time (and the threshold for storage savings is typically 60%+ NULLs for most data types including date), sparse columns significantly reduce storage by using no space for NULL values. For Table2, a non-persisted 'Computed' column is correct because it calculates the product of two other columns on-the-fly without storing the result on disk, thus using zero additional storage space. 'Persisted computed' would be wrong for Table2 because persisting the computed column physically stores the calculated value on disk, which increases storage requirements - the opposite of what is needed for minimizing storage across 1 million+ rows.
Topics
Community Discussion
No community discussion yet for this question.
