70-762 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 70-762 Online Questions & Answers

  • Question 71:

    You have a reporting application that uses a table named Table1. You deploy a new batch update process to perform updates to Table1.

    The environment is configured with the following properties:

    The database is configured with the default isolation setting.

    The application and process use the default transaction handling.

    You observe the application cannot access any rows that are in use by the process.

    You have the following requirements:

    Ensure the application is not blocked by the process.

    Ensure the application has a consistent view of the data

    Ensure the application does not read dirty data.

    You need to resolve the issue and meet the requirements with the least amount of administrative effort.

    What should you do?

    A. Enable the database for the ALLOW_SNAPSHOT_ISOLATION isolation level. Modify the application for the SERIALIZABLE isolation level.
    B. Enable the database for the READ_COMITTED_SNAPSHOT isolation level.
    C. Enable the application for the WITH (NOLOCK) hint.
    D. Enable the database for the ALLOW_SNAPSHOT_ISOLATION isolation level. Modify the application and the update process for the SNAPSHOT isolation level.

  • Question 72:

    Note: This question is part of a series of questions that present the same scenario. Each question in this series contains a unique solution. Determine whether the solution meets the stated goals. The Account table was created using the following Transact-SQL statement:

    There are more than 1 billion records in the Account table. The Account Number column uniquely identifies each account. The ProductCode column has 100 different values. The values are evenly distributed in the table. Table statistics are refreshed and up to date.

    You frequently run the following Transact-SQL SELECT statements:

    You must avoid table scans when you run the queries. You need to create one or more indexes for the table. Solution: You run the following Transact-SQL statement:

    Does the solution meet the goal?

    A. Yes
    B. No

  • Question 73:

    You have a Microsoft Azure SQL Database named MyDb that uses server version V12.

    You plan to use Query Performance Insight to troubleshoot performance problems. The database query store is not enabled.

    You need to enable the database query store to meet the following requirements for the database:

    You connect to the database by using SQL Server Managements Studio.

    How should you complete the Transact-SQL statements? To answer, drag the appropriate Transact-SQL segments to the correct locations. Each Transact-SQL 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: More than one combination of answer choices is correct. You will receive credit for any of the correct combinations you select. Each correct selection is worth one point.

    Select and Place:

  • Question 74:

    Note: This question is part of a series of questions that present the same scenario. Each question in this series contains a unique solution. Determine whether the solution meets the stated goals.

    Your company has employees in different regions around the world.

    You need to create a database table that stores the following employee attendance information:

    Employee ID date and time employee checked in to work date and time employee checked out of work

    Date and time information must be time zone aware and must not store fractional seconds. Solution: You run the following Transact-SQL statement: Does the solution meet the goal?

    A. Yes
    B. No

  • Question 75:

    You have a Microsoft Azure SQL Database. You enable Query Store for the database and configure the store to use the following settings:

    SIZE_BASED_CLEANUP_MODE = OFF

    STALE_QUERY_THRESHOLD_DAYS = 60

    MAX_STORAGE_SIZE_MB = 100

    QUERY_CAPTURE_MODE = ALL

    You use Azure Query Performance Insight to review queries. You observe that new queries are not displayed after 15 days and that the Query Store is set to read-only mode.

    If the Query Store runs low on data space, the store must prioritize queries that run regularly or queries that consume applicant resources.

    You must set the Query Store to read_write mode and determine the performance of queries from the past 60 days.

    Which three actions should you perform? Each correct step presents part of the solution.

    NOTE: Each correct selection is worth one point.

    A. Set the value of the CLEANUP_POLICY setting to (STALE_QUERY_THRESHOLD_DAYS = 75)
    B. Set the value of the QUERY_CAPTURE_MODE setting to AUTO
    C. Increase the value for the MAX_STORAGE_SIZE_MB setting
    D. Set the value of the SIZE_BASED_CLEANUP_MODE setting to AUTO
    E. In the Azure portal, navigate to Query Performance Insight. Use the Custom tab to select a period of 2 months.

  • Question 76:

    DRAG DROP

    You need to implement triggers to automate responses to the following events:

    SQL Server logons

    Database schema changes

    Database updates

    Which trigger types should you use? To answer, drag the appropriate trigger types to the appropriate scenarios. Each trigger type 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.

    Select and Place:

  • Question 77:

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

    You are developing an ETL process to cleanse and consolidate incoming data. The ETL process will use a reference table to identify which data must be cleansed in the target table. The server that hosts the table restarts daily.

    You need to minimize the amount of time it takes to execute the query and the amount of time it takes to populate the reference table.

    What should you do?

    A. Convert the target table to a memory-optimized table. Create a natively compiled stored procedure to cleanse and consolidate the data.
    B. Convert the reference table to a memory-optimized table. Set the DURABILITY option to SCHEMA_AND_DATA.
    C. Create a native compiled stored procedure to implement the ETL process for both tables.
    D. Convert the reference table to a memory-optimized table. Set the DURABILITY option to SCHEMA_ONLY.

  • Question 79:

    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 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 databse tables: Order, ProductTypes, and SalesHistory, The transact-SQL 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 SalePrice 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 requirments:

    -The table must hold 10 million unique sales orders.

    - The table must use checkpoints to minimize I/O 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 modify the design of the Orders table.

    What should you create?

    A. a stored procedure with the RETURN statement
    B. a FOR UPDATE trigger
    C. an AFTER UPDATE trigger
    D. a user defined function

  • Question 80:

    DRAG DROP

    You have two databases with the following settings:

    You run the following Transact SQL statements:

    You need to select data from DiskTable and insert the data into MemTable. You must complete the insertion operation into MemTable as an explicit transaction without immediate durability.

    Which four Transact-SQL segments should you use? To answer, move the appropriate Transact-SQL segments from the list of Transact-SQL segments to the answer area and arrange them in the correct order.

    Select and Place:

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.