getcertified4sure.com

Beginners Guide: 70 463 pdf




Want to know Ucertify 70 463 pdf Exam practice test features? Want to lear more about Microsoft Implementing a Data Warehouse with Microsoft SQL Server 2012 certification experience? Study Certified Microsoft 70 463 pdf answers to Improved 70 463 exam questions at Ucertify. Gat a success with an absolute guarantee to pass Microsoft 70 463 training kit pdf (Implementing a Data Warehouse with Microsoft SQL Server 2012) test on your first attempt.

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


Q92. You are developing a SQL Server Integration Services (SSIS) project that contains a project Connection Manager and multiple packages. 

All packages in the project must connect to the same database. The server name for the database must be set by using a parameter named ServerParam when any package in the project is executed. 

You need to develop this project with the least amount of development effort. 

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

A. Set the Sensitive property of the parameter to True. 

B. Edit each package Connection Manager. Set the ServerName property to @[$Project::ServerParam]. 

C. Edit the project Connection Manager in Solution Explorer. Set the ServerName property to @[$Project::ServerParam]. 

D. Create a project parameter named ServerName. 

E. Create a package parameter named ServerName in each package. 

F. Set the Required property of the parameter to True. 

Answer: B,D,F 

Explanation: B: From question: " The server name for the database must be set by using a parameter named ServerParam when any package in the project is executed." 

D: SSIS 2012 has introduced the concept of Project level connection managers. An SSIS project is generally more than one package. To simplify lives, the SSIS team now allows for the sharing of common resources across projects, connection managers being one of those resources. 

F: When a parameter is marked as required, a server value or execution value must be specified for that parameter. Otherwise, the corresponding package does not execute. Although the parameter has a default value at design time, it will never be used once the project is deployed. 

Note: 

* Integration Services (SSIS) parameters allow you to assign values to properties within packages at the time of package execution. You can create project parameters at the project level and package parameters at the package level. Project parameters are used to supply any external input the project receives to one or more packages in the project. Package parameters allow you to modify package execution without having to edit and redeploy the package. 

Reference: Integration Services (SSIS) Parameters 


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

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

B. Open a command prompt and execute the package by using the SQL Log provider and running the dtexecui.exe utility. 

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

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

E. Configure the output of a component in the package data flow to use a data tap. 

F. Run the dtutil command to deploy the package to the SSIS catalog and store the configuration in SQL Server. 

G. Open a command prompt and run the dtexec /rep /conn command. 

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

I. Open a command prompt and run the dtexec /dumperror /conn command. 

J. Configure the SSIS solution to use the Project Deployment Model. 

K. Create a reusable custom logging component and use it in the SSIS project. 

Answer:

Explanation: 

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

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


Q94. 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. Script Component 

B. Audit 

C. Destination Assistant 

D. Data Conversion 

Answer:


Q95. You are installing SQL Server Data Quality Services (DQS). 

You need to give specific users access to the Data Quality Server. 

Which SQL Server application should you use? 

A. SQL Server Configuration Manager 

B. SQL Server Data Tools 

C. SQL Server Management Studio 

D. Data Quality Client 

Answer:


Q96. 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 that uses the SQL Server change data capture (CDC) feature. 

You have added a CDC Source component to the data flow to read changed data from the source system. 

You need to add a data flow transformation to redirect rows for separate processing of insert, update, and delete operations. 

Which data flow transformation should you use? 

A. Audit 

B. Merge Join 

C. Merge 

D. CDC Splitter 

Answer:

Explanation: MERGE with Incremental Loads The change data capture functionality that is new in SQL Server 2008 makes it easier to perform incremental loads reliably to a data warehouse. As an alternative to using parameterized OLE DB Command transformations to perform the inserts and the updates, you can use the MERGE statement to combine both operations. 


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

You use a Data Profiling task to examine the data from a source system. You need to establish: 

. The minimum and maximum dates for the datetime columns in the source data 

. The minimum, maximum, and average values for numeric columns in the source data 

You need to use the appropriate profile type in the Data Profiling task. 

Which profile type should you use? (To answer, select the appropriate profile type in the answer area.) 

Answer: 


Q98. You are developing a SQL Server Integration Services (SSIS) package to load data into a SQL Server table on ServerA. 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? 

A. OLE DB Destination with Fast Load 

B. SQL Server Destination 

C. ADO NET Destination without Bulk Insert 

D. ADO NET Destination with Bulk Insert 

E. OLE DB Destination without Fast Load 

Answer:

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

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

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


Q99. You are deploying a new SQL Server Integration Services (SSIS) package to five 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 and redeploying the package. 

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

. Performance must be maximized. 

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

What should you do? 

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

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

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

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

E. Open a command prompt and run the dtexec /rep /conn command. 

F. Open a command prompt and run the dtexec /dumperror /conn command. 

G. Open a command prompt and execute the package by using the SQL Log provider and running the dtexecui.exe utility. 

H. Create a reusable custom logging component and use it in the SSIS project. 

I. Configure the SSIS solution to use the Project Deployment Model. 

J. Configure the output of a component in the package data flow to use a data tap. 

K. Run the dtutil command to deploy the package to the SSIS catalog and store the configuration in SQL Server. 

Answer:


Q100. You are developing a SQL Server Integration Services (SSIS) project to read and write data from a Windows Azure SQL Database database to a server that runs SQL Server 2012. 

The connection will be used by data flow tasks in multiple SSIS packages. The address of the target Windows Azure SQL Database database will be provided by a project parameter. 

You need to create a solution to meet the requirements by using the least amount of administrative effort. 

What should you do? 

A. Add a SQLMOBILE connection manager to each package. 

B. Add an ADO.NET project connection manager. 

C. Add a SQLMOBILE project connection manager. 

D. Add an ADO.NET connection manager to each data flow task. 

E. Add a SQLMOBILE connection manager to each data flow task. 

F. Add an ADO.NET connection manager to each package. 

Answer: