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.