0 votes
in DP 203 Azure by

You need to create a quick object in a test environment and therefore you decide to create a temporal table with an “anonymous” history table. From the given below statement/remarks about the history table in this context, choose the statement(s) that is/are true.

A. You need to manually create the anonymous history table and provide its specific schema

B. The history table is created as a rowstore table

C. The history table is created as a columnstore table

D. A default clustered index is developed for the history table

E. A history table is always uncompressed. No compression is ever applied on the history table

1 Answer

0 votes
by

Correct Answers: B and D

Reason:-

An anonymous history table is automatically built in the same schema as the temporal or current table. The history table is built as a rowstore table. If possible, page compression is applied on the history table otherwise the table remains uncompressed. For example, few table configurations, like SPARSE columns, don’t allow compression.

Option A is incorrect. An anonymous history table is automatically built in the same schema as the temporal or current table.

Option B is correct. It is true that the history table is built as a rowstore table.

Option C is incorrect. The history table is created as a rowstore table, not columnstore table.

Option D is correct. A default clustered index is developed for the history table with an auto-generated name with the format IX_<history_table_name>. This index has the PERIOD columns (end, start).

Option E is incorrect. It is not true that the history table always remains uncompressed. If possible, page compression is applied on the history table otherwise the table remains uncompressed. For example, few table configurations, like SPARSE columns, don’t allow compression.

Related questions

0 votes
asked Jun 11, 2023 in DP 203 Azure by SakshiSharma
0 votes
asked Jun 11, 2023 in DP 203 Azure by SakshiSharma
...