70-463 Exam Details

  • Exam Code
    :70-463
  • Exam Name
    :Implementing a Data Warehouse with Microsoft SQL Server 2012/2014
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :295 Q&As
  • Last Updated
    :Feb 04, 2022

Microsoft 70-463 Online Questions & Answers

  • Question 281:

    In your SSIS solution, you need to load a large set of rows into the database as quickly as possible.

    The rows are stored in a delimited text file, and only one source column needs its data type converted from String (used by the source column) to Decimal (used by the destination column).

    What control flow task would be most suitable for this operation?

    A. The File System task would be perfect in this case, because it can read data from files and can be configured to handle data type conversions.
    B. The Bulk Insert task would be the most appropriate, because it is the quickest and can handle data type conversions.
    C. The data flow task would have to be used, because the data needs to be transformed before it can be loaded into the table.
    D. No single control flow task can be used for this operation, because the data needs to be extracted from the source file, transformed, and then loaded into the destination table. At least three different tasks would have to be used--the Bulk Insert task to load the data into a staging database, a Data Conversion task to convert the data appropriately, and finally, an Execute SQL task to merge the transformed data with existing destination data.

  • Question 282:

    You are designing an enterprise star schema that will consolidate data from three independent data marts. One of the data marts is hosted on SQL Azure.

    Most of the dimensions have the same structure and content. However, the geography dimension is slightly different in each data mart.

    You need to design a consolidated dimensional structure that will be easy to maintain while ensuring that all dimensional data from the three original solutions is represented.

    What should you do?

    A. Create a junk dimension for the geography dimension.
    B. Implement change data capture.
    C. Create a conformed dimension for the geography dimension.
    D. Create three geography dimensions.

  • Question 283:

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

  • Question 284:

    You have a server named SQL1 that has SQL Server Integration Services (SSIS) installed. SQL1 has eight CPUs, 8 GB of RAM, RAID-10 storage, and a 10-gigabit Ethernet connection.

    A package named Package1 runs on SQL1. Package1 contains 10 data tasks. Package1 queries 3 GB of data from the source system.

    You review the performance statistics on SQL1 and discover that Package1 executes slower than expected.

    You need to identify the problem that is causing Package1 to execute slowly.

    Which performance monitor counter data should you review?

    A. SQLServer:SSIS Pipeline 10.0: Buffers in use
    B. SQLServer: SSIS Pipeline 10.0:Private buffer memory
    C. Memory\Pages/sec
    D. SQLServer:SSIS Pipeline 10.0: Flat butter memory

  • Question 285:

    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.

  • Question 286:

    You are developing a data flow to load sales data into a fact table. In the data flow, you configure a Lookup Transformation in full cache mode to look up the product data for the sale.

    The lookup source for the product data is contained in two tables.

    You need to set the data source for the lookup to be a query that combines the two tables.

    Which page of the Lookup Transformation Editor should you select to configure the query?

    To answer, select the appropriate page in the answer area.

    Hot Area:

  • Question 287:

    You are designing a data warehouse hosted on Windows Azure SQL Database. The data warehouse currently includes the dimUser and dimRegion dimension tables and the factSales fact table. The dimUser table contains records for each

    user permitted to run reports against the warehouse, and the dimRegion table contains information about sales regions.

    The system is accessed by users from certain regions, 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 regions. Some users must be permitted to see sales data from multiple regions.

    What should you do?

    A. For each region, create a view of the factSales table that includes a WHERE clause for the region.
    B. Create a userRegion table that contains primary key columns from the dimUser and dimRegion tables.
    C. Add a region column to the dimUser table.
    D. Partition the factSales table on the region column.

  • Question 288:

    You are developing a SQL Server Integration Services (SSIS) package to load data into a data warehouse. The package consists of several data flow tasks.

    The package experiences intermittent errors in the data flow tasks.

    If any data flow task fails, all package error information must be captured and written to a SQL Server table by using an OLE DB connection manager.

    You need to ensure that the package error information is captured and written to the table.

    What should you do?

    A. Use an event handler for OnError for the package.
    B. Use an event handler for OnError for each data flow task.
    C. Use an event handler for OnTaskFailed for the package.
    D. View the job history for theS QL Server Agent job.
    E. View the All Messages subsection of the All Executions report for the package.
    F. Store the System::SourceID variable in the custom log table.
    G. Store the System::ServerExecutionID variable in the custom log table.
    H. Store the System::ExecutionInstanceGUID variable in the custom log table.
    I. Enable the SSIS log provider for SQL Server for OnError in the package control flow.
    J. Enable the SSIS log provider for SQL Server for OnTaskFailed in the package control flow.

  • Question 289:

    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. In each package, create a package parameter named ServerParam.
    B. Edit each package Connection Manager. Set the ServerName property to @[$Project::ServerParam].
    C. Edit each package Connection Manager. Set the ServerName property to @[$Project::ServerParam].
    D. Set the Required property of the parameter to True.
    E. Set the Sensitive property of the parameter to True.
    F. Create a project parameter named ServerParam.

  • Question 290:

    You are implementing a SQL Server Integration Services (SSIS) package that imports Microsoft Excel workbook data into a Microsoft Azure SQL Database database. The package has been deployed to a 64-bit production SQL Server.

    The package fails when executed on the production server.

    You need to ensure that the package can load the 32-bit Excel workbook data without errors.

    What should you do?

    A. Replace the SSIS Excel source with a SQL Server source.
    B. Enable Address Windowing Extensions (AWE) for the local SQL Server instance.
    C. Install a 32-bit instance of SSIS side-by-side with the 64-bit version.
    D. Execute the package by using the 32-bit run-time option.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-463 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.