70-767 Exam - Implementing a SQL Data Warehouse (beta)

certleader.com

Q1. You are deploying a project to the SQL Server Integration Services (SSIS) catalog.

You need to ensure that the project is deployed to the production environment with the least amount of administrative effort.

What should you do?

A. Create an On Error event handler.

B. Add a data tap on the output of a component in the package data flow.

C. Use the gacutil command.

D. Create a reusable custom logging component.

E. Run the package by using the dtexecui.exe utility and the SQL Log provider.

F. Run the package by using the dtexec /rep /conn command.

G. Use the Integration Services Deployment Wizard.

H. Run the package by using the dtexec /dumperror /conn command.

I. Use the dtutil /copy command.

J. Deploy the package to the Integration Services catalog by using dtutil and use SQL Server to store the configuration.

K. Deploy the package by using an msi file.

Answer: G

Explanation: 

Reference:

http://msdn.microsoft.com/en-us/library/hh479588.aspx http://msdn.microsoft.com/en-us/library/hh213290.aspx http://msdn.microsoft.com/en-us/library/hh213373.aspx

Q2. DRAG DROP

You are building a SQL Server Integration Services (SSIS) package to load product data sourced from a SQL Azure database to a data warehouse. Before the product data is loaded, you create a batch record by using an Execute SQL task named Create Batch. After successfully loading the product data, you use another Execute SQL task named Set Batch Success to mark the batch as successful.

You need to create and execute an Execute SQL task to mark the batch as failed if either the Create Batch or Load Products task fails.

Which three steps should you perform in sequence? (To answer, move the appropriate

actions from the list of actions to the answer area and arrange them in the correct order.)

Answer:

Explanation:

References:

http://msdn.microsoft.com/en-us/library/ms141003.aspx http://msdn.microsoft.com/en-us/library/ms141261.aspx http://msdn.microsoft.com/en-us/library/ms141722.aspx http://msdn.microsoft.com/en-us/library/ms139895.aspx

Q3. You are installing the Data Quality Client on user desktops.

You need to ensure that the prerequisite software components are installed.

Which components must be present to meet this goal? (Each correct answer presents part of the solution. Choose all that apply.)

A. SQL Server Management Studio

B. Internet Explorer 6.0 SP1 or later

C. Microsoft Silverlight 5

D. .NET Framework 3.5 SP1

E. .NET Framework 4.0

F. Microsoft Silverlight 4

G. SQL Server Data Tools

Answer: B,E

Explanation: Before installing DQS, make sure that your computer meets the minimum system requirements.

Data Quality Client requirement:

NET Framework 4.0 (installed during the Data Quality Client installation, if not already installed)

Internet Explorer 6.0 SP1 or later

Q4. You are creating a SQL Server Integration Services (SSIS) package to retrieve product data from two different sources. One source is hosted in a SQL Azure database. Each source contains products for different distributors.

Products for each distributor source must be combined for insertion into a single product table destination.

You need to select the appropriate data flow transformation to meet this requirement.

Which transformation types should you use? (Each answer represents a complete solution. Choose all that apply.)

A. Slowly Changing Dimension

B. pivot

C. Lookup

D. Union All

E. Merge

Answer: D,E

Q5. You are the data steward for a Business Intelligence project.

You must identify duplicate rows stored in a SQL Server table and output discoveries to a CSV file. A Data Quality Services (DQS) knowledge base has been created to support this project.

You need to produce the CSV file with the least amount of development effort. What should you do?

A. Create an Integration Services package and use a Fuzzy Lookup transform.

B. Create a Master Data Services (MDS) model.

C. Create a Data Quality Project.

D. Create an Integration Services package and use a DQS Cleansing transform.

E. Create an Integration Services package and use a Fuzzy Grouping transform.

Answer: C

Explanation:

Ref: http://msdn.microsoft.com/en-us/library/hh213052.aspx

Q6. DRAG DROP

You are developing a SQL Server Integration Services (SSIS) package.

The package uses custom functionality that accesses a SQL Server database. The custom functionality must be implemented by using Language Integrated Query (LINQ).

You need to ensure that the LINQ code can be debugged at design time.

What should you select from the SSIS Toolbox? (To answer, drag the appropriate item to the correct location in the answer area.)

Answer:

Q7. You are designing a fact table in a SQL Server database. The fact table must meet the following requirements:

•Include a columnstore index.

•Allow users to choose up to 10 dimension tables and up to five facts at one time.

•Maximize performance of queries that aggregate measures by using any of the 10 dimensions.

•Support billions of rows.

•Use the most efficient design strategy.

You need to design the fact table to meet the requirements. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A. Design a fact table with 5 dimensional key columns and 10 measure columns. Place the columnstore index on the dimensional key columns.

B. Design a fact table with 5 dimensional key columns and 10 measure columns. Place the columnstore index on the measure columns.

C. Design a fact table with 10 dimensional key columns and 5 measure columns. Place the columnstore index on the dimensional key columns and the measure columns.

D. Design a fact table with 10 dimensional key columns and 5 measure columns. Place the columnstore index on only the measure columns.

Answer: C

Q8. 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?

A. INSERT INTO dbo.Table (variablevalue) VALUES (@StringVar)

B. INSERT INTO dbo.Table (variablevalue) VALUES ($Project::StringVar)

C. INSERT INTO dbo.Table (variablevalue) VALUES (?)

D. INSERT INTO dbo.Table (variablevalue) VALUES ($Package::StringVar)

Answer: C

Q9. HOTSPOT

You are editing a SQL Server Integration Services (SSIS) project named Project1 in SQL Server Data Tools.

A package Connection Manager has been parameterized with project scope.

You need to display the parameters that have been generated for the Connection Manager.

What should you use? To answer, select the appropriate setting or settings in the answer area.

Answer:

Q10. You are designing a SQL Server Integration Services (SS1S) package that uploads a file to a table named Orders in a SQL Azure database.

The company's auditing policies have the following requirements:

•An entry must be written to a dedicated SQL Server log table named OrderLog.

•The entry must be written as soon as the file upload task completes.

You need to meet the company's policy requirements. Which event handler should you use?

A. OnProgress

B. Onlnformation

C. OnPostExecute

D. OnComplete

Answer: C

Explanation: 

Reference: http://msdn.microsoft.com/en-us/library/ms140223.aspx