Questions Ask for 70 463 dumps

We provide real exam 70 463 exam questions and answers braindumps in two formats. Download PDF & Practice Tests. Pass Microsoft 70 463 dumps Exam quickly & easily. The microsoft 70 463 PDF type is available for reading and printing. You can print more and practice many times. With the help of our Microsoft microsoft 70 463 dumps pdf and vce product and material, you can easily pass the microsoft 70 463 exam.


♥♥ 2021 NEW RECOMMEND ♥♥

Free VCE & PDF File for Microsoft 70-463 Real Exam (Full Version!)

★ Pass on Your First TRY ★ 100% Money Back Guarantee ★ Realistic Practice Exam Questions

Free Instant Download NEW 70-463 Exam Dumps (PDF & VCE):
Available on: http://www.surepassexam.com/70-463-exam-dumps.html

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


Q72. You are installing the Data Quality Server component of Data Quality Services. 

You need to provision the hardware and install the software for the server that runs the 

Data Quality Server. 

You must ensure that the minimum Data Quality Server prerequisites are met. 

What should you do? 

A. Install SQL Server 2012 Database Engine. 

B. Install Microsoft SharePoint Server 2010 Enterprise Edition with PowerPivot. 

C. Make sure the server has at least 4 GB of RAM. 

D. Install Microsoft Internet Explorer 6.0 SP1 or later. 

Answer:

Explanation: Data Quality Server Minimum System Requirements 

* SQL Server 2012 Database Engine. 

* Memory (RAM): Minimum: 2 GB Recommended: 4 GB or more 

Note: SQL Server Data Quality Services (DQS) is a new feature in SQL Server 2012 that contains the following two components: Data Quality Server and Data Quality Client. 


Q73. You are designing a data warehouse for a fresh food distribution business that stores sates by individual product. It stores sales targets by product category. Products are classified into subcategories and categories. 

Each product is included in only a single product 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 product 

. factProductTarget, used to record the monthly sales targets by product category 

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

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

What should you do? 

A. Create two product tables, dimProduct and dimProductCategory. Connect factSales to dimProduct and factProductTarget to dimProductCategory with foreign key constraints. Direct the cube developer to use key granularity attributes. 

B. Create one product table, dimProduct, which contains product detail, category, and subcategory columns. Connect factSales to dimProduct with a foreign key constraint. Direct the cube developer to use a non-key granularity attribute for factProductTarget. 

C. Create three product tables, dimProduct, dimProductCategory, and dimProductSubcategory, and a fourth bridge table that joins products to their appropriate category and subcategory table records with foreign key constraints. Direct the cube developer to use key granularity attributes. 

D. Create three product tables, dimProduct, dimProductCategory, and dimProductSubcategory. Connect factSales to all three product tables and connect factProductTarget to dimProductCategory with foreign key constraints. Direct the cube developer to use key granularity attributes. 

Answer:


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


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


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

The package contains an ADO object source variable that holds a result set that was returned by a stored procedure execution. 

You need to add and configure a container that will execute several tasks for each row in the ADO object source variable. 

Which three actions 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: 


Q77. You are designing an extract, transform, and load (ETL) solution that loads data into dimension tables. The ETL process involves many transformation steps. 

You need to ensure that the design can provide: 

Auditing information for compliance and business user acceptance Tracking and unique identification of records for troubleshooting and error correction 

What should you do? 

A. Create a SQL Common Language Runtime (SQLCLR) component that records all 

transformation steps in a Microsoft SharePoint list. 

B. Create a version control repository for the transformation steps in Team Foundation Server (TFS). 

C. Develop a custom data lineage solution. 

D. Develop a Data Quality Services (DQS) solution. 

Answer:


Q78. You are developing a SQL Server Integration Services (SSIS) package that downloads data from a Windows Azure SQL Database database. 

A stored procedure will be called in an Execute SQL task by using an ODBC connection. This stored procedure has only the @CustomerID parameter of type INT. 

A project parameter named CustID will be mapped to the stored procedure parameter @CustomerID. 

You need to ensure that the value of the CustID parameter is passed to the @CustomerID stored procedure parameter. 

In the Parameter Mapping tab of the Execute SQL task editor, how should you configure the parameter? (To answer, drag the appropriate option or options to the correct location or locations in the answer area.) 

Answer: 


Q79. A SQL Server Integration Services (SSIS) package named DataFeed interacts with an external vendor data feed. The package is executed several times a day, either as part of other packages' control flow or by itself. The external data feed is unreliable because network failures and slow response times are frequent. The package is currently deployed on the file system. 

To analyze the reliability of the external data feed, you must collect execution data. 

Every time the DataFeed package is executed, the following information must be logged: 

Start Time 

End Time 

Execution Result 

Execution Duration 

You need to design a logging solution that meets the requirements by using the least amount of administrative and development effort. 

Which three actions 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: 


Q80. You are performance tuning a SQL Server Integration Services (SSIS) package to load sales data from a source system into a data warehouse that is hosted on Windows Azure SQL Database. 

The package contains a data flow task that has seven source-to-destination execution trees. 

Only three of the source-to-destination execution trees are running in parallel. 

You need to ensure that all the execution trees run in parallel. 

What should you do? 

A. Set the EngineThreads property of the data flow task to 7. 

B. Set the MaxConcurrentExcecutables property of the package to 7. 

C. Create seven data flow tasks that contain one source-to-destination execution tree each. 

D. Place the data flow task in a For Loop container that is configured to execute seven times. 

Answer: