70-463 Premium Bundle

70-463 Premium Bundle

Implementing a Data Warehouse with Microsoft SQL Server 2012 Certification Exam

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

Microsoft 70-463 Free Practice Questions

Q1. You are developing a SQL Server Integration Services (SSIS) package to load data into a data warehouse. 

You need to establish the correct order for loading each table to maximize parallel processing. 

Which order should you use? 

A. 1. DimCurrency, DimScenario, DimAccount in parallel 

2. DimOrganization 

3. FactFinance 

B. 1. DimCurrency, DimOrganization in parallel 

2. DimScenario, DimAccount in parallel 

3. FactFinance 

C. 1. DimCurrency, FactFinance in parallel 

2. DimOrganization, DimScenario, DimAccount in parallel 

D. 1. FactFinance 

2. DimOrganization, DimScenario, DimAccount in parallel 

3. DimCurrency 

E. 1. DimCurrency 

2. DimOrganization 

3. DimScenario, DimAccount in parallel 

4. FactFinance 

Answer:

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

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

Q2. You are using SQL Server Data Tools to develop a SQL Server Integration Services (SSIS) project. 

The first package that you create in this project contains a package connection that accesses a Microsoft Excel file. Additional packages in the project must also access this file. 

You need to define and reuse the Excel file connection in all project packages. 

What should you do? 

A. Copy the package Connection Manager and paste it in the second package. 

B. Set the RetainSameConnection property of the package Connection Manager to True. 

C. Convert the package Connection Manager in the first package to a project Connection Manager. 

D. Convert the project to the Package Deployment model. 

Answer:

Q3. You are deploying a new SQL Server Integration Services (SSIS) package to several servers. 

The package must meet the following requirements: 

. .NET Common Language Runtime (CLR) integration in SQL Server must not be enabled. 

. The Connection Managers used in the package must be configurable without editing the package. 

. The deployment procedure must be automated as much as possible. 

You need to set up a deployment strategy that meets the requirements. 

What should you do? 

A. Use the gacutil command. 

B. Use the dtutil /copy command. 

C. Use the Project Deployment Wizard. 

D. Create an OnError event handler. 

E. Create a reusable custom logging component. 

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

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

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

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

J. Deploy the package by using an msi file. 

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

Answer:

Q4. You are developing a SQL Server Integration Services (SSIS) package to implement an incremental data load strategy. 

The package reads data from a source system. Depending on the value in a source column, the package redirects rows to one of five different data flow paths. 

You need to add a data flow transformation to support the package redirection. 

Which data flow transformation should you use? 

A. Conditional Split 

B. pjvot 

C. Multicast 

D. Lookup 

Answer:

Q5. You administer a Microsoft SQL Server database. You want to import data from a text file to the database. 

You need to ensure that the following requirements are met: 

. Data import is performed by using a stored procedure. 

. Data is loaded as a unit and is minimally logged. 

Which data import command and recovery model should you choose? (To answer, drag the appropriate data import command or recovery model to the appropriate location or locations in the answer area. Each data import command or recovery model may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) 

Answer:  

Q6. 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:

Q7. You are administering SQL Server Integration Services (SSIS) permissions on a production server that runs SQL Server 2012. 

Quality Assurance (QA) testers in the company must have permission to perform the following tasks on specific projects: 

View and validate projects and packages 

View Environments and Environment variables 

Execute packages 

You need to grant the minimum possible privileges to the QA testers. 

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

A. In the SSISDB database, add QA Tester logons to the ssis_admin role. 

B. In the msdb database, add QA Tester logons to the db_ssisoperator role. 

C. Grant Modify permission in the projects to the QA Tester logons. 

D. Grant Read permission in the SSIS catalog folder, the projects, and the Environments to the QA Tester logons. 

E. Grant Execute permission in the projects to the QA Tester logons. 

F. In the msdb database, add QA Tester logons to the db_ssisItduser role. 

Answer: B,D 

Q8. You are administering SQL Server Integration Services (SSIS) permissions on a production server that runs SQL Server 2012. 

Package developers in your company must have permission to perform the following tasks only on their own projects: 

View projects and packages View Environments Validate packages Execute packages 

You need to grant rights to the developers without assigning unnecessary privileges. 

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

A. Add developer logins to the db_ssisltduser role in the msdb database. 

B. Add developer logins to the db_ssisoperator role in the msdb database. 

C. Grant Execute permission in the projects for the developer logins. 

D. Grant Read permission in the SSIS catalog folder, the projects, and the Environments. 

E. Add developer logins to the ssis_admin role in the SSISDB database. 

F. Grant Modify permission in the projects for the developer logins. 

Answer: B,D 

Explanation: B: db_ssisoperator 

* Read actions Enumerate all packages. View all packages. Execute all packages. Export all packages. 

Execute all packages in SQL Server Agent. 

* Write actions None 

D: Need read permissions on the Environments in order to be able to view them. 

Incorrect: 

Not A: db_ssisltduser 

* Read actions 

Enumerate own packages. 

Enumerate all packages. 

View own packages. 

Execute own packages. 

Export own packages. 

* Write Actions 

Import packages. 

Delete own packages. 

Change own package roles. 

Not E: db_ssisadmin 

Too many permissions (such as delete all packages). 

Q9. You are reviewing the design of a student dimension table in an existing data warehouse hosted on SQL Azure. 

The current dimension design does not allow the retention of historical changes to student attributes such as ParentOccupation. 

You need to redesign the dimension to enable the full historical reporting of changes to multiple student attributes including ParentOccupation. 

What should you do? 

A. Add CurrentValue and PreviousValue columns to the student dimension. 

B. Enable Snapshot Isolation on the data warehouse. 

C. Add an IsCurrent column to the student dimension. 

D. Add StartDate and EndDate columns to the student dimension. 

Answer:

Explanation: Adding a start and end date will give you this ability as when a record is inserted and given a start and end date, you’ll have the ability to determine when they were active therefore giving you a retention of historical changes 

Q10. You develop a SQL Server Integration Services (SSIS) project by using the Package Deployment Model. A package in the project extracts data from a Windows Azure SQL Database database. 

The package is deployed to SQL Server. 

The package is not producing the desired results. 

You need to generate the .mdmp and .tmp debug files in order to troubleshoot the issues. 

What should you do? 

A. Execute the catalog.add_data_tap stored procedure with the package execution_id. 

B. Execute the catalog.create_execution_dump stored procedure with the package execution_id. 

C. Run the DTEXEC utility with the /DumpOnError option. 

D. Run the DTEXEC utility with the /Reporting V option. 

Answer:

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

The package sources data from an HTML web page that lists product stock levels. 

You need to implement a data flow task that reads the product stock levels from the HTML web page. 

Which data flow source should you use? 

A. Use an msi file to deploy the package on the server. 

B. Open a command prompt and run the dtutil /copy command. 

C. Add an OnError event handler to the SSIS project. 

D. Open a command prompt and run the gacutil command. 

Answer:

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

Q13. Your company uses a proprietary encryption algorithm to secure sensitive data. A custom cryptographic assembly was developed in Microsoft .NET and is used in several applications. 

A SQL Server Integration Services (SSIS) package is importing data into a Windows Azure SQL Database database. Some of the data must be encrypted with the proprietary encryption algorithm. 

You need to design the implementation strategy to meet the requirements while minimizing development and deployment effort and maximizing data flow performance. 

What should you do? 

A. Create a SQL Common Language Runtime (SQLCLR) function that uses the custom assembly to encrypt the data, deploy it in the Windows Azure SQL Database database, and use it when inserting data. 

B. Use an SSIS Script transformation that uses the custom assembly to encrypt the data when inserting it. 

C. Create a SQL Common Language Runtime (SQLCLR) stored procedure that uses the custom assembly to encrypt the data, deploy it in the Windows Azure SQL Database database, and use it when inserting data. 

D. Use an SSIS Script task that uses the custom assembly to encrypt the data when inserting it. 

Answer:

Q14. You develop a SQL Server Integration Services (SSIS) project by using the Project Deployment model. 

The project contains many packages. It is deployed on a server named Development!. The project will be deployed to several servers that run SQL Server 2012. 

The project accepts one required parameter. The data type of the parameter is a string. 

A SQL Agent job is created that will call the master.dtsx package in the project. A job step is created for the SSIS package. 

The job must pass the value of an SSIS Environment Variable to the project parameter. The value of the Environment Variable must be configured differently on each server that runs SQL Server. The value of the Environment Variable must provide the server name to the project parameter. 

You need to configure SSIS on the Development1 server to pass the Environment Variable to the package. 

Which four actions should you perform in sequence by using SQL Server Management Studio? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.) 

Answer:  

Q15. 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 Data Conversion component 

B. an Execute SQL task that executes a MERGE statement on the database 

C. a Merge component 

D. an Expression task 

Answer:

Explanation: Note: Type of Slowly Changing Dimensions Slowly Changing Dimensions are categorized into three types named: Type 1, Type 2, and Type3. The Type 1 SCD does not maintain the history of changing attributes, it overwrites values of the attributes. Type 2 maintains historical values for changing attributes. Type 3 that we do not use much maintains separate columns for changed attributes. SSIS SCD wizard supports both Type 1 and Type 2. Using MERGE instead of SCD wizard Replacement of SCD wizard with MERGE is not a straightforward technique. If the SCD has both Type 1 and Type 2 types attributes, they need to be handled separately. 

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

You need to design a package to change a variable value during package execution by using the least amount of development effort. 

What should you use? 

A. Expression task 

B. Script task 

C. Execute SQL task 

D. Execute Process task 

E. Term Extraction transformation 

Answer:

Reference: 

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

START 70-463 EXAM