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

    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 assign the db_datareader role to User1.

    Does this meet the goal?

    A. Yes
    B. No

  • Question 102:

    You administer a Microsoft SQL Server 2016 instance that contains a financial database hosted on a storage area network (SAN). The financial database has the following characteristics:

    A data file of 2 terabytes is located on a dedicated LUN (drive D).

    A transaction log of 10 GB is located on a dedicated LUN (drive E).

    Drive D has 1 terabyte of free disk space.

    Drive E has 5 GB of free disk space.

    The database is continually modified by users during business hours from Monday through Friday between 09:00 hours and 17:00 hours.

    Five percent of the existing data is modified each day.

    The Finance department loads large CSV files into a number of tables each business day at 11:15 hours and 15:15 hours by using the BCP or BULK INSERT commands.

    Each data load adds 3 GB of data to the database.

    These data load operations must occur in the minimum amount of time. A full database backup is performed every Sunday at 10:00 hours.

    Backup operations will be performed every two hours (11:00, 13:00, 15:00, and 17:00) during business hours.

    You implement log shipping of the financial database to another SQL Server 2016 instance. You decide to failover to this secondary database.

    You need to ensure that all transactions will be replicated to the secondary database.

    Which backup option should you use?

    A. Differential
    B. Transaction Log
    C. FULL
    D. SIMPLE
    E. SKIP
    F. RESTART
    G. STANDBY
    H. CHECKSUM
    I. DBO_ONLY
    J. COPY_ONLY

  • Question 103:

    You plan to create a database.

    The database will be used by a Microsoft .NET application for a special event that will last for two days. During the event, data must be highly available. After the event, the database will be deleted. You need to recommend a solution to

    implement the database while minimizing costs. The solution must not affect any existing applications.

    What should you recommend? More than one answer choice may achieve the goal. Select the BEST answer.

    A. Max Degree of Parallelism
    B. Resource Governor
    C. Windows System Resource Manager (WSRM)
    D. Processor affinity

  • Question 104:

    HOTSPOT

    You are the database administrator of a Microsoft SQL Server instance. Developers are writing stored procedures to send emails using sp_send_dbmail. Database Mail is enabled.

    You need to configure each account's profile security and meet the following requirements:

    Account SMTP1_Account must only be usable by logins that have been given explicit permissions to use the SMTP1_profile.

    Account SMTP2_Account must only be usable by logins who are a member of the [DatabaseMailUserRole] role in msdb.

    In the table below. identify the profile type that must be used for each account.

    NOTE: Make only one selection in each column.

    Hot Area:

  • Question 105:

    Background

    Corporate Information

    Fabrikam, Inc. is a retailer that sells electronics products on the Internet. The company has a headquarters site and one satellite sales office. You have been hired as the database administrator, and the company wants you to change the

    architecture of the Fabrikam ecommerce site to optimize performance and reduce downtime while keeping capital expenditures to a minimum. To help with the solution, Fabrikam has decided to use cloud resources as well as on-premise

    servers.

    Physical Locations

    All of the corporate executives, product managers, and support staff are stationed at the headquarters office. Half of the sales force works at this location. There is also a satellite sales office. The other half of the sales force works at the

    satellite office in order to have sales people closer to clients in that area. Only sales people work at the satellite location.

    Problem Statement

    To be successful, Fabrikam needs a website that is fast and has a high degree of system uptime. The current system operates on a single server and the company is not happy with the single point of failure this presents. The current nightly

    backups have been failing due to insufficient space on the available drives and manual drive cleanup often needing to happen to get past the errors. Additional space will not be made available for backups on the HQ or satellite servers.

    During your investigation, you discover that the sales force reports are causing significant contention.

    Configuration

    Windows Logins

    The network administrators have set up Windows groups to make it easier to manage security. Users may belong to more than one group depending on their role. The groups have been set up as shown in the following table:

    Server Configuration The IT department has configured two physical servers with Microsoft Windows Server 2012 R2 and SQL Server 2014 Enterprise Edition and one Windows Azure Server. There are two tiers of storage available for use by database files only a fast tier and a slower tier. Currently the data and log files are stored on the fast tier of storage only. If a possible use case exists, management would like to utilize the slower tier storage for data files. The servers are configured as shown in the following table:

    Database

    Currently all information is stored in a single database called ProdDB, created with the following script:

    The Product table is in the Production schema owned by the ProductionStaff Windows group. It is the main table in the system so access to information in the Product table should be as fast as possible. The columns in the Product table are defined as shown in the following table:

    The SalesOrderDetail table holds the details about each sale. It is in the Sales schema owned by the SalesStaff Windows group. This table is constantly being updated, inserted into, and read. The columns in the SalesOrderDetail table are defined as shown in the following table:

    Database Issues

    The current database does not perform well. Additionally, a recent disk problem caused the system to go down, resulting in lost sales revenue. In reviewing the current system, you found that there are no automated maintenance procedures.

    The database is severely fragmented, and everyone has read and write access.

    Requirements

    Database

    The database should be configured to maximize uptime and to ensure that very little data is lost in the event of a server failure. To help with performance, the database needs to be modified so that it can support in-memory data, specifically

    for the Product table, which the CIO has indicated should be a memoryoptimized table. The auto-update statistics option is set off on this database. Only product managers are allowed to add products or to make changes to the name,

    description, price, cost, and supplier. The changes are made in an internal database and pushed to the Product table in ProdDB during system maintenance time. Product managers and others working at the headquarters location also should

    be able to generate reports that include supplier and cost information.

    Customer data access

    Customers access the company's website to order products, so they must be able to read product information such asname, description, and price from the Product table. When customers place orders, stored procedures calledby the website

    update product quantityon-hand values. This means the product table is constantly updated at randomtimes.

    Customer support data access

    Customer support representatives need to be able to view and not update or change product information. Management does not want the customer support representatives to be able to see the product cost or any supplier information.

    Sales force data access

    Sales people at both the headquarters office and the satellite office must generate reports that read from the Product and SalesOrderDetail tables. No updates or inserts are ever made by sales people. These reports are run at random times

    and there can be no reporting downtime to refresh the data set except during the monthly maintenance window. The reports that run from the satellite office are process intensive queries with large data sets. Regardless of which office runs a

    sales force report, the SalesOrderDetail table should only return valid, committed order data; any orders not yet committed should be ignored.

    Historical Data

    The system should keep historical information about customers who access the site so that sales people can see how frequently customers log in and how long they stay on the site.

    The information should be stored in a table called Customer Access. Supporting this requirement should have minimal impact on production website performance.

    Backups

    The recovery strategy for Fabrikam needs to include the ability to do point in time restores and minimize the risk of data loss by performing transaction log backups every 15 minutes.

    Database Maintenance

    The company has defined a maintenance window every month when the server can be unavailable. Any maintenance functions that require exclusive access should be accomplished during that window.

    Project milestones completed

    Revoked all existing read and write access to the database, leaving the schema ownership in place.

    Configured an Azure storage container secured with the storage account name MyStorageAccount with the primary access key StorageAccountKey on the cloud file server.

    SQL Server 2014 has been configured on the satellite server and is ready for use.

    On each database server, the fast storage has been assigned to drive letter F:, and the slow storage has been assigned to drive letter D:.

    You need to implement changes to the system to reduce contention and improve performance of the SalesOrderDetail table.

    Which three actions should you perform? Each correct answer presents part of the solution. (Choose three.)

    A. Use (SNAPSHOT] hints in the report queries
    B. ALTER DATABASE [ProdDB] SET READ_COMMITTED_SNAPSHOT ON
    C. ALTER DATABASE [ProdDB] SET READ_COMMITTED_SNAPSHOT OFF
    D. SET TRANSACTION ISOLATION LEVEL SNAPSHOT
    E. Use (TABLOCK) hints in the report queries
    F. SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
    G. ALTER DATABASE [ProdDB] SET ALLOW.SNAPSHOT ISOLATION ON H. Use (SNAPSHOT] hints in the update statements

  • Question 106:

    You administer a Microsoft SQL Server 2016 database that has multiple tables in the Sales schema.

    Some users must be prevented from deleting records in any of the tables in the Sales schema. You need to manage users who are prevented from deleting records in the Sales schema.

    You need to achieve this goal by using the minimum amount of administrative effort.

    What should you do?

    A. Create a custom database role that includes the users. Deny Delete permissions on the Sales schema for the custom database role.
    B. Include the Sales schema as an owned schema for the db_denydatawriter role. Add the users to the db_denydatawriter role.
    C. Deny Delete permissions on each table in the Sales schema for each user.
    D. Create a custom database role that includes the users. Deny Delete permissions on each table in the Sales schema for the custom database role.

  • Question 107:

    Your company stored customer data, including credit card numbers, in a Microsoft SQL Server database. The CreditCardNum column is configured as a varchar(16). When viewing the CreditCardNum column, only the last four digits of the card number should be displayed.

    You have the following Transact-SQL statement. (Line numbers are included for reference only.)

    You need to implement dynamic data masking for the CreditCardNum column. Which Transact-SQL segment should you insert at line 05?

    A. Option A
    B. Option B
    C. Option C
    D. Option D

  • Question 108:

    You have five servers that run Microsoft SQL Server. Each server hosts multiple databases. You plat to implement fault tolerance.

    You need to implement a fault tolerance solution that meets the following requirements:

    Each database must use a separate fault tolerance configuration.

    The solution must support three or more copies of each database.

    Failover of databases must be automatic.

    What should you use?

    A. Always On availability groups
    B. database mirroring
    C. transactional replication
    D. log shipping

  • Question 109:

    You have the following Microsoft SQL Server instances:

    You have a database named DB1 that is hosted on SQL1.

    Users in the branch office must be able to access DB1 from SQL3.

    You need to configure an AlwaysOn Availability Group and limit latency on the secondary server.

    Which settings should you configure?

    A. FAILOVER_MODE = AUTOMATIC
    B. AVAILABILITY MODE = SYNCHRONOUS_COMMIT
    C. FAILOVER_MODE = MANUAL
    D. AVAILABILITY MODE = ASYNCHRONOUS_COMMIT

  • Question 110:

    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.

    A company has a Microsoft SQL Server environment in Microsoft Azure. The databases are stored directly in Azure blob storage. The company uses a complex backup process.

    You need to simplify the backup process. Future restores should not require differential or multiple incremental logs to perform a restore.

    You need to design a backup solution for the SQL Server instances.

    Which option should you use?

    A. backup compression
    B. backup encryption
    C. file snapshot backup
    D. mirrored backup media sets
    E. SQL Server backup to URL
    F. SQL Server Managed Backup to Azure
    G. tail-log backup
    H. back up and truncate the transaction log

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.