70-463 Premium Bundle

70-463 Premium Bundle

Implementing a Data Warehouse with Microsoft SQL Server 2012 Certification Exam

4.5 
(26145 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 21, 2024Last update

Microsoft 70-463 Free Practice Questions

Q1. You are creating a SQL Server Integration Services (SSIS) package that implements a Type 3 Slowly Changing Dimension (SCD). 

You need to add a task or component to the package that allows you to implement the SCD logic. 

What should you use? 

A. a Script component 

B. an SCD component 

C. an Aggregate component 

D. a Merge component 

Answer:

Q2. You are the administrator of a server that hosts Data Quality Server for a large retail company. 

The server had a hardware failure during business hours. 

You need to restore the server that hosts Data Quality Server to another server. You have a recent backup of all the required databases. 

What should you do? (Each correct answer presents part of the solution. Choose all that apply.) 

A. Restore the DQS_MAIN, DQS_PROJECTS, and DQS_STAGING_DATA databases to another server as soon as possible. 

B. Execute the DQS_MAIN.internal_core.RestoreDQDatabases stored procedure with the appropriate parameter. 

C. Restore only the DQS_MAIN and DQS_STAGING_DATA databases to another server as soon as possible. 

D. Execute the DQS_MAIN.internal_core.InitServer stored procedure with the appropriate parameter. 

Answer: B,D 

Explanation: Steps to restore DQS Databases: 

Restore DQS_MAIN database. 

Restore the DQS_PROJECTS database. 

Restore the DQS_STAGING_DATA database. 

In Object Explorer, right-click the server, and then click.New Query. 

In the Query Editor window, copy the following SQL statements, and 

replace.<PASSWORD>.with the password that you provided during the DQS 

installation for the database master key: 

USE [DQS_MAIN] 

GO 

EXECUTE [internal_core].[RestoreDQDatabases] '<PASSWORD>' 

GO 

.Press F5 to execute the statements. Check the.Results.pane to verify that the statements have executed successfully. 

Note: 

* Backup and restore of SQL Server databases are common operations that database administrators perform for preventing loss of data in a case of disaster by recovering data from the backup databases. Data Quality Server is primarily implemented by two SQL Server databases: DQS_MAIN and DQS_PROJECTS. The backup and restore procedures of the Data Quality Services (DQS) databases are similar to any other SQL Server databases. 

Q3. You are developing a SQL Server Integration Services (SSIS) package to load data into a SQL Server 2012 database. 

The name of the target instance is passed to the package via an Environment variable. The Environment variable provides the server name to the Project parameter named ServerName. 

The OLE DB Project Connection Manager has been parameterized. 

You need to configure the Connection Manager property to accept the parameter. 

Which property and parameter should you use? (To answer, configure the appropriate option or options in the dialog box in the answer area.) 

Answer:  

Q4. You are developing a SQL Server Integration Services (SSIS) package to load data into a data warehouse. The package consists of several data flow tasks. 

The package experiences intermittent errors in the data flow tasks. 

If any data flow task fails, all package error information must be captured and written to a SQL Server table by using an OLE DB connection manager. 

You need to ensure that the package error information is captured and written to the table. 

What should you do? 

A. Use an event handler for OnError for the package. 

B. Use an event handler for OnError for each data flow task. 

C. Use an event handler for OnTaskFailed for the package. 

D. View the job history for the SQL Server Agent job. 

E. View the All Messages subsection of the All Executions report for the package. 

F. Store the System::SourceID variable in the custom log table. 

G. Store the System::ServerExecutionID variable in the custom log table. 

H. Store the System::ExecutionInstanceGUID variable in the custom log table. 

I. Enable the SSIS log provider for SQL Server for OnError in the package control flow. 

J. Enable the SSIS log provider for SQL Server for OnTaskFailed in the package control flow. 

K. Deploy the project by using dtutil.exe with the /COPY DTS option. 

L. Deploy the project by using dtutil.exe with the /COPY SQL option. 

M. Deploy the .ispac file by using the Integration Services Deployment Wizard. 

N. Create a SQL Server Agent job to execute the SSISDB.catalog.validate_project stored procedure. 

O. Create a SQL Server Agent job to execute the SSISDB.catalog.validate_package stored procedure. 

P. Create a SQL Server Agent job to execute the 

SSISDB.catalog.create_execution and SSISDB.catalog.start_execution stored procedures. 

Q. Create a table to store error information. Create an error output on each data flow 

destination that writes OnError event text to the table. 

R. Create a table to store error information. Create an error output on each data flow 

destination that writes OnTaskFailed event text to the table. 

Answer:

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

You need to edit the Script task that has an expression defined. 

Which task should you select? To answer, select the appropriate setting or settings in the answer area. 

Answer:  

Q6. You are deploying a new SQL Server Integration Services (SSIS) project to the test environment. 

A package in the project uses a custom task component. 

You need to ensure that the custom object is deployed on the test environment correctly. 

What should you do? 

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

B. Create a reusable custom logging component. 

C. Create an OnError event handler. 

D. Use the gacutil command. 

E. Use the dtutil /copy command. 

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

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

H. Use the Project Deployment Wizard. 

I. Deploy the package by using an msi file. 

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

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

Answer:

Reference: 

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

Q7. 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 

Q8. You are designing a data warehouse for a software distribution business that stores sales by software title. It stores sales targets by software category. Software titles are classified into subcategories and categories. Each software title is included in only a single software subcategory, and each subcategory is included in only a single category. The data warehouse will be a data source for an Analysis Services cube. 

The data warehouse contains two fact tables: 

. factSales, used to record daily sales by software title 

. factTarget, used to record the monthly sales targets by software category 

Reports must be developed against the warehouse that reports sales by software title, category and subcategory, and sales targets. 

You need to design the software title dimension. The solution should use as few tables as possible while supporting all the requirements. 

What should you do? 

A. Create three software tables, dimSoftware, dimSoftwareCategory, and dimSoftwareSubcategory and a fourth bridge table that joins software titles to their appropriate category and subcategory table records with foreign key constraints. Direct the cube developer to use key granularity attributes. 

B. Create three software tables, dimSoftware, dimSoftwareCategory, and dimSoftwareSubcategory. Connect factSales to all three tables and connect factTarget to dimSoftwareCategory with foreign key constraints. Direct the cube developer to use key granularity attributes. 

C. Create one table, dimSoftware, which contains Software Detail, Category, and Subcategory columns. Connect factSales to dimSoftware with a foreign key constraint. Direct the cube developer to use a non-key granularity attribute for factTarget. 

D. Create two tables, dimSoftware and dimSoftwareCategory. Connect factSales to dimSoftware and factTarget to dimSoftwareCategory with foreign key constraints. Direct the cube developer to use key granularity attributes. 

Answer:

Q9. You are designing a SQL Server Integration Services (SSIS) data flow to load sales transactions from a source system into a data warehouse hosted on Windows Azure SQL Database. One of the columns in the data source is named ProductCode. 

Some of the data to be loaded will reference products that need special processing logic in the data flow. 

You need to enable separate processing streams for a subset of rows based on the source product code. 

Which Data Flow transformation should you use? 

A. Multicast 

B. Conditional Split 

C. Destination Assistant 

D. Script Task 

Answer:

Q10. 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 Data Profiling transform. 

B. Create a custom .NET application based on the Knowledgebase class. 

C. Create a data quality project. 

D. Create a CLR stored procedure based on the Knowledgebase class. 

E. Create a Master Data Services (MDS) business rule. 

Answer:

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

http://msdn.microsoft.com/en-us/library/ff877917.aspx http://msdn.microsoft.com/en-us/library/microsoft.masterdataservices.services.datacontracts.knowledgebase.aspx 

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

Q11. You develop a SQL Server Integration Services (SSIS) package that imports SQL Azure data into a data warehouse every night. 

The SQL Azure data contains many misspellings and variations of abbreviations. To import the data, a developer used the Fuzzy Lookup transformation to choose the closest-matching string from a reference table of allowed values. The number of rows in the reference table is very large. 

If no acceptable match is found, the Fuzzy Lookup transformation passes a null value. 

The current setting for the Fuzzy Lookup similarity threshold is 0.50. 

Many values are incorrectly matched. 

You need to ensure that more accurate matches are made by the Fuzzy Lookup transformation without degrading performance. 

What should you do? 

A. Change the Exhaustive property to True. 

B. Change the similarity threshold to 0.55. 

C. Change the similarity threshold to 0.40. 

D. Increase the maximum number of matches per lookup. 

Answer:

Explanation: 

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

Q12. You are designing a data warehouse that uses SQL Server 2012. 

The data warehouse contains a table named factSales that stores product sales. The table has a clustered index on the primary key, four foreign keys to dimension tables, and an aggregate column for sales totals. All key columns use the int data type and the aggregate column uses the money data type. 

You need to increase the speed of data retrieval from the factSales table. 

Which index type should you add to the table? 

A. Clustered 

B. Semantic search 

C. Nonclustered 

D. XML 

Answer:

Q13. You are using a SQL Server Integration Services (SSIS) project that is stored in the SSIS catalog. An Environment has been defined in the SSIS catalog. 

You need to add the Environment to the project. 

Which stored procedure should you use? 

A. catalog.set_environment_reference_type 

B. catalog.set_environment_property 

C. catalog.create_environment_reference 

D. catalog.create_environment 

Answer:

Q14. A SQL Server Integration Services (SSIS) 2012 package currently downloads sales data from a Windows Azure SQL Database database. 

To improve sales data accuracy, exchange rates must be downloaded daily from a public HTTP website instead of from a weekly flat file. The public website hosts a comma-

separated values (CSV) file that contains one row per currency. 

You need to download the CSV file to the environment. 

What should you use to retrieve the document from the website? 

A. a Script component 

B. a Web Service task 

C. a Web Service source 

D. a Script task 

Answer:

Q15. A SQL Server Integration Services (SSIS) package was deployed two weeks ago with the Project Deployment Model. 

Sometimes the package is started as part of a multistep SQL job. At other times, the package is started manually by a database administrator by using the Object Explorer in SQL Server Management Studio. 

You need to identify the authenticated user responsible for starting the package each time it executes. 

How can you find this information? 

A. In the SSISDB.[catalog], query the .[executions] view. 

B. In the SSISDB.[catalog] , query the [event_messages] view. 

C. In SQL Server Management Studio, view the SQL Agent Job History. 

D. In SQL Server Management Studio, view the SQL Agent Error Log. 

E. In SQL Server Management Studio, view the SQL Server Log. 

Answer:

Q16. A new SQL Server Integration Services (SSIS) project is deployed to the SSIS catalog. 

To troubleshoot some data issues, you must output the data streaming through several data flows into text files for further analysis. You have the list of data flow package paths and identification strings of the various task components that must be analyzed. 

You need to create these output files with the least amount of administrative and development effort. 

Which three stored procedures should you execute 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:  

START 70-463 EXAM