Exam Details

  • Exam Code
    :70-762
  • Exam Name
    :Developing SQL Databases
  • Certification
    :MCSA
  • Vendor
    :Microsoft
  • Total Questions
    :182 Q&As
  • Last Updated
    :Jan 29, 2022

Microsoft MCSA 70-762 Questions & Answers

  • Question 1:

    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

  • Question 2:

    Note: This question is part of a series of questions that use the same scenario. For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.

    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-SQL 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 PostalCode 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. Include AccountNumber, AccountStatus and CustomerID columns in the second table.

  • Question 3:

    Note: This question is part of a series of questions that use the same scenario. For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.

    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-SQL 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:

    Allow users access to the CustomerName and CustomerNumber columns for active customers.

    Allow changes to the columns that the view references. Modified data must be visible through the view.

    Prevent the view from being published as part of Microsoft SQL Server replication.

    Sales.Female.Customers must meet the following requirements:

    Allow users access to the CustomerName, Address, City, State and PostalCode columns.

    Prevent changes to the columns that the view references.

    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 uspUpdateCustomerSummary stored procedure to make changes to customer account summaries. Other stored procedures call the spDeleteCustAcctRelationship to delete records from the CustomerToAccountBridge table.

    When you start uspUpdateCustomerSummary, there are no active transactions. The procedure fails at the second update statement due to a CHECK constraint violation on the TotalDepositAccountCount column.

    What is the impact of the stored procedure on the CustomerDetails table?

    A. A. The value of the TotalAccountCount column decreased.

    B. The value of the TotalDepositAccountCount column is not changed.

    C. The statement that modifies TotalDepositAccountCount is excluded from the transaction.

    D. The value of the TotalAccountCount column is not changed.

    E. The value of the TotalDepositAccountCount column is increased.

    F. The statement that modifies TotalAccountCount column is excluded from the transaction.

    G. The value of the TotalDepositAcountCount column is decreased.

  • Question 4:

    Note: This question is part of a series of questions that use the same answer choices. An answer choice may be correct for more than one question on the series. Each question is independent of the other questions in this series. Information

    and details provided in a question apply only to that question.

    You work on an OLTP database that has no memory-optimized file group defined.

    You have a table names tblTransaction that is persisted on disk and contains the information described in the following table:

    Users report that the following query takes a long time to complete.

    You need to create an index that:

    -improves the query performance

    -does not impact the existing index

    - minimizes storage size of the table (inclusive of index pages).

    What should you do?

    A. Create aclustered 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 columnstore index on the table.

    E. Create a nonclustered columnstore index on the table.

    F. Create a hashindex on the table.

  • Question 5:

    Note: This question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question os independent of the other questions in this series. Information and details provided in a question apply only to that question.

    You have a database named DB1. There is no memory-optimized filegroup in the database. You run the following query:

    The following image displays the execution plan the query optimizer generates for this query:

    Users frequently run the same query with different values for the local variable @lastName. The table named Person is persisted on disk. You need to create an index on the Person.Person table that meets the following requirements:

    1.

    All users must be able to benefit from the index.

    2.

    FirstName must be added to the index as an included column.

    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 columnstore index on the table.

    E. Create a nonclustered columnstore index on the table.

    F. Create a hash index on the table.

  • Question 6:

    Note: The question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other question in the series.

    Information and details provided in a question apply only to that question.

    You have a reporting database that includes a non-partitioned fact table named Fact_Sales. The table is persisted on disk.

    Users report that their queries take a long time to complete. The system administrator reports that the table takes too much space in the database. You observe that there are no indexes defined on the table, and many columns have

    repeating values.

    You need to create the most efficient index on the table, minimize disk storage and improve reporting query performance.

    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 columnstore index on the table.

    E. Create a nonclustered columnstore index on the table.

    F. Create a hash index on the table.

  • Question 7:

    Note: The question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other question in the series. Information and details provided in a question apply only to that question.

    You have a database named DB1. The database does not use a memory-optimized filegroup. The database contains a table named Table1. The table must support the following workloads: You need to add the most efficient index to support the new OLTP workload, while not deteriorating the existing Reporting query performance. 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 columnstore index on the table.

    E. Create a nonclustered columnstore index on the table.

    F. Create a hash index on the table.

  • Question 8:

    Note: The question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other question in the series. Information and details provided in a question apply only to that question.

    You have a database named DB1. The database does not have a memory optimized filegroup. You create a table by running the following Transact-SQL 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 indexon the table.

    B. Create a nonclustered index on the table.

    C. Create a nonclustered filtered index on the table.

    D. Create a clustered columnstore index on the table.

    E. Create a nonclustered columnstore index on the table.

    F. Create a hash index on the table.

  • Question 9:

    You use Microsoft SQL Server Profile to evaluate a query named Query1. 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 event added.

    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.

  • Question 10:

    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 dynamicmanagement view query

    D. an Activity Monitor session in Microsoft SQL Management Studio.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-762 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.