CertyRush
Đang tải...
C CertyRush
Câu hỏi free preview

Câu 61: 70-463: MCSA Implementing a Data Warehouse with Microsoft SQL Server 20122014

You are implementing the indexing strategy for a fact table in a data warehouse. The fact table is named Quotes. The table has no indexes and consists of seven columns: ✑ [ID] ✑ [QuoteDate] ✑ [Open] ✑ [Close] ✑ [High] ✑ [Low] ✑ [Volume]Each of the following queries must be able to use a columnstore index: ✑ SELECT AVG…

Nội dung câu hỏi

You are implementing the indexing strategy for a fact table in a data warehouse. The fact table is named Quotes. The table has no indexes and consists of seven columns: ✑ [ID] ✑ [QuoteDate] ✑ [Open] ✑ [Close] ✑ [High] ✑ [Low] ✑ [Volume]Each of the following queries must be able to use a columnstore index: ✑ SELECT AVG ([Close]) AS [AverageClose] FROMQuotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'. ✑ SELECT AVG([High] - [Low]) AS [AverageRange] FROM Quotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'.SELECT SUM([Volume]) AS [SumVolume] FROM Quotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'. You need to ensure that the indexing strategy meets the requirements. The strategy must also minimize the number and size of the indexes. What should you do?

Minh họa câu hỏi

Các lựa chọn

Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.

  1. A. Create one columnstore index that contains [ID], [Close], [High], [Low], [Volume], and [QuoteDate].
  2. B. Create three coiumnstore indexes:One containing [QuoteDate] and [Close]One containing [QuoteDate], [High], and [Low]One containing [QuoteDate] and [Volume]
  3. C. Create one columnstore index that contains [QuoteDate], [Close], [High], [Low], and [Volume]. — đáp án hiện tại
  4. D. Create two columnstore indexes:One containing [ID], [QuoteDate], [Volume], and [Close]One containing [ID], [QuoteDate], [High], and [Low]

Cộng đồng

0 bình luận công khai. Tên thành viên được ẩn một phần.

Chưa có bình luận. Mở giao diện tương tác để bắt đầu thảo luận.

Câu hỏi liền kề