Exam Details

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

Microsoft Microsoft Certifications 70-762 Questions & Answers

  • Question 11:

    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 is independent of the other questions in the series.

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

    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

  • Question 12:

    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 is independent of the other questions in the series.

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

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

  • Question 13:

    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 is independent of the other questions in the series.

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

    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

  • Question 14:

    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 is independent of the other questions in the series.

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

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

  • Question 15:

    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 is independent of the other questions in the series.

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

    You are developing and application to track customer sales.

    You need to create an object that meet the following requirements:

    - Run managed code packaged in an assembly that was created in the Microsoft.NET Framework and uploaded in Microsoft SQL Server.

    -

    Run written a transaction and roll back if a future occurs.

    -

    Run when a table is created or modified.

    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

  • Question 16:

    You have a view that includes an aggregate.

    You must be able to change the values of columns in the view. The changes must be reflected in the tables that the view uses.

    You need to ensure that you can update the view.

    What should you create?

    A. table-valued function

    B. a schema-bound view

    C. a partitioned view

    D. a DML trigger

  • Question 17:

    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 independent of the other questions in this series.

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

    You are a database developer for a company. The company has a server that has multiple physical disks. The disks are not part of a RAID array. The server hosts three Microsoft SQL Server instances. There are many SQL jobs that run

    during off-peak hours.

    You must monitor and optimize the SQL Server to maximize throughput, response time, and overall SQL performance.

    You need to identify previous situations where a modification has prevented queries from selecting data in tables.

    What should you do?

    A. Create a sys.dm_os_waiting_tasks query.

    B. Create a sys.dm_exec_sessions query.

    C. Create a Performance Monitor Data Collector Set.

    D. Create a sys.dm_os_memory_objects query.

    E. Create a sp_configure `max server memory' query.

    F. Create a SQL Profiler trace.

    G. Create a sys.dm_os_wait_stats query.

    H. Create an Extended Event.

  • Question 18:

    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 independent of the other questions in this series.

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

    You are a database developer for a company. The company has a server that has multiple physical disks. The disks are not part of a RAID array. The server hosts three Microsoft SQL Server instances. There are many SQL jobs that run

    during off-peak hours.

    You observe that many deadlocks appear to be happening during specific times of the day.

    You need to monitor the SQL environment and capture the information about the processes that are causing the deadlocks. Captured information must be viewable as the queries are running.

    What should you do?

    A. A. Create a sys.dm_os_waiting_tasks query.

    B. Create a sys.dm_exec_sessions query.

    C. Create a PerformanceMonitor Data Collector Set.

    D. Create a sys.dm_os_memory_objects query.

    E. Create a sp_configure `max server memory' query.

    F. Create a SQL Profiler trace.

    G. Create a sys.dm_os_wait_stats query.

    H. Create an Extended Event.

  • Question 19:

    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 independent of the other questions in this series.

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

    You are a database developer for a company. The company has a server that has multiple physical disks. The disks are not part of a RAID array. The server hosts three Microsoft SQL Server instances. There are many SQL jobs that run

    during off-peak hours.

    You must monitor the SQL Server instances in real time and optimize the server to maximize throughput, response time, and overall SQL performance.

    What should you do?

    A. A. Create asys.dm_os_waiting_tasks query.

    B. Create a sys.dm_exec_sessions query.

    C. Create a Performance Monitor Data Collector Set.

    D. Create a sys.dm_os_memory_objects query.

    E. Create a sp_configure `max server memory' query.

    F. Create a SQL Profiler trace.

    G. Create a sys.dm_os_wait_stats query.

    H. Create an Extended Event.

  • Question 20:

    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 independent of the other questions in this series.

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

    You are a database developer for a company. The company has a server that has multiple physical disks. The disks are not part of a RAID array. The server hosts three Microsoft SQL Server instances. There are many SQL jobs that run

    during off-peak hours.

    You must monitor the SQL Server instances in real time and optimize the server to maximize throughput, response time, and overall SQL performance.

    You need to ensure that the performance of each instance is consistent for the same queried and query plans.

    What should you do?

    A. A. Create a sys.dm_os_waiting_tasks query.

    B. Create a sys.dm_exec_sessions query.

    C. Create a Performance Monitor Data Collector Set.

    D. Create a sys.dm_os_memory_objects query.

    E. Create a sp_configure `max server memory' query.

    F. Create a SQL Profiler trace.

    G. Create asys.dm_os_wait_stats query.

    H. Create an Extended Event.

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.