70-466 Premium Bundle

70-466 Premium Bundle

Implementing Data Models and Reports with Microsoft SQL Server 2012 Certification Exam

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

Microsoft 70-466 Free Practice Questions

Q1. - (Topic 3) 

Topic 3, Data Architect 

General Background 

You are the data architect for a company that uses SQL Server 2012 Enterprise Edition. You design data modeling and reporting solutions that are based on a sales data warehouse. 

Background 

The solutions will be deployed on the following servers: . ServerA runs SQL Server Database Engine, ServerA is the data warehouse server. . ServerB runs SQL Server Database Engine, SQL Server Analysis Services (SSAS) in multidimensional mode, and SQL Server Integration Services (SSIS). . ServerC runs SSAS in tabular mode, SQL Server Reporting Services (SSRS) 

running in SharePoint mode, and Microsoft SharePoint 2010 Enterprise Edition with SP1. 

The data warehouse schema currently contains the tables shown in the exhibit. (Click the Exhibit button.) 

Business Requirements 

The reporting solution must address the requirements of the sales team, as follows: 

. Team members must be able to view standard reports from SharePoint. 

. Team members must be able to perform ad-hoc analysis by using Microsoft Power 

View and Excel. 

. Team members can have standard reports delivered to them on a schedule of 

their choosing. 

The standard reports 

.. 

Will use a sales territory hierarchy for organizing data by region. Will be accessible from SharePoint. 

The Excel ad-hoc reports 

.. 

Will use the same data store as the standard reports. 

Will provide direct access to the data store for the sales team and a simplified view 

for the executive team. 

Technical Requirements 

The standard reports must be based on an SSAS cube. The schema of the data warehouse on ServerA must be able to support the ability to slice the fact data by the following dates: 

... 

Order date (OrderDateKey) Due date (DueDateKey) Ship date (ShipDateKey) 

Additions and modifications to the data warehouse schema must adhere to star schema design principles to minimize maintenance and complexity . The multidimensional and tabular models will be based on the data warehouse. The tabular and multidimensional models will be created by using SQL Server Data Tools (SSDT). The tabular project is named AdhocReports and the multidimensional project is named Standard Reports. The cube design in the Standard Reports project must define two measures for the unique count of sales territories (SalesTerritoryKey) and products (ProductKey). 

A deployment script that can be executed from a command-line utility must be created to deploy the StandardReports project to ServerB. 

The tabular model in the AdhocReports project must meet the following requirements: 

. .. 

A hierarchy must be created that consists of the SalesTerritoryCountry and SalesTerritoryRegion columns from the DimSalesTerritory table and the EmployeeName column from the DimEmployee table. A key performance indicator (KPI) must be created that compares the total quantity sold (OrderQuantity) to a threshold value of 1,000. A measure must be created to calculate day-over-day (DOD) sales by region based on order date. 

SSRS on ServerC must be configured to meet the following requirements: 

... 

It must use a single data source for the standard reports. 

It must allow users to create their own standard report subscriptions. 

The sales team members must be limited to only viewing and subscribing to 

reports in the Sales Reports library. 

A week after the reporting solution was deployed to production, Marc, a salesperson, indicated that he has never received reports for which he created an SSRS subscription. In addition, Marc reports that he receives timeout errors when running some reports on demand. 

=====

You need to create the KPI in the AdhocReports project. 

What should you do? 

A. Create a measure by using the SUM([OrderQuantity]) expression. Then use the CREATE KPI CURRENTCUBE statement to define the KPI and target value. 

B. Create a measure by using the SUM([OrderQuantity]) expression and create a KPI based on the measure. Then set the target value. 

C. Create a measure by using the COUNT([OrderQuantity]) expression and create a KPI based on the measure. Then set the target value. 

D. Create a KPI based on the OrderQuantity column and then set the target value. 

Answer:

Q2. - (Topic 4) 

You are modifying a SQL Server Analysis Service (SSAS) cube. 

The cube consist of a single measure group that contains the following measures: 

. Total Quantity On Hand 

. Average Quantity On Hand 

The measure group has a single partition that uses the MOLAP storage mode. 

You need to modify the cube design to ensure that the Total Quantity On Hand measure is updated in real-time and that Average Quantity On Hand measure is updated hourly. 

What should you do? 

A. Change the storage mode of the partition to use proactive caching with minimum latency. 

B. Create an XMLA script that will process the cube and then use SQL Server Agent to execute the script continuously. 

C. Create a new measure group for the Average Quantity On Hand measure. Configure the storage mode for the new measure group's partition to ROLAP. 

D. Create a new measure group for the Total Quantity On Hand measure. Configure the storage mode for the new measure group's partition to ROLAP. 

Answer:

Q3. - (Topic 2) 

You need to meet the browsing requirements for the Products hierarchy. 

Which property should you modify? 

A. DefaultMember 

B. AttributeHierarchyDisplayFolder 

C. HideMemberIf 

D. RootMemberIf 

Answer:

Q4. - (Topic 3) 

You need to deploy the StandardReports project at the end of the current business day. 

What should you do? (Each correct answer presents a complete solution. Choose all that apply.) 

A. Use the Analysis Services Deployment utility to create an XMLA deployment script and run it at the end of the day. 

B. Use the Analysis Services Deployment wizard to create an MDX deployment script and run it at the end of the day. 

C. Use the Analysis Services Deployment wizard to create an XMLA deployment script and run it at the end of the day. 

D. Deploy the project from SQL Server Data Tools (SSDT) at the end of the day. 

Answer: C,D 

Q5. HOTSPOT - (Topic 4) 

You are developing a SQL Server Analysis Services (SSAS) cube that contains the data for a running team. 

The data warehouse used by the cube contains the time durations of taps run by each runner on the team. The time durations are stored in seconds as an integer. 

You need to build the following two measures in the cube: 

. A measure named Measure1 that must contain the average time duration of the laps run by each runner. . A measure named Measure2 that must contain the lap-time duration and the name of the runner who ran the fastest lap. 

What should you do? To answer, select the appropriate Aggregation Function property for each measure in the answer area. 

Answer:  

Q6. - (Topic 4) 

You have a SQL Server Reporting Services (SSRS) instance. The instance has a report that displays 3 million records. 

Users report that they experience performance issues when they use the report. 

You need to ensure that the report renders as quickly as possible. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. Enable versioning. 

B. Enable caching. 

C. Enable report history. 

D. Create snapshots. 

E. Implement pagination. 

Answer: A,B 

Q7. - (Topic 4) 

You are adding dimensions and a new measure group named Accounts Receivable to an existing SQL Server Analysis Services (SSAS) cube. 

Date is one of the existing dimensions in the SSAS database. The underlying fact table for the measure group is associated with multiple dates, including InvoiceDate DueDate and PaymentDate. 

You need to ensure that users can slice the Accounts Receivable measures by InvoiceDate, DueDate, and PaymentDate. You also need to ensure that the time required to process the database is minimized. 

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

A. Create three new perspectives named InvoiceDate, DueDate, and PaymentDate. 

B. Create three independent dimensions named InvoiceDate, DueDate and PaymentDate and then link all three of them to the Accounts Receivable measure group. 

C. Create cube dimensions named InvoiceDate, DueDate, and PaymentDate by using the existing Date dimension in the database. 

D. Add three attributes named InvoiceDate. DueDate, and PaymentDate to the existing Date dimension in the database. 

Answer:

Q8. - (Topic 4) 

You are developing a SQL Server Reporting Services (SSRS) report. The report includes a dataset with fields named. 

Year MonthNumber, and RegCount. The report includes a table that displays the number of recorded registration occurrences per year,as shown in the following table. 

You need to modify the table to include a graphical item displaying the monthly registration trend to the right of the Reg Count column. 

What should you do? 

A. Add an Indicator item to a new column on the right of the Reg Count column. Select the Directional Indicator Type and then assign the MonthNumber field to the Start property. 

B. Add an Indicator item to a new column on the right of the Reg Count column. Select the Directional Indicator Type and then select the MonthNumber field for Value. 

C. Add a Sparkline item to a new column on the right of the Reg Count column. Then select the RegCount field for Values and the MonthNumber field for Series Groups. 

D. Add a text box to a new column on the right of the Reg Count column. Then use a Go to report action to link to a separate report showing the monthly trend. 

E. Add a Sparkline item to a new column on the right of the Reg Count column. Then select the RegCount field for Values and the MonthNumber field for Category Groups. 

Answer:

Q9. - (Topic 4) 

You are developing a SQL Server Reporting Services (SSRS) sales summary report. 

The report header consists of several images. Report users require PDF exports of the report with no bulky images of the report header. 

You need to ensure that the header of the report is hidden when a user exports the report to PDF format. 

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

A. Set the Hidden property of the report header to (GlobalslRenderFormat.Name = "PDF"). 

B. Set the Hidden property of the report header to (GlobalslRenderFormat.IsInteractive = False). 

C. Set the Hidden property of the report header to FALSE. 

D. Set the Hidden property of the report header to TRUE. 

Answer:

Q10. - (Topic 4) 

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 the LOOKUPVALUE and USERNAME functions. 

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

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

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

Answer:

Q11. - (Topic 4) 

You are modifying a SQL Server Analysis Services (SSAS) multidimensional database. 

You have identified a dimension that is no longer used by any cubes. 

You need to delete the dimension. 

What should you do? 

A. Write a Multidimensional Expressions (MDX) command to drop the dimension from the database. 

B. Write a Data Mining Extensions (DMX) command to drop the dimension from the database. 

C. Script the deletion of the dimension as an XMLA command for execution against the production model. 

D. Write a T-SQL command to drop the dimension from the database. 

Answer:

Q12. DRAG DROP - (Topic 4) 

You have a cube named Cube1 that contains the sales data for your company. 

You plan to build a report based on the cube. 

You need to write an MDX expression that returns the total sales from the first month of the 2009 fiscal year and the total sales from the same period of the 2008 fiscal year. 

Which code segments should you insert at line 03 and line 05? To answer, drag the appropriate code segments to the correct lines. Each code segments may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer:  

Q13. HOTSPOT - (Topic 4) 

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

You are writing the following Multidimensional Expressions (MDX) statement for use by a calculated measure. The measure computes the sales amount for the same time period of the previous year. (Line numbers are included for reference only.) 

You need to complete the MDX statement. 

Which MDX function should you use in line 03? To answer, select the appropriate MDX function in the functions list. 

Answer:  

Q14. - (Topic 4) 

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

A column named City must be added to the table named Customer. The column will be used in the definition of a hierarchy. The City column exists in the Geography table that is related to the Customer table. 

You need to add the City column to the Customer table. 

How should you write the calculation? 

A. City:= LOOKUP(Geography[City],Geography[GeographyKey],[GeographyKey]) 

B. City:= LOOKUPVALUE(Geography[City],Geography[GeographyKey],[GeographyKey]) 

C. =RELATED(Geography[City]) =RELATED(Geography.City) 

D. =VALUES(Geography[City]) 

E. City:=VALUES(Geography[City]) 

Answer:

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

Q15. - (Topic 4) 

You are developing a BI Semantic Model (BISM) based on a simple and small dataset sourced from SQL Server. The data size and complexity of the data relationships will not change. The model will be used to produce reports in Power View. 

You need to use an appropriate project type. 

Which project types should you use? (Each answer presents a complete solution. Choose all that apply.) 

A. A tabular project that uses the In-Memory query mode 

B. A tabular project that uses the DirectQuery query mode 

C. A multidimensional project that uses the MOLAP storage mode 

D. A PowerPivot workbook that is deployed to Microsoft SharePoint Server 2010 

E. A multidimensional project that uses the ROLAP storage mode 

Answer: A,B,E 

Explanation: Power View is a thin web client that launches right in the browser from a data model in SharePoint Server 2010. The model can be a PowerPivot model workbook or a tabular model running on a SQL Server 2012 Analysis Services (SSAS) server. 

Q16. - (Topic 1) 

After you deploy the RegionalSales report, you attempt to configure the subscriptions. 

You discover that the subscription creation screen does not display the option to deliver the report by email. 

You need to ensure that subscriptions can be delivered by using email. 

What should you do? 

A. Modify the Rsmgrpolicy.config file. 

B. From Central Administration, modify the SMTP settings of the SharePoint Server server farm. 

C. Modify the Rssrvrpolicy.config file. 

D. From Central Administration, modify the properties of the Reporting Service Application. 

Answer:

START 70-466 EXAM