Udated Real Questions for Microsoft 70-463 Exam 100% Exam Pass Promised By Braindump2go (131-145)

The Microsoft 70-463 Practice Exam is a very hard exam to successfully pass your exam.Here you will find Free Braindump2go Microsoft Practice Sample Exam Test Questions that will help you prepare in passing the 70-463 exam.Braindump2go Guarantees you 100% PASS exam 70-463

Vendor: Microsoft
Exam Code: 70-463
Exam Name: Implementing a Data Warehouse with Microsoft SQL Server 2012 Exam

1102

QUESTION 131
You are designing a SQL Server Integration Services (SSIS) solution that will load multiple Online Transactional Processing (OLTP) data sources into a SQL Server data mart.
You have the following requirements:
– Ensure that the process supports the creation of an exception report that details possible duplicate key values, null ratios within columns, and column-length distributions of values.
– Ensure that users can generate the exception report in an XML format.
– Use the minimum development effort.
You need to design the SSIS solution to meet the requirements.
What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Use a Data Profiling task.
Use a Data Flow task to extract the XML output of the Data Profiling task into a SQL Server table.
Query the table to view the exceptions.
B.    Use Data Flow tasks to process the clean data.
C.    Use a Data Profiling task.
Read the exceptions in Data Profile Viewer.
D.    Design a stored procedure that examines data for common dirty data patterns.
Use an Execute SQL task.

Answer: C

QUESTION 132
You are designing a SQL Server Integration Services (SSIS) solution.
The solution will contain an SSIS project that includes several SSIS packages.
Each SSIS package will define the same connection managers and variables.
You have the following requirements:
– The deployment model must support changing the content of connection strings by using parameters at execution time.
– The deployment model must automatically log events to the SSISOB database.
– Maximize performance at execution time.
You need to design a solution that meets the requirements.
What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Use a project deployment model.
Modify connection manager properties to use project parameters.
B.    Use a package deployment model.
Save each SSIS package to a file share that can be accessed from all environments.
C.    Use a package deployment model.
Configure connections in an XML configuration file referenced by an environment variable that corresponds to the SQL Server environment of each SSIS package.
D.    Use a project deployment model.
Modify connection manager properties to use package parameters.

Answer: A

QUESTION 133
You are designing a partitioning strategy for a large fact table in a data warehouse.
Tens of millions of new records are loaded into the data warehouse weekly, outside of business hours. Most queries are generated by reports and by cube processing.
Data is frequently queried at the day level and occasionally at the month level.
You need to partition the table to maximize the performance of queries.
What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Partition the fact table by month, and compress each partition.
B.    Partition the fact table by week.
C.    Partition the fact table by year.
D.    Partition the fact table by day, and compress each partition.

Answer: D

QUESTION 134
Hotspot Question
You administer a Microsoft SQL Server 2012 database.
The database contains a table that has the following definition:

wps7854.tmp_thumb[2]

You want to export data from the table to a flat file by using the SQL Server Import and Export Wizard.
You need to ensure that the following requirements are met:
– The first row of the file contains the first row of data.
– Each record is of the same length.
– The date follows the U.S. date format.
– The file supports international characters.
What should you do? (To answer, simply select the option or options in the answer area that you would configure.)

wpsA36A.tmp_thumb

Answer:
Tick the “Unicode” checkbox.
Set the Format option to “Fixed Width”
Untick the “Column names in the first data row” checkbox.

wpsBFC1.tmp_thumb

Explanation:
http://msdn.microsoft.com/en-us/library/ms178804.aspx
http://msdn.microsoft.com/en-us/library/ms187828.aspx

QUESTION 135
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 stat.ement 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: D

QUESTION 136
Hotspot Question
You are designing a SQL Server Integration Services (SSIS) package configuration strategy.
The package configuration must meet the following requirements:
– Include multiple properties in a configuration.
– Support several packages with different configuration settings.
You need to select the appropriate configuration.
Which configuration type should you use? To answer, select the appropriate option from the drop-down list in the dialog box.

wpsE01E.tmp_thumb

Answer:

wpsF831.tmp_thumb

QUESTION 137
You administer a Microsoft SQL Server 2012 database.
The database contains a table named Employee.
Part of the Employee table is shown in the exhibit. (Click the Exhibit button.)
Confidential information about the employees is stored in a separate table named EmployeeData. One record exists within EmployeeData for each record in the Employee table.
You need to assign the appropriate constraints and table properties to ensure data integrity and visibility.
On which column in the Employee table should you a create a unique constraint?

wpsBD1.tmp_thumb

wps5EA3.tmp_thumb

A.    DateHired
B.    DepartmentID
C.    EmployeelD
D.    EmployeeNum
E.    FirstName
F.    JobTitle
G.    LastName
H.    MiddleName
I.    ReportsToID

Answer: D

QUESTION 138
You administer a Microsoft SQL Server 2012 database.
The database contains a table named Employee.
Part of the Employee table is shown in the exhibit. (Click the Exhibit button.)
Confidential information about the employees is stored in a separate table named EmployeeData. One record exists within EmployeeData for each record in the Employee table.
You need to assign the appropriate constraints and table properties to ensure data integrity and visibility.
On which column in the Employee table should you use an identity specification to include a seed of 1,000 and an increment of 1?

wps871A.tmp_thumb

wps9C6F.tmp_thumb

A.    DateHired
B.    DepartmentID
C.    EmployeeID
D.    EmployeeNum
E.    FirstName
F.    JobTitle
G.    LastName
H.    MiddleName
I.    ReportsToID

Answer: C

QUESTION 139
You are designing a SQL Server Integration Services (SSIS) solution.
The solution will contain an SSIS project that includes several SSIS packages.
Each SSIS package will define the same connection managers and variables.
You have the following requirements:
– Ensure that the deployment model supports changing the content of connection strings by using parameters at execution time.
– Ensure that the deployment model automatically starts from calls to the catalog.start_execution stored procedure in the SSISDB database.
– Maximize performance at execution time.
– Minimize development effort.
You need to design a solution that meets the requirements.
What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Use a project deployment model.
Modify connection manager properties to use project parameters.
Ensure that the SSISDB database is created.
B.    Use a project deployment model.
Configure connections in an XML configuration file referenced by an environment variable that
corresponds to the SQL Server environment of each SSIS package.
C.    Use a package deployment model.
Use a SQL Server package configuration with a common filter.
Change the contents of the SSIS Configurations table at runtime.
D.    Use a package deployment model.
Save each SSIS package to a file share that can be accessed from all environments.

Answer: A

QUESTION 140
A SQL Server Integration Services (SSIS) package imports daily transactions from several files into a SQL Server table named Transaction.
Each file corresponds to a different store and is imported in parallel with the other files.
The data flow tasks use OLE DB destinations in fast load data access mode.
The number of daily transactions per store can be very large and is growing-The Transaction table does not have any indexes.
You need to minimize the package execution time.
What should you do?

A.    Partition the table by day and store.
B.    Create a clustered index on the Transaction table.
C.    Run the package in Performance mode.
D.    Increase the value of the Row per Batch property.

Answer: D
Explanation:
– Data Access Mode-This setting provides the ‘fast load’ option which internally uses a BULK INSERT statement for uploading data into the destination table instead of a simple INSERT statement (for each single row) as in the case for other options.
– BULK INSERT parameters include:
ROWS_PER_BATCH =rows_per_batch
Indicates the approximate number of rows of data in the data file.
By default, all the data in the data file is sent to the server as a single transaction, and the number of rows in the batch is unknown to the query optimizer.
If you specify ROWS_PER_BATCH (with a value > 0) the server uses this value to optimize the bulkimport operation.
The value specified for ROWS_PER_BATCH should approximately the same as the actual number of rows.

QUESTION 141
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.    After 10 executions, in SQL Server Management Studio, view the Execution Performance
subsection of the All Executions report for the package.
B.    Configure the package to send you an email upon completion that includes information about
the duration of the package. After 10 executions, view the emails.
C.    Enable logging to the Application Event Log in the package control flow for the OnInformation
event. After 10 executions, view the Application Event Log.
D.    Enable logging to the Application Event Log in the package control flow for the OnPostExecute
event. After 10 executions, view the Application Event Log.

Answer: A
Explanation:
The All Executions Report displays a summary of all Integration Services executions that have been performed on the server. There can be multiple executions of the sample package.
Unlike the Integration Services Dashboard report, you can configure the All Executions report to show executions that have started during a range of dates.
The dates can span multiple days, months, or years.
The report displays the following sections of information.
– Filter
Shows the current filter applied to the report, such as the Start time range.
– Execution Information
Shows the start time, end time, and duration for each package execution.
You can view a list of the parameter values that were used with a package execution, such as values that were passed to a child package using the Execute Package task.

QUESTION 142
Your team is creating SQL Server Integration Services (SSIS) packages that have several dependencies.
The packages use parameters for configuration purposes.
Your company’s IT policies include the following change control requirements:
– After a package is ready for deployment, your team must hand over the process to junior IT personnel.
– The process must guarantee that when a package has been validated, that same package (and all its dependencies) is deployed to production.
– The process must be repeatable and reliable and must be executed with the least administrative and training effort by junior IT personnel.
You need to use the most appropriate deployment unit to satisfy the company policies, while minimizing issues such as incorrect version or configuration.
Which type of deployment unit should you use?

A.    dtsx
B.    SSISdeploymentmanifest
C.    msi
D.    ispac

Answer: D

QUESTION 143
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: B

QUESTION 144
You are developing a SQL Server Integration Services (SSIS) project by using the Project Deployment Model.
The project is deployed to a single SSIS catalog, and transfers data to and from multiple databases hosted on SQL Server.
The project must be configured to be able to export data to and from five different production servers that run SQL Server 2012. Each target server requires different values for connection strings and parameters in the SSIS project.
You need to meet the requirements by using the least amount of administrative effort.
What should you do?

A.    For each target server, create separate registry entry configurations.
Select the registry entry at package execution time.
B.    For each target server, create separate Environments in the SSIS catalog of the host SQL
Server SSIS instance.
Select the appropriate Environment at package execution time.
C.    Create one SSIS catalog Environment.
Change the values of each Environment variable at package execution time.
D.    For each target server, create a separate XML configuration file.
Select the XML configuration file at package execution time.

Answer: B

QUESTION 145
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: A


Braindump2go Latest 70-463 Exam Dumps Released! 100% Real Questions – Dumps Qulification is the secret of Success! Prepare yourself to Face the 70-463 Exam with Real Exam Questions from Microsoft Official Exam Center, walk into the Testing Centre with confidence.

152

http://www.braindump2go.com/70-463.html