Microsoft 70-463 Practice Questions 4
Microsoft 70-463 Practice Quiz
Welcome to the Microsoft 70-463 Practice Quiz! This engaging quiz is designed for individuals looking to sharpen their knowledge and skills in SQL Server Integration Services (SSIS) and Master Data Services (MDS). Whether you are preparing for certification or simply want to test your knowledge, this quiz has it all!
Featuring:
- 31 targeted questions on SSIS and MDS
- Multiple choice and multi-select formats
- Instant feedback on your answers
For multichoice questions the points are divided among the correct answers.
For multichoice questions the points are divided among the correct answers.
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]
FROM Quotes
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?
You are developing a SQL Server Integration Services (SSIS) package that imports data into a data warehouse. You add an Execute SQL task to the control flow. The task must execute a simple INSERT statement. The task has the following requirements:
- The INSERT statement must use the value of a string package variable. The variable name is StringVar.
- The Execute SQL task must use an OLE DB Connection Manager.
In the Parameter Mapping tab of the Execute SQL task, StringVar has been added as the only parameter. You must configure the SQLStatement property of the Execute SQL task. Which SQL statement should you use?
You are developing a SQL Server Integration Services (SSIS) package to load data into a SQL Server table on Server A. The package includes a data flow and is executed on ServerB. The destination table has its own identity column. The destination data load has the following requirements:
- The identity values from the source table must be used.
- Default constraints on the destination table must be ignored.
- Batch size must be 100,000 rows.
You need to add a destination and configure it to meet the requirements. Which destination should you use?
To facilitate the troubleshooting of SQL Server Integration Services (SSIS) packages, a logging methodology is put in place. The methodology has the following requirements:
- The deployment process must be simplified.
- All the logs must be centralized in SQL Server.
- Log data must be available via reports or T-SQL.
- Log archival must be automated.
You need to configure a logging methodology that meets the requirements while minimizing the amount of deployment and development effort. What should you do?