[2017 New] 70-762 New Questions Free Download In Lead2pass (41-60)

2017 May Microsoft Official New Released 70-762 Dumps in Lead2pass.com!

100% Free Download! 100% Pass Guaranteed!

Lead2pass is constantly updating 70-762 exam dumps. We will provide our customers with the latest and the most accurate exam questions and answers that cover a comprehensive knowledge point, which will help you easily prepare for 70-762 exam and successfully pass your exam. You just need to spend 20-30 hours on studying the exam dumps.

Following questions and answers are all new published by Microsoft Official Exam Center: http://www.lead2pass.com/70-762.html

QUESTION 41
You are developing an application that connects to a database.
The application runs the following jobs:

The READ_COMMITTED_SNAPSHOT database option is set to OFF, and auto-content is set to ON. Within the stored procedures, no explicit transactions are defined. If JobB starts before JobA, it can finish in seconds. If JobA starts first, JobB takes a long time to complete.
You need to use Microsoft SQL Server Profiler to determine whether the blocking that you observe in JobB is caused by locks acquired by JobA.
Which trace event class in the Locks event category should you use?

A.    LockAcquired
B.    LockCancel
C.    LockDeadlock
D.    LockEscalation

Answer: A

QUESTION 42
Hotspot Question
You have a database that contains both disk-based and memory-optimized tables.
You need to create two modules.
The modules must meet the requirements described in the following table.

 

Which programming object should you use for each module? To answer, select the appropriate object types in the answer area.

 

Answer:
 

QUESTION 43
You use Microsoft SQL Server Profile to evaluate a query named Queryl.
The Profiler report indicates the following issues:

– At each level of the query plan, a low total number of rows are processed.
– The query uses many operations.

This results in a high overall cost for the query.
You need to identify the information that will be useful for the optimizer.
What should you do?

A.    Start a SQL Server Profiler trace for the event class Auto Stats in the Performance event category.
B.    Create one Extended Events session with the sqlserver.missing_column_statistics eventadded.
C.    Start a SQL Server Profiler trace for the event class Soft Warnings in the Errors and Warnings event category.
D.    Create one Extended Events session with the sqlserver.missing_join_predicate event added.

Answer: D

QUESTION 44
You are experiencing performance issues with the database server.
You need to evaluate schema locking issues, plan cache memory pressure points, and backup I/O problems.
What should you create?

A.    a System Monitor report
B.    a sys.dm_exec_query_stats dynamic management view query
C.    a sys.dm_exec_session_wait_stats dynamic management view query
D.    an Activity Monitor session in Microsoft SQL Management Studio.

Answer: C

QUESTION 45
Hotspot Question
You are maintaining statistics for a database table named tbiTransaction.
The table contains more than 10 million records.
You need to create a stored procedure that meets the following requirements:

– On weekdays, update statistics for a sample of the total number of records in the table.
– On weekends, update statistics by sampling all rows in the table.

A maintenance task will call this stored procedure daily.
How should you complete the stored procedure? To answer, select the appropriate Transact-SOL segments in the answer area.
NOTE: Each correct selection is worth one point.

 

Answer:

 

QUESTION 46
Drag and Drop Question
You have a database named MyDatabase.
You must monitor all the execution plans in XML format by using Microsoft SQL Trace.
The trace must meet the following requirements:

– Capture execution plans only for queries that run the MyDatabase database.
– Filter out plans with event duration of less than or equal to 100 microseconds.
– Save trace results to a disk on the server.

You need to create the trace.
In which order should you arrange the Transact-SOL segments to develop the solution? To answer, move all Transact-SOL segments to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select.

DECLARE @traceEventld int = 122;
DECLARE @traceColumnldForTextData int = 1;
DECLARE @duration Filter bigint = 100
DECLARE @databaseID int;
SELECT @databaseld = DB_ID( ‘MyDatabase’);

 

Answer:

 

QUESTION 47
Hotspot Question
You are analyzing the performance of a database environment.
You need to find all unused indexes in the current database.
How should you complete the Transact-SOL statement? To answer, select the appropriate TransactSOL segments in the answer area.

 

Answer:

 

QUESTION 48
Hotspot Question
You are reviewing the execution plans in the query plan cache.
You observe the following:

– There are a large number of single use plans.
– There are a large number of simple execution plans that use multiple CPU cores.

You need to configure the server to optimize query plan execution.
Which two setting should you modify on the properties page for the Microsoft SQL Server instance? To answer, select the appropriate settings in the answer area.

 

Answer:

 

QUESTION 49
You are developing an application to track customer sales.
You need to create a database object that meets the following requirements:

– Return a value of 0 if data inserted successfully into the Customers table.
– Return a value of 1 if data is not inserted successfully into the Customers table.
– Support logic that is written by using managed code.

What should you create?

A.    extended procedure
B.    CLR procedure
C.    user-defined procedure
D.    DML trigger
E.    DDL trigger
F.    scalar-valued function
G.    table-valued function

Answer: B

QUESTION 50
You are developing an application to track customer sales.
You need to create a database object that meets the following requirements:

– Return a value of 0 if data inserted successfully into the Customers table.
– Return a value of 1 if data is not inserted successfully into the Customers table.
– Support TRY … CATCH error handling
– Be written by using Transact-SOL statements.

What should you create?

A.    extended procedure
B.    CLR procedure
C.    user-defined procedure
D.    DML trigger
E.    scalar-valued function
F.    table-valued function

Answer: C

QUESTION 51
You are developing an application to track customer sales.
You need to create a database object that meets the following requirements:

– Launch when table data is modified.
– Evaluate the state a table before and after a data modification and take action based on the difference.
– Prevent malicious or incorrect table data operations.
– Prevent changes that violate referential integrity by cancelling the attempted data modification.
– Run managed code packaged in an assembly that is created in the Microsoft.NET Framework and located into Microsoft SQL Server.

What should you create?

A.    extended procedure
B.    CLR procedure
C.    user-defined procedure
D.    DML trigger
E.    scalar-valued function
F.    table-valued function

Answer: D

QUESTION 52
You are developing and application to track customer sales.
You need to return the sum of orders that have been finalized, given a specified order identifier. This value will be used in other Transact-SOL statements.
You need to create a database object.
What should you create?

A.    extended procedure
B.    CLR procedure
C.    user-defined procedure
D.    DML trigger
E.    scalar-valued function
F.    table-valued function

Answer: E

QUESTION 53
Hotspot Question
You have a database that contains the following tables:
BlogCategory, BlogEntry, ProductReview, Product, and SalesPerson.
The tables were created using the following Transact SQL statements:

 

You must modify the ProductReview Table to meet the following requirements:

1. The table must reference the ProductID column in the Product table
2. Existing records in the ProductReview table must not be validated with the Product table.
3. Deleting records in the Product table must not be allowed if records are referenced by the ProductReview table.
4. Changes to records in the Product table must propagate to the ProductReview table.

You also have the following database tables: Order, ProductTypes, and SalesHistory, The transact-SOL statements for these tables are not available.
You must modify the Orders table to meet the following requirements:

1. Create new rows in the table without granting INSERT permissions to the table.
2. Notify the sales person who places an order whether or not the order was completed.

You must add the following constraints to the SalesHistory table:

– a constraint on the SaleID column that allows the field to be used as a record identifier
– a constant that uses the ProductID column to reference the Product column of the ProductTypes table
– a constraint on the CategoryID column that allows one row with a null value in the column
– a constraint that limits the Sale Price column to values greater than four

Finance department users must be able to retrieve data from the SalesHistory table for sales persons where the value of the SalesYTD column is above a certain threshold.
You plan to create a memory-optimized table named SalesOrder. The table must meet the following requirements:

– The table must hold 10 million unique sales orders.
– The table must use checkpoints to minimize 1/0 operations and must not use transaction logging.
– Data loss is acceptable.

Performance for queries against the SalesOrder table that use Where clauses with exact equality operations must be optimized.
You need to create the Sales Order table.
How should you complete the table definition? To answer? select the appropriate Transact-SOL segments in the answer area.

 

Answer:

 

QUESTION 54
Hotspot Question
You have a database that contains the following tables:
BlogCategory, BlogEntry, ProductReview, Product, and SalesPerson.
The tables were created using the following Transact SQL statements:

 

You must modify the ProductReview Table to meet the following requirements:

1. The table must reference the ProductID column in the Product table
2. Existing records in the ProductReview table must not be validated with the Product table.
3. Deleting records in the Product table must not be allowed if records are referenced by the ProductReview table.
4. Changes to records in the Product table must propagate to the ProductReview table.

You also have the following database tables: Order, ProductTypes, and SalesHistory, The transact-SOL statements for these tables are not available.
You must modify the Orders table to meet the following requirements:

1. Create new rows in the table without granting INSERT permissions to the table.
2. Notify the sales person who places an order whether or not the order was completed.

You must add the following constraints to the SalesHistory table:

– a constraint on the SaleID column that allows the field to be used as a record identifier
– a constant that uses the ProductID column to reference the Product column of the ProductTypes table
– a constraint on the CategoryID column that allows one row with a null value in the column
– a constraint that limits the Sale Price column to values greater than four

Finance department users must be able to retrieve data from the SalesHistory table for sales persons where the value of the SalesYTD column is above a certain threshold.
You plan to create a memory-optimized table named SalesOrder. The table must meet the following requirements:

– The table must hold 10 million unique sales orders.
– The table must use checkpoints to minimize 1/0 operations and must not use transaction logging.
– Data loss is acceptable.

Performance for queries against the SalesOrder table that use Where clauses with exact equality operations must be optimized.
You need to create a stored procedure named spDeleteCategory to delete records in the database. The stored procedure must meet the following requirements:

1. Delete records in both the BlogEntry and BlogCategory tables where Categoryld equals parameter @Categoryld.
2. Avoid locking the entire table when deleting records from the BlogCategory table.
3. If an error occurs during a delete operation on either table, all changes must be rolled back, otherwise all changes should be committed.

How should you complete the procedure? To answer, select the appropriate Transact-SOL segments in the answer area.

 

Answer:

 

QUESTION 55
Drag and Drop Question
You are analyzing the performance of a database environment. Applications that access the database are experiencing locks that are held for a large amount of time.
You are experiencing isolation phenomena such as dirty, nonrepeatable and phantom reads.
You need to identify the impact of specific transaction isolation levels on the concurrency and consistency of data.
What are the consistency and concurrency implications of each transaction isolation level? To answer, drag the appropriate isolation levels to the correct locations. Each isolation level 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:

 

QUESTION 56
You have a database named DBl that contains the following tables: Customer, CustomerToAccountBridge, and CustomerDetails. The three tables are part of the Sales schema. The database also contains a schema named Website.
You create the Customer table by running the following Transact-SOL statement:

 

The value of the CustomerStatus column is equal to one for active customers. The value of the Account1Status and Account2Status columns are equal to one for active accounts. The following table displays selected columns and rows from the Customer table.

 

You plan to create a view named Website.Customer and a view named Sales.FemaleCustomers.
Website .Customer must meet the following requirements:

1. Allow users access to the CustomerName and CustomerNumber columns for active customers.
2. Allow changes to the columns that the view references. Modified data must be visible through the view.
3. Prevent the view from being published as part of Microsoft SQL Server replication.

Sales.Female.Customers must meet the following requirements:

1. Allow users access to the CustomerName, Address, City, State and PostaiCode columns.
2. Prevent changes to the columns that the view references.
3. Only allow updates through the views that adhere to the view filter.

You have the following stored procedures: spDeleteCustAcctRelationship and spUpdateCustomerSummary. The spUpdateCustomerSummary stored procedure was created by running the following Transacr-SQL statement:

 

You run the spUpdateCustomerSummary stored procedure to make changes to customer account summaries. Other stored procedures call the spDeleteCustAcctRelationship to delete records from the CustomerToAccountBridge table.
You must update the design of the Customer table to meet the following requirements.

1. You must be able to store up to 50 accounts for each customer.
2. Users must be able to retrieve customer information by supplying an account number.
3. Users must be able to retrieve an account number by supplying customer information.

You need to implement the design changes while minimizing data redundancy.
What should you do?

A.    Split the table into three separate tables. Include the AccountNumber and CustomerID columns in the first table. Include the CustomerName and Gender columns in the second table. Include the AccountStatus column in the third table.
B.    Split the table into two separate tables. Include AccountNumber, CustomerID, CustomerName and Gender columns in the first table. Include the AccountNumber and AccountStatus columns in the second table.
C.    Split the table into two separate tables, Include the CustomerID and AccountNumber columns in the first table. Include the AccountNumber, AccountStatus, CustomerName and Gender columns in the second table.
D.    Split the table into two separate tables, Include the CustomerID, CustomerName and Gender columns in the first table. lncludeAccountNumber, AccountStatus and CustomerID columns in the second table.

Answer: D

QUESTION 57
Drag and Drop Question
You have a database named DB1 that contains the following tables:
Customer, CustomerToAccountBridge, and CustomerDetails.
The three tables are part of the Sales schema.
The database also contains a schema named Website.
You create the Customer table by running the following Transact-SOL statement:

 

The value of the CustomerStatus column is equal to one for active customers.
The value of the Account1Status and Account2Status columns are equal to one for active accounts.
The following table displays selected columns and rows from the Customer table.

 

You plan to create a view named Website.Customer and a view named Sales.FemaleCustomers.
Website .Customer must meet the following requirements:

1. Allow users access to the CustomerName and CustomerNumber columns for active customers.
2. Allow changes to the columns that the view references. Modified data must be visible through the view.
3. Prevent the view from being published as part of Microsoft SQL Server replication.

Sales.Female.Customers must meet the following requirements:

1. Allow users access to the CustomerName, Address, City, State and PostaiCode columns.
2. Prevent changes to the columns that the view references.
3. Only allow updates through the views that adhere to the view filter.

You have the following stored procedures: spDeleteCustAcctRelationship and spUpdateCustomerSummary. The spUpdateCustomerSummary stored procedure was created by running the following Transacr-SQL statement:

 

The following table displays a selected columns and rows from the Customer table.
The value of the CustomerStatus column is equal to one for active customers.
The value of the Account1Status and Account2Status columns are equal to one for active accounts.
You run the spUpdateCustomerSummary stored procedure to make changes to customer account summaries. Other stored procedures call the spDeleteCustAcctRelationship to delete records from the CustomerToAccountBridge table.
Users report that the following SELECT statement statement takes a long time to complete:

 

You need to create an index that meets the following requirements:

1. Improve the performance of the SELECT statement.
2. requires minimum index key size.
3. Only contains active customers.
4. Makes no change to the existing primary key.
5. Contains all of the columns required by the SELECT statement.

Which three Transact_SQL segments should you use to develop the solution? To answer, move the appropriate code blocks from the list of code blocks to the answer area and arrange them in the correct order.

 

Answer:

 

Answer correct:
create non custered index….
on Customer(CreatedDate)
Where CustomerStatus<>1

QUESTION 58
You have a database named DB1. The database does not have a memory optimized filegroup. You create a table by running the following Transact-SOL statement:

 

The table is currently used for OLTP workloads.
The analytics user group needs to perform real-time operational analytics that scan most of the records in the table to aggregate on a number of columns.
You need to add the most efficient index to support the analytics workload without changing the OLTP application.
What should you do?

A.    Create a clustered index on the table.
B.    Create a nonclustered index on the table.
C.    Create a nonclustered filtered index on the table.
D.    Create a clustered column store index on the table.
E.    Create a nonclustered column store index on the table.
F.    Create a hash index on the table.

Answer: E

QUESTION 59
Drag and Drop Question
You have a database named DB1 that contains the following tables: Customer, CustomerToAccountBridge, and CustomerDetails. The three tables are part of the Sales schema. The database also contains a schema named Website.
You create the Customer table by running the following Transact-SOL statement:

 

The value of the CustomerStatus column is equal to one for active customers. The value of the Account1Status and Account2Status columns are equal to one for active accounts.
The following table displays selected columns and rows from the Customer table.

 

You plan to create a view named Website.Customer and a view named Sales.FemaleCustomers.
Website .Customer must meet the following requirements:

1. Allow users access to the CustomerName and CustomerNumber columns for active customers.
2. Allow changes to the columns that the view references. Modified data must be visible through the view.
3. Prevent the view from being published as part of Microsoft SQL Server replication.

Sales.Female.Customers must meet the following requirements:

1. Allow users access to the CustomerName, Address, City, State and PostaiCode columns.
2. Prevent changes to the columns that the view references.
3. Only allow updates through the views that adhere to the view filter.

You have the following stored procedures: spDeleteCustAcctRelationship and spUpdateCustomerSummary. The spUpdateCustomerSummary stored procedure was created by running the following Transacr-SQL statement:

 

You run the spUpdateCustomerSummary stored procedure to make changes to customer account summaries. Other stored procedures call the spDeleteCustAcctRelationship to delete records from the CustomerToAccountBridge table.
When a procedure calls spDeleteCustAcctRelationship, if the calling stored procedures has already started an active transaction, all the detections made by the spDeleteCustAccRelationship stored procedure must be committed by the caller; otherwise changes must be committed within the spDeleteCustAcctRelationship stored procedure.
If any error occurs during the delete operation, only the deletes made by the soDeleteCustACCTRelationships stored procedure must be rolled back and the status must be updated. You need to complete the stored procedure to ensure all the requirements are met.
How should you complete the procedure? To answer, drag the Transact-SOL segments to the correct location. Each transact-SOL segment 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.
NOTE: Each correct selection is worth one point.

 

Answer:

 

QUESTION 60
Drag and Drop Question
You have a database named DB1 that contains the following tables: Customer, CustomerToAccountBridge, and CustomerDetails. The three tables are part of the Sales schema. The database also contains a schema named Website.
You create the Customer table by running the following Transact-SOL statement:

 

The value of the CustomerStatus column is equal to one for active customers.
The value of the Account1Status and Account2Status columns are equal to one for active accounts.
The following table displays selected columns and rows from the Customer table.

 

You plan to create a view named Website.Customer and a view named Sales.FemaleCustomers.
Website.Customer must meet the following requirements:

1. Allow users access to the CustomerName and CustomerNumber columns for active customers.
2. Allow changes to the columns that the view references. Modified data must be visible through the view.
3. Prevent the view from being published as part of Microsoft SQL Server replication.

Sales.Female.Customers must meet the following requirements:

1. Allow users access to the CustomerName, Address, City, State and PostaiCode columns.
2. Prevent changes to the columns that the view references.
3. Only allow updates through the views that adhere to the view filter.

You have the following stored procedures: spDeleteCustAcctRelationship and spUpdateCustomerSummary. The spUpdateCustomerSummary stored procedure was created by running the following Transacr-SQL statement:

 

You run the spUpdateCustomerSummary stored procedure to make changes to customer account summaries. Other stored procedures call the spDeleteCustAcctRelationship to delete records from the CustomerToAccountBridge table.
You need to create Website Customer.
How should you complete the view definition? To answer, drag the appropriate Transact-SOL segments to the correct locations, Each Transact-SOL segment 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.
NOTE: Each correct selection is worth one point.

 

Answer:

Lead2pass is no doubt your best choice. Using the Microsoft 70-762 exam dumps can let you improve the efficiency of your studying so that it can help you save much more time.

Microsoft 70-762 new questions on Google Drive: https://drive.google.com/open?id=0B3Syig5i8gpDY2hzNXZncVYwRWc

2017 Microsoft 70-762 exam dumps (All 70 Q&As) from Lead2pass:

http://www.lead2pass.com/70-762.html [100% Exam Pass Guaranteed]

You may also like