getcertified4sure.com

Amazing 70 463 pdf secrets




Pass4sure exam 70 463 Questions are updated and all microsoft 70 463 answers are verified by experts. Once you have completely prepared with our 70 463 training kit pdf exam prep kits you will be ready for the real exam 70 463 exam without a problem. We have Most up-to-date Microsoft 70 463 dumps dumps study guide. PASSED microsoft 70 463 First attempt! Here What I Did.

Q11. You are using the Knowledge Discovery feature of the Data Quality Services (DQS) client application to modify an existing knowledge base. 

In the mapping configuration, two of the three columns are mapped to existing domains in the knowledge base. The third column, named Group, does not yet have a domain. 

You need to complete the mapping of the Group column. 

What should you do? 

A. Map a composite domain to the source column. 

B. Create a composite domain that includes the Group column. 

C. Add a domain for the Group column. 

D. Add a column mapping for the Group column. 

Answer:


Q12. You are designing a data warehouse hosted on SQL Azure. The data warehouse currently includes the dimUser and dimDistrict dimension tables and the factSales fact table. The dimUser table contains records for each user permitted to run reports against the warehouse; and the dimDistrict table contains information about sales districts. 

The system is accessed by users from certain districts, as well as by area supervisors and users from the corporate headquarters. 

You need to design a table structure to ensure that certain users can see sales data for only certain districts. Some users must be permitted to see sales data from multiple districts. 

What should you do? 

A. Add a district column to the dimUser table. 

B. Partition the factSales table on the district column. 

C. Create a userDistrict table that contains primary key columns from the dimUser and dimDistrict tables. 

D. For each district, create a view of the factSales table that includes a WHERE clause for the district. 

Answer:


Q13. You develop a SQL Server Integration Services (SSIS) package in a project by using the Project Deployment Model. It is regularly executed within a multi-step SQL Server Agent job. 

You make changes to the package that should improve performance. 

You need to establish if there is a trend in the durations of the next 10 successful executions of the package. You need to use the least amount of administrative effort to achieve this goal. 

What should you do? 

A. Enable logging to an XML file in the package control flow for the Onlnformation event. After 10 executions, view the XML file. 

B. After 10 executions, view the job history for the SQL Server Agent job. 

C. After 10 executions, in SQL Server Management Studio, view the Execution Performance subsection of the All Executions report for the package. 

D. Enable logging to an XML file in the package control flow for the OnPostExecute event. After 10 executions, view the XML file. 

Answer:


Q14. You are a database developer of a Microsoft SQL Server 2012 database. You are designing a table that will store Customer data from different sources. The table will include a column that contains the CustomerID from the source system and a column that contains the SourceID. A sample of this data is as shown in the following table. You need to ensure that the table has no duplicate CustomerID within a SourceID. You also need to ensure that the data in the table is in the order of SourceID and then CustomerID. 

Which Transact- SQL statement should you use? 

A. CREATE TABLE Customer 

(SourceID int NOT NULL IDENTITY, 

CustomerID int NOT NULL IDENTITY, 

CustomerName varchar(255) NOT NULL); 

B. CREATE TABLE Customer 

(SourceID int NOT NULL, 

CustomerID int NOT NULL PRIMARY KEY CLUSTERED, 

CustomerName varchar(255) NOT NULL); 

C. CREATE TABLE Customer 

(SourceID int NOT NULL PRIMARY KEY CLUSTERED, 

CustomerID int NOT NULL UNIQUE, 

CustomerName varchar(255) NOT NULL); 

D. CREATE TABLE Customer 

(SourceID int NOT NULL, 

CustomerID int NOT NULL, 

CustomerName varchar(255) NOT NULL, 

CONSTRAINT PK_Customer PRIMARY KEY CLUSTERED 

(SourceID, CustomerID)); 

Answer:


Q15. You are loading a dataset into SQL Server. The dataset contains numerous duplicates for the Artist and Song columns. 

The values in the Artist column in the dataset must exactly match the values in the Artist domain in the knowledge base. The values in the Song column in the dataset can be a close match with the values in the Song domain. 

You need to use SQL Server Data Quality Services (DQS) to define a matching policy rule to identify duplicates. 

How should you configure the Rule Editor? (To answer, drag the appropriate answers to the answer area.) 

Answer: 


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


Q17. 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. Express on task 

B. Data Cleansing transformation 

C. Fuzzy Lookup transformation 

D. Term Lookup transformation 

E. Data Profiling task 

Answer:


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


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


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