Passleader Supply Economical Package For 70-460 Real Exam Questions With Free Update (1-20)

QUESTION 1
You are modifying a SQL Server Reporting Services (SSRS) report for a SQL Server Analysis Services (SSAS) cube. The report defines a report parameter of data type Date/Time with which users can filter the report by a single date. The parameter value cannot be directly used to filter the Multidimensional Expressions (MDX) query for the dataset. You need to ensure that the report displays data filtered by the user-entered value. You must achieve this goal by using the least amount of development effort. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Edit the dataset query parameter. Change the Value property of the report parameter to an expression that uses the same format as the date dimension member key value.
B.    Change the dataset query to Transact-SQL (T-SQL). Use the OPENROWSET function to query the cube. Output the cube results to the T-SQL query and use a Convert function to change the report parameter value into the same format as the date dimension member.
C.    Edit the dataset query parameter. Create a subcube subquery that uses the StrToSet MDX function and accepts the report parameter value.
D.    Edit the dataset query parameter. Change the Name property of the dataset query parameter so that it points to a name value for each date dimension member.

Answer: A

QUESTION 2
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. Email messages will be sent via an internal mail server. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Create a standard SSRS subscription for each subscription schedule.
B.    Create one data-driven SSRS subscription. Schedule the subscription to frequently retrieve user preferences.
C.    Create a data-driven SSRS subscription for each record in the schedule table.
D.    Create a standard SSRS subscription for each record in the table.

Answer: B

QUESTION 3
Hotspot Question
A SQL Server Analysis Services (SSAS) cube contains billions of rows of data and is rapidly increasing in size. The cube consists of a single measure group and a single partition. The cube is currently processed by using the Process Full process option. You have the following requirements to reduce the cube processing time:
– Partition the measure group by month.
– Create a staging table that contains only data which is more recent than the last time the cube was processed.
– Do not include data updates or deletions in the staging table.
– Insert records from the staging table into the appropriate partition.
You need to change the process option to meet the requirements. Which process option should you choose? To answer, select the appropriate option from the drop-down list in the dialog box.
31[2]

Answer:
32[2]

QUESTION 4
You are using a new installation of SQL Server Reporting Services (SSRS) to create three sales reports that consume data from a stored procedure. The stored procedure is defined in a SQL Azure database. All reports must pass USA to the Country parameter of the stored procedure. Users cannot change the Country report parameter value. You need to configure the report parameter properties. How should you configure the report parameter properties? To answer, select the appropriate setting or settings in the answer area.
41[2]
Answer: Allow null value

QUESTION 5
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 10 dimensional key columns and 5 measure columns.
Place the columnstore index on only the measure columns.
B.    Design a fact table with 10 dimensional key columns and S measure columns.
Place the columnstore index on the dimensional key columns and the measure columns.
C.    Design a fact table with 5 dimensional key columns and 10 measure columns.
Place the columnstore index on the measure columns.
D.    Design a fact table with 5 dimensional key columns and 10 measure columns.
Place the columnstore index on the dimensional key columns.

Answer: B

QUESTION 6
You are designing a SQL Server 2012 Integration Services (SSIS) deployment strategy. You currently have many SQL Server 2008 SSIS packages that require upgrading. The production environment includes SSIS 2012 and SSIS 2008. The environment includes existing command shell scripts that invoke the dtutil command-line utility. You need to design a deployment strategy that supports existing deployment strategies and requires the minimum amount of effort. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

A.    Use a project deployment model. Change the command shell scripts to reference the SQL Server 2012 path to dtutil.
B.    Use a project deployment model. Use the Integration Services Deployment Wizard.
C.    Use a package deployment model. Use the Integration Services Deployment Wizard.
D.    Use a package deployment model. Change the command shell scripts to reference the SQL Server 2012 path to dtutil.

Answer: D

QUESTION 7
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 CUSTOMDATA functions.
B.    Add a row filter that implements only the USERNAME function.
C.    Add a row filter that implements the LOOKUPVALUE and USERNAME functions.
D.    Add a row filter that implements only the CUSTOMDATA function.

Answer: C

QUESTION 8
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.    =RELATED(Geography[City])
B.    City:= LOOKUPVALUE(Geography[City],Geography[GeographyKey],[GeographyKey])
C.    City:=VALUES(Geography[City])
D.    =VALUES(Geography[City])
E.    =RELATED(Geography.City)
F.    City:= LOCKUP(Geography[City],Geography[GeographyKey],[GeographyKey])

Answer: A

QUESTION 9
You are developing a SQL Server Analysis Services (SSAS) tabular project. A model contains tables and columns that must not be visible to the user. The columns and tables cannot be removed because they are used in calculations. You need to hide the tables and columns. What should you do?

A.    Right-click the applicable tables and columns and select the Hide option.
B.    Right-click the applicable tables and columns and select the Hide from Client Tools option.
C.    In the Properties window for the applicable tables and columns, set the Enabled property to False.
D.    In the Properties window for the applicable tables and columns, set the Visible property to True.

Answer: B

QUESTION 10
You are developing a SQL Server Analysis Services (SSAS) tabular project. You need to grant the minimum permissions necessary to enable users to query data in a data model. Which role permission should you use?

A.    Browser
B.    Process
C.    Read
D.    Administrator
E.    Explorer
F.    Select

Answer: C


PassLeader[5]

http://www.passleader.com/70-460.html

QUESTION 11
Drag and Drop Question
You are developing a SQL Server Analysis Services (SSAS) tabular project based on a SQL Azure database. The ProcessingOption property for the project is set to Do Not Process. Several calculated columns have been added to a table. The project has been deployed to the production server. You need to ensure that newly added data is processed on the production server. 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.)
111[5]

Answer:
112[2]

QUESTION 12
Hotspot Question
A SQL Server Analysis Services (SSAS) cube has roles to define dimension data security. A role named USA allows users to browse data pertaining to the United States. A role named Canada allows users to browse data pertaining to Canada. A user can browse sales data pertaining to the United States but cannot browse sales data pertaining to Canada. You validate that the user belongs to the USA and Canada roles. You need to reproduce the issue in SQL Server Management Studio (SSMS). Which option should you select? To answer, select the appropriate action in the answer area.
121[3]

Answer:
122[2]

QUESTION 13
You are troubleshooting query performance for a SQL Server Analysis Services (SSAS) cube. A user reports that a Multidimensional Expressions (MDX) query is very slow. You need to identify the MDX query statement in a trace by using SQL Server Profiler. Which event class should you use?

A.    Get Data From Aggregation
B.    Calculate Non Empty Begin
C.    Execute MDX Script Begin
D.    Query Begin
E.    Progress Report Begin
F.    Query Subcube

Answer: A

QUESTION 14
Drag and Drop Question
You are developing a SQL Server Analysis Services (SSAS) multidimensional project that is configured to source data from a SQL Azure database. The cube is processed each night at midnight. The largest partition in the cube takes 12 hours to process, and users are unable to access the cube until noon. The partition must be available for querying as soon as possible after processing commences. You need to ensure that the partition is available for querying as soon as possible, without using source data to satisfy the query. 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.)
141[3]

Answer:
142[2]

QUESTION 15
You are creating a new report in SQL Server Report Builder. You add a SQL Azure data source. Then you add a dataset that has four fields named Year, Country, Category, and Sales. You must design a matrix as shown in the following diagram.
151[4]
The category rows (the first three rows as shown in the diagram) must present total sales amount by category. The country rows (the next six rows as shown in the diagram) must present total sales amount by country. The total row must present the total sales for each year. You add a matrix to the report. You add a grouping of the Category field on the rows and a grouping of the Year field on the columns. You need to add the countries on the rows of the matrix. Which Row Group option should you select when you add the group?

A.    Adjacent Above
B.    Adjacent Below
C.    Child Group
D.    Parent Group

Answer: D

QUESTION 16
Drag and Drop Question
You are developing a SQL Server Reporting Services (SSRS) report that sources data from a SQL Azure database and a SQL Server Analysis Services (SSAS) cube. The cube contains a date dimension and other dimensions. The report design includes two report parameters named StartDate and FinishDate as shown in the following diagram.
161[5]
The Data Type property of the parameters is set to Date/Time. You need to create the dataset based on the SSAS cube. You also need to ensure that the dataset is filtered by the existing report parameters. 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.)
162[4]

Answer:
163[2]

QUESTION 17
You install SQL Server Reporting Services (SSRS). You need to restore a copy of the symmetric key. Which command should you run?

A.    rskeymgmc -a -f %temp%\rs.key -p Password1
B.    rskeymgmt -d
C.    rskeymgmt -e -f %temp%\rs.key -p Password1
D.    rskeymgmt -i

Answer: A

QUESTION 18
You are designing a SQL Server Reporting Services (SSRS) report based on a SQL Server Analysis Services (SSAS) cube. The cube contains a Key Performance Indicator (KPI) to show if a salesperson’s sales are off target, slightly off target, or on target. You need to add a report item that visually displays the KPI status value as a red, yellow, or green circle. Which report item should you add?

A.    Linear Gauge
B.    Sparkline
C.    Data Bar
D.    Indicator
E.    Radial Gauge

Answer: D

QUESTION 19
You are designing a SQL Server Reporting Services (SSRS) report to display vineyard names and their year-to-date (YTD) grape yield. Grape yield values are classified in three bands:
– High Yield
– Medium Yield
– Low Yield
You add a table to the report. Then you define two columns based on the fields named VineyardName and YTDGrapeYield. You need to set the color of the vineyard text to red, yellow, or blue, depending on the value of the YTD grape yield values. What should you do?

A.    Use an expression for the TextDecoration property of the vineyard text box.
B.    Use an expression for the Color property of the vineyard text box.
C.    Add an indicator to the table.
D.    Use an expression for the Font property of the vineyard text box.
E.    Use an expression for the Style property of the vineyard text box.

Answer: B

QUESTION 20
You are developing a SQL Server Reporting Services (SSRS) report that renders in HTML. The report includes a dataset with fields named Description, Price, and Color. The report layout includes a table that displays product details and also includes columns named Description, Price, and Color. You need to modify the report so that users can sort products by the Price column. What should you do?

A.    Set the SortExpression property to =Fields!Price.Name for the Price text box.
B.    Add a custom action to the Price text box.
C.    Set the SortExpression property to =Fields!Price.Value for the Price text box.
D.    In the Expression dialog box for the Price text box, enter the =SortBy Fields!Price.Value expression.

Answer: D


Passleader Supply Economical Package For 70-460 Real Exam Questions With Free Update

http://www.passleader.com/70-460.html