70-463 Premium Bundle

70-463 Premium Bundle

Implementing a Data Warehouse with Microsoft SQL Server 2012 Certification Exam

4.5 
(12120 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 21, 2024Last update

Microsoft 70-463 Free Practice Questions

Q1. You are designing a fact table in a SQL Server database. 

The fact table must meet the following requirements: 

Include a columnstore index. 

Allow users to choose up to 10 dimension tables and up to five facts at one time. 

Maximize performance of queries that aggregate measures by using any of the 10 

dimensions. 

Support billions of rows. 

Use the most efficient design strategy. 

You need to design the fact table to meet the requirements. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.) 

A. Design a fact table with 5 dimensional key columns and 10 measure columns. Place the columnstore index on the dimensional key columns. 

B. Design a fact table with 5 dimensional key columns and 10 measure columns. Place the columnstore index on the measure columns. 

C. Design a fact table with 10 dimensional key columns and 5 measure columns. Place the columnstore index on the dimensional key columns and the measure columns. 

D. Design a fact table with 10 dimensional key columns and 5 measure columns. Place the columnstore index on only the measure columns. 

Answer:

Q2. You are designing a data warehouse with two fact tables. The first table contains sales per month and the second table contains orders per day. 

Referential integrity must be enforced declaratively. 

You need to design a solution that can join a single time dimension to both fact tables. 

What should you do? 

A. Create a view on the sales table. 

B. Partition the fact tables by day. 

C. Create a surrogate key for the time dimension. 

D. Change the level of granularity in both fact tables to be the same. 

Answer:

Explanation: In order to join the facts table in time dimension we cannot have two different time measures (time and day). 

Q3. You are developing a SQL Server Integration Services (SSIS) package that imports unsorted data into a data warehouse hosted on SQL Azure. 

You have the following requirements: 

. A destination table must contain all of the data in two source tables. 

. Duplicate records must be inserted into the destination table. 

You need to develop a data flow that imports the data while meeting the requirements. 

How should you develop the data flow? (To answer, drag the appropriate transformation from the list of transformations to the correct location in the answer area.) 

Answer:  

Q4. You install a SQL Server 2012 database engine instance on a production server. A month later, you install SQL Server 2012 Integration Services (SSIS). 

You must develop an SSIS project and deploy it to the server by using the Project Deployment model. 

Operations Log records that are outside the configured retention period must be cleaned automatically. 

You need to create the SSIS catalog on the production server. 

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

A. Enable XP Command Shell. 

B. Enable CLR Integration. 

C. Enable OLE Automation. 

D. Start the SQL Server Browser service. 

E. Enable Cross Database Ownership Chaining 

F. Start the SQL Server Agent service 

G. Enable Ad Hoc Remote Queries. 

Answer: B,F 

Q5. A SQL Server Integration Services (SSIS) project has been deployed to the SSIS catalog. The project includes a project Connection Manager to connect to the data warehouse. 

The SSIS catalog includes two Environments: 

. Development 

. QA 

Each Environment defines a single Environment Variable named ConnectionString of type string. The value of each variable consists of the connection string to the development or QA data warehouses. 

You need to be able to execute deployed packages by using either of the defined Environments. 

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:  

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

Q7. You are creating a Data Quality Services (DQS) solution. You must provide statistics on the accuracy of the data. 

You need to use DQS profiling to obtain the required statistics. 

Which DQS activity should you use? 

A. Cleansing 

B. Matching 

C. Knowledge Discovery 

D. Matching Policy 

Answer:

Q8. You are developing a SQL Server Integration Services (SSIS) package. The data source for the data flow task is a table that has been configured as a change data capture (CDC) table. You are using a CDC Source component to obtain the CDC data. 

The data source will be polled once per hour. The data is updated with multiple important status changes per minute. 

For each captured data change, the before and after values must be included. 

You need to configure the CDC Source component. 

Which CDC processing mode should you select? (To answer, configure the appropriate option in the dialog box in the answer area.) 

Answer:  

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

A. DateHired 

B. DepartmentID 

C. EmployeeID 

D. EmployeeNum 

E. FirstName 

F. JobTitle 

G. LastName 

H. MiddleName 

I. ReportsToID 

Answer:

Q10. You are editing a SQL Server Integration Services (SSIS) package. 

You need to edit the Script task that has an expression defined. 

Which task should you select? To answer, select the appropriate setting or settings in the answer area. 

Answer:  

Q11. You are reviewing the design of an existing fact table named factSales, which is loaded incrementally from a SQL Azure database by a SQL Server Integration Services (SSIS) package each hour. The fact table has approximately 4 billion rows and is dimensioned by product, sales date, and sales time of day. 

The database administrator is concerned about the rapid growth of the database and users experience poor reporting performance against this database. Reporting requirements have recently changed and the only remaining report that uses this fact table reports sales by product name, sale month, and sale year. No other reports will be created against this table. 

You need to reduce the report processing time and minimize the growth of the database. 

What should you do? 

A. Create an indexed view over the fact table to sum orderTotal by month. 

B. Create a view over the fact table to sum orderTotal by month. 

C. Change the granularity of the fact table to month. 

D. Partition the fact table by productKey. 

Answer:

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

Q13. 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. Develop a Master Data Services (MDS) solution. 

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

C. Create a version control repository for the ETL solution. 

D. Develop a custom data lineage solution. 

Answer:

Q14. You are developing a SQL Server Integration Services (SSIS) package to load data into a SQL Server 2012 database. 

The package is allowed to connect to only one database. An Environment variable contains the name of the database. 

The OLE DB project connection manager has been parameterized. 

You need to configure the connection manager property to accept the value of the Environment variable. 

Which property should you use? (To answer, configure the appropriate option or options in the dialog box in the answer area.) 

Answer:  

Q15. 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 SQL Azure. 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. Audit 

B. Source Assistant 

C. Script Task 

D. Conditional Split 

Answer:

Explanation: 

http://msdn.microsoft.com/en-us/library/ms137640.aspx http://msdn.microsoft.com/en-us/library/ms141150.aspx http://msdn.microsoft.com/en-us/library/ff929138.aspx http://msdn.microsoft.com/en-us/library/ff929116.aspx 

Q16. You use SQL Server Integration Services (SSIS) for extract, transformation, load (ETL) processing. 

Issues concerning addresses are discovered in the data warehouse that you manage. Validation must separate the addresses into three categories: 

Valid addresses 

Autocorrected addresses 

Invalid addresses 

You need to enhance the SSIS packages to perform address validation by using an external service. 

Which transformation should you use? (To answer, drag the appropriate transformation from the list of options to the correct location or locations in the answer area.) 

Answer:  

START 70-463 EXAM