70-764 Exam Details

  • Exam Code
    :70-764
  • Exam Name
    :Administering a SQL Database Infrastructure
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :452 Q&As
  • Last Updated
    :Feb 07, 2022

Microsoft 70-764 Online Questions & Answers

  • Question 1:

    You have a database named DB1 that contains two tables.

    You need to encrypt one column in each table by using the Always Encrypted feature.

    The solution must support groupings on encrypted columns.

    Which two actions should you perform? Each correct answer presents part of the solution.

    NOTE: Each correct selection is worth one point.

    A. Encrypt both columns by using deterministic encryption.
    B. Provision a symmetric key by using Transact-SQL.
    C. Encrypt both columns by using randomized encryption.
    D. Provision column master keys and column encryption keys by using Microsoft SQL Server Management Studio (SSMS).

  • Question 2:

    Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while

    others might not have a correct solution.

    After you answer a question in this sections, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

    You have a server named Server1 that has Microsoft SQL Server installed.

    Server1 has SQL Server Adult configured to send audit event records to a file.

    You need to ensure that a database user named User1 can review the audit data.

    Solution: You grant the VIEW ANY DEFINITION permission to User1.

    Does this meet the goal?

    A. Yes
    B. No

  • Question 3:

    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 this series.

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

    You have an on-premises server that runs Microsoft SQL Server 2016 Standard Edition.

    You need to identify missing indexes.

    What should you use?

    A. Activity Monitor
    B. Sp_who3
    C. SQL Server Management Studio (SSMS) Object Explorer
    D. SQL Server Data Collector
    E. SQL Server Data Tools (SSDT)
    F. SQL Server Configuration Manager

  • Question 4:

    Overview

    General Overview

    ADatum Corporation has offices in Miami and Montreal.

    The network contains a single Active Directory forest named adatum.com. The offices connect to each other by using a WAN link that has 5-ms latency. A. Datum standardizes its database platform by using SQL Server 2014 Enterprise

    edition.

    Databases

    Each office contains databases named Sales, Inventory, Customers, Products, Personnel, and Dev.

    Servers and databases are managed by a team of database administrators. Currently, all of the database administrators have the same level of permissions on all of the servers and all of the databases.

    The Customers database contains two tables named Customers and Classifications.

    The following graphic shows the relevant portions of the tables:

    The following table shows the current data in the Classifications table:

    The Inventory database is updated frequently.

    The database is often used for reporting.

    A full backup of the database currently takes three hours to complete.

    Stored Procedures

    A stored procedure named USP_1 generates millions of rows of data for multiple reports. USP_1 combines data from five different tables from the Sales and Customers databases in a table named Table1. After Table1 is created, the

    reporting process reads data from Table1 sequentially several times. After the process is complete, Table1 is deleted. A stored procedure named USP_2 is used to generate a product list. The product list contains the names of products

    grouped by category.

    USP_2 takes several minutes to run due to locks on the tables the procedure accesses. The locks are caused by USP_1 and USP_3.

    A stored procedure named USP_3 is used to update prices. USP_3 is composed of several UPDATE statements called in sequence from within a transaction. Currently, if one of the UPDATE statements fails, the stored procedure fails. A

    stored procedure named USP_4 calls stored procedures in the Sales, Customers, and Inventory databases.

    The nested stored procedures read tables from the Sales, Customers, and Inventory databases. USP_4 uses an EXECUTE AS clause.

    All nested stored procedures handle errors by using structured exception handling. A stored procedure named USP_5 calls several stored procedures in the same database. Security checks are performed each time USP_5 calls a stored

    procedure.

    You suspect that the security checks are slowing down the performance of USP_5. All stored procedures accessed by user applications call nested stored procedures.

    The nested stored procedures are never called directly.

    Design Requirements

    Data Recovery

    You must be able to recover data from the Inventory database if a storage failure occurs. You have a Recovery Time Objective (RTO) of 5 minutes.

    You must be able to recover data from the Dev database if data is lost accidentally. You have a Recovery Point Objective (RPO) of one day.

    Classification Changes

    You plan to change the way customers are classified. The new classifications will have four levels based on the number of orders. Classifications may be removed or added in the future. Management requests that historical data be

    maintained for the previous classifications. Security A group of junior database administrators must be able to manage security for the Sales database. The junior database administrators will not have any other administrative rights. A. Datum

    wants to track which users run each stored procedure.

    Storage

    ADatum has limited storage. Whenever possible, all storage space should be minimized for all databases and all backups.

    Error Handling

    There is currently no error handling code in any stored procedure.

    You plan to log errors in called stored procedures and nested stored procedures. Nested stored procedures are never called directly.

    You need to recommend a solution to meet the security requirements of the junior database administrators. What should you include in the recommendation?

    A. A server role
    B. A database role
    C. A credential
    D. A shared login

  • Question 5:

    DRAG DROP

    You plan to deploy a database by using SQL Server 2014. Your company identifies the following requirements for the database:

    The name of all stored procedures must start with "usp_"always.

    All distribution statistics must be updated daily

    You need to identify which feature must be used to meet each database requirement.

    Which features should you identify? To answer, drag the appropriate feature to the correct database requirement in the answer area.

    Select and Place:

  • Question 6:

    You administer a Windows Azure SQL Database database named Human_Resources. The database contains 2 tables named Employees and SalaryDetails. You add two Windows groups as logins for the server:

    CORP\Employees - All company employees

    CORP\HRAdmins - HR administrators only

    HR Administrators are also company employees.

    You need to grant users access according to the following requirements:

    CORP\Employees should have SELECT access to the Employees table.

    Only users in CORP\HRAdmins should have SELECT access to the SalaryDetails table.

    Logins are based only on Windows security groups.

    What should you do?

    A. Create a database role called Employees. Add CORP\Employees to the db_datareader role. Add all company employees except HR administrators to the Employees role. Deny SELECT access to the SalaryDetails table to the Employees role.
    B. Create a database role called HRAdmins. Add all company employees except HR administrators to the db_datareader role, Add all HR administrators to the HRAdmins role. Grant SELECT access to the SalaryDetails table to the HRAdmins role. Deny SELECT access to the SalaryDetails table to the db_datareader role.
    C. Create two database roles: Employees and HRAdmins. Add all company employees to the Employees role. Add HR administrators to the HRAdmins role. Grant SELECT access to all tables except SalaryDetails to the Employees role. Grant SELECT access to the SalaryDetails table to the HRAdmins role. Deny SELECT access to the SalaryDetails table to the Employees role.
    D. Create a database role called Employees. Add all HR administrators to the db_datareader role. Add all company employees to the Employees role. Grant SELECT access to all tables except the SalaryDetails table to the Employees role. Deny SELECT access to the SalaryDetails table to the Employees role.

  • Question 7:

    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 this series.

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

    You are the database administrator for a company that hosts Microsoft SQL Server. You manage both on-premises and Microsoft Azure SQL Database environments.

    Clients connect to databases by using line-of-business applications. Developers connect by using SQL Server Management Studio (SSMS).

    You need to provide permissions to a service account that will be used to provision a new database for a client.

    Which permission should you grant?

    A. DDLAdmin
    B. db_datawriter
    C. dbcreator
    D. dbo
    E. View Database State
    F. View Server State
    G. View Definition
    H. sysadmin

  • Question 8:

    You need to address the Sales Director's requirements regarding the customer classification. You need to recommend a solution for changing the classifications.

    What should you recommend?

    A. Add each classification change to a new row in the Customers table.
    B. Record each change to the classification of each customer in a new row in the Customers table.
    C. Add a new row to the Customers table for each new classification.
    D. Record each change to the classification of each customer in a new table in the Customers database.

  • Question 9:

    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 are a database administrator for a company that has an on-premises Microsoft SQL Server environment and Microsoft Azure SQL Database instances. The environment hosts several customer databases, and each customer uses a dedicated instance. The environments that you manage are shown in the following table.

    You need to monitor WingDB and gather information for troubleshooting issues.

    What should you use?

    A. sp_updatestats
    B. sp_lock
    C. sys.dm_os_waiting_tasks
    D. sys.dm_tran_active_snapshot_database_transactions
    E. Activity Monitor
    F. sp_monitor
    G. sys.dm_tran_locks

  • Question 10:

    Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while

    others might not have a correct solution.

    After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

    You have a database named DB1 that is 640 GB and is updated frequently.

    You enable log shipping for DB1 and configure backup and restore to occur every 30 minutes.

    You discover that the hard disks on the database server are almost full.

    You need to reduce the amount of disk space used by the log shipping process.

    Solution: You increase the frequency of the transaction log backups to every 10 minutes.

    Does this meet the goal?

    A. Yes
    B. No

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-764 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.