70-470 Premium Bundle

70-470 Premium Bundle

Recertification for MCSE: Business Intelligence Certification Exam

4.5 
(19950 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 23, 2024Last update

Microsoft 70-470 Free Practice Questions

Q1. DRAG DROP - (Topic 9) 

You are developing packages in a SQL Server Integration Services (SSIS) project to load a data warehouse. 

You are designing a method for configuring the packages' connections when deployed to a production SSIS catalog. All packages load data from two source databases. 

Two packages also load data from a third source database. Another SSIS project will use the same connections. 

You need to meet the requirements. 

What should you do? 

To answer, drag the appropriate term or terms to the correct location or locations in the 

answer area. (Each term may be used once, more than once, or not at all.) 

Answer:  

Q2. - (Topic 9) 

You are designing a partitioning strategy for a large fact table in a Manufacturing data warehouse. 

Tens of millions of new inventory fact records are loaded into the data warehouse weekly, outside of business hours. Most queries against the database are generated by reports and by cube processing. Data is frequently queried at the day level and occasionally at the month level. 

A. Partition the inventory fact table by month, and compress each partition. 

B. Partition the inventory fact table by day, and compress each partition. 

C. Partition the inventory fact table by year. 

D. Partition the inventory fact table by week. 

Answer:

Q3. - (Topic 10) 

You are managing a SQL Server Reporting Services (SSRS) instance. 

A website must pass credentials to the local security authority for Reporting Services. 

You need to configure Reporting Services to issue a challenge/response when a 

connection is made without credentials. 

Which authentication type should you configure in the RSReportServer.config file? 

A. RSWindowsKerberos and RSWindowsNegotiate 

B. RSWindowsKerberos only 

C. RSWindowsKerberos and RSWindowsNTLM 

D. RSWindowsBasic 

Answer:

Q4. - (Topic 9) 

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:

Explanation: 

Ref: http://technet.microsoft.com/en-us/library/bb895263.aspx 

Q5. DRAG DROP - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) cube. 

You need to reuse a measure group from a different database. 

In SQL Server Data Tools (SSDT), 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. HOTSPOT - (Topic 9) 

You are developing a SQL Server Reporting Services (SSRS) solution. 

You plan to create reports based on the results of a currency exchange SOAP web service 

call. 

You need to configure a shared data source. 

Which data source type should you use? 

To answer, select the appropriate type from the drop-down list in the answer area. 

Answer:  

Q7. HOTSPOT - (Topic 9) 

A school stores information about teachers, students, classes, and enrollments in a Windows Azure SQL Database database. The database includes a table that maps the user IDs of teachers to the subjects they teach. 

Teachers access reports in a SQL Server Reporting Services (SSRS) instance by using their credentials. 

You are developing a report that displays a table of class enrollments for a specific subject. The report will prompt teachers to select from their mapped subjects. The table is based on a dataset named ClassData. To minimize report execution time, the ClassData dataset has been configured to cache all class enrollment data. 

You need to ensure that the report parameter displays the correct subjects for each teacher. 

Which item should you configure? To answer, select the appropriate item in the answer area. 

Answer:  

Q8. - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) tabular project. The model has tables named Invoice Line Items and Products. 

The Invoice Line Items table has the following columns: 

.. 

Product Id Unit Sales Price 

The Unit Sales Price column stores the unit price of the product sold. The Products table 

has the following columns: 

. Product Id 

. Minimum Sales Price 

The Minimum Sales Price column is available only in the Products table. 

You add a column named Is Undersell to the Invoice Line Items table. The Is Undersell column must store a value of TRUE if the value of the Unit Sales Price is less than the value of the Minimum Sales Price. Otherwise, a value of FALSE must be stored. 

You need to define the Data Analysis Expressions (DAX) expression for the Is Undersell column. 

Which DAX formula should you use? (Each answer represents a complete solution. Choose all that apply.) 

A. =IF([Unit Sales Price] < RELATED(Products[Minimum Sales Price]), TRUE, FALSE) 

B. =IF(RELATED(Products[Unit Sales Price]) < [Minimum Sales Price], TRUE, FALSE) 

C. =IF([Unit Sales Price] < LOOKUPVALUE(Products[Minimum Sales Price], Products[Product Id], [Product Id]), TRUE, FALSE) 

D. =IF(LOOKUPVALUE(Products[Unit Sales Price], Products[Product Id], [Product Id]) < [Minimum Sales Price]), TRUE, FALSE) 

Answer: A,C 

Explanation: A: RELATED Function Returns a related value from another table. 

* The RELATED function requires that a relationship exists between the current table and 

the table with related information. You specify the column that contains the data that you 

want, and the function follows an existing many-to-one relationship to fetch the value from 

the specified column in the related table. 

C: 

The lookupvalue function returns the value in result_columnName for the row that meets all 

criteria specified by search_columnName and search_value. 

Syntax: 

LOOKUPVALUE( <result_columnName>, <search_columnName>, <search_value>[, <search_columnName>, <search_value>]…) 

Note: 

The syntax of DAX formulas is very similar to that of Excel formulas, and uses a 

combination of functions, operators, and values. 

Q9. DRAG DROP - (Topic 9) 

You administer a SQL Server Reporting Services (SSRS) infrastructure. Data alerts are provisioned. 

You need to monitor the number of report data feed processing events during every automated execution. 

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:  

Q10. - (Topic 9) 

You are creating a Multidimensional Expressions (MDX) calculation for Projected Revenue in a cube. 

For Product A, Projected Revenue is defined as 150 percent of the Total Sales of the product. For all other products, Projected Revenue is defined as 110 percent of the Total Sales of the product. 

You need to calculate the Projected Revenue as efficiently as possible. 

Which calculation should you use? (More than one answer choice may achieve the goal. Select the BEST answer.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q11. - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) tabular project. The model includes a table named Sales. The Sales table includes a single date column. 

The Sales table must meet the following requirements: 

. Queries must be able to return all rows. . Must be able to support four different processing schedules for different date ranges. . Date ranges must not include any overlapping data. 

You need to implement a solution that meets the requirements. 

What should you do? 

A. Create four partitions for the Sales table. Use row filter queries for each partition. 

B. Convert the Sales table into four smaller tables by using row filter queries. Use one perspective for all four tables. 

C. Create four partitions for the Sales table. Create four roles. Use the same row filter queries for each role and partition. 

D. Convert the Sales table into four smaller tables by using row filter queries. Use one perspective for each of the four tables. 

Answer:

Q12. HOTSPOT - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) cube. 

You create a degenerate dimension. 

You need to define a relationship type for the dimension. 

Which relationship type should you select? (To answer, configure the appropriate option or 

options in the dialog box in the answer area.) 

Answer:  

218. - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) tabular project. 

The model includes a table named DimEmployee. The table contains employee details, including the sales territory for each employee. The table also defines a column named EmployeeAlias which contains the Active Directory Domain Services (AD DS) domain and logon name for each employee. You create a role named Employees. 

You need to configure the Employees roles so that users can query only sales orders for their respective sales territory. 

What should you do? 

A. Add a row filter that implements only the USERNAME function. 

B. Add a row filter that implements the LOOKUPVALUE and USERNAME functions. 

C. Add a row filter that implements only the CUSTOMDATA function. 

D. Add a row filter that implements the LOOKUPVALUE and CUSTOMDATA functions. 

Q13. DRAG DROP - (Topic 10) 

You are developing a SQL Server Analysis Services (SSAS) cube. 

You need to add a calculated member to the Customer dimension to evaluate the sum of values for France and Germany. 

Which expression should you use? (To answer, drag the appropriate expression to the answer area.) 

Answer:  

Q14. - (Topic 9) 

You are designing a subscription strategy for a SQL Server Reporting Services (SSRS) report. 

You have an application that populates a table with user-specific subscription schedules and report formats. 

You need to ensure that users can receive reports by email according to their preferences. 

What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.) 

A. Create a standard subscription for each record in the table. 

B. Create a data-driven subscription for each record in the schedule table. 

C. Create one data-driven subscription. Schedule the subscription to frequently retrieve user preferences. 

D. Create a standard subscription for each subscription schedule. 

Answer:

Q15. DRAG DROP - (Topic 2) 

You need to optimize the Regions dimension. 

How should you configure the attribute relationships? (To answer, drag the appropriate attribute from the list of attributes to the correct location in the hierarchy relationship. Use only attributes that apply.) 

Answer:  

Q16. HOTSPOT - (Topic 9) 

You are developing a SQL Server Analysis Services (SSAS) tabular project. The DirectQuery Mode property of the data model has been set to On. The current partition for the table is configured as the DirectQuery partition. 

Data is loaded into a data mart throughout the day and must be available in the data model as soon as possible. The model must support querying by clients that issue both Data Analysis Expressions (DAX) queries and Multidimensional Expressions (MDX) queries. Clients issuing DAX queries must receive real-time query results. 

You need to select the appropriate Query Mode property for deployment. 

Which query mode should you select? 

To answer, select the appropriate query mode from the drop-down list in the dialog box. 

Answer:  

START 70-470 EXAM