Download Administering a SQL Database Infrastructure.70-764.PrepAway.2021-03-18.443q.vcex

Vendor: Microsoft
Exam Code: 70-764
Exam Name: Administering a SQL Database Infrastructure
Date: Mar 18, 2021
File Size: 19 MB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
You manage a SQL Server 2014 instance that contains a database named DB1. 
Users report that some queries to DB1 take longer than expected. 
Although most queries run in less than one second, some queries take up to 20 seconds to run. You need to view all of the performance statistics for each database file. 
Which method should you use?
  1. Query the sys.dm_os_tasks dynamic management view.
  2. Query the sys.dm_os_performance_counters dynamic management view.
  3. Query the sys.dm_io_virtual_file_stats dynamic management function.
  4. Examine the Data File I/O pane in Activity Monitor.
Correct answer: C
Explanation:
sys.dm_io_virtual_file_stats Returns I/O statistics for data and log files.
sys.dm_io_virtual_file_stats Returns I/O statistics for data and log files.
Question 2
You are creating a database that will store usernames and credit card numbers for an application. You need to recommend a solution to store and reuse the credit card numbers in the database.  
What should you recommend? More than one answer choice may achieve the goal. Select the BEST answer.
  1. Data encryption
  2. Transparent Data Encryption (TDE)
  3. Encrypting File System (EFS)
  4. Data hashing
Correct answer: A
Explanation:
If we are going to encrypt credit card number for storage, then we should have Data Encryption Key(DEK) for encrypting the credit card number.
If we are going to encrypt credit card number for storage, then we should have Data Encryption Key(DEK) for encrypting the credit card number.
Question 3
You need to recommend an isolation level for usp_UpdateOrderDetails. 
Which isolation level should recommend?
  1. Read committed
  2. Repeatable read
  3. Read uncommitted
  4. Serializable
Correct answer: B
Explanation:
- Scenario: Databasel will also contain a stored procedure named usp_UpdateOrderDetails.  The stored procedure is used to update order information. The stored procedure queries the Orders table twice each time the procedure executes.  The rows returned from the first query must be returned on the second query unchanged along with any rows added to the table between the two read operations. - REPEATABLE READ Specifies that statements cannot read data that has been modified but not yet committed by other transactions and that no other transactions can modify data that has been read by the current transaction until the current transaction completes.
- Scenario: Databasel will also contain a stored procedure named usp_UpdateOrderDetails.  The stored procedure is used to update order information. The stored procedure queries the Orders table twice each time the procedure executes.  The rows returned from the first query must be returned on the second query unchanged along with any rows added to the table between the two read operations. 
- REPEATABLE READ Specifies that statements cannot read data that has been modified but not yet committed by other transactions and that no other transactions can modify data that has been read by the current transaction until the current transaction completes.
Question 4
You need to recommend a solution for the deployment of SQL Server 2014.  The solution must meet the 
business requirements. What should you include in the recommendation?
  1. Create a new instance of SQL Server 2014 on the server that hosts the SQL Server 2008 instance.
  2. Upgrade the existing SQL Server 2008 instance to SQL Server 2014.
  3. Deploy two servers that have SQL Server 2014 installed and implement Failover Clustering.
  4. Deploy two servers that have SQL Server 2014 installed and implement database mirroring.
Correct answer: C
Explanation:
Scenario: The databases must be available if the SQL Server service fails.
Scenario: The databases must be available if the SQL Server service fails.
Question 5
You need to recommend a solution to improve the performance of usp.UpdateInventory. 
The solution must minimize the amount of development effort. What should you include in the recommendation?
  1. A table variable
  2. A common table expression
  3. A subquery
  4. A cursor
Correct answer: A
Explanation:
- Scenario: Database2 will contain a stored procedure named usp_UpdateInventory. Usp_UpdateInventory will manipulate a table that contains a self-join that has an unlimited number of hierarchies. - A table variable can be very useful to store temporary data and return the data in the table format. - Example: The following example uses a self-join to find the products that are supplied by more than one vendor. Because this query involves a join of the ProductVendor table with itself, the ProductVendor table appears in two roles. To distinguish these roles, you must give the ProductVendor table two different aliases (pv1 and pv2) in the FROM clause.  These aliases are used to qualify the column names in the rest of the query. This is an example of the self-join Transact-SQL statement:           Incorrect Answers:B: Using a CTE offers the advantages of improved readability and ease in maintenance of complex queries.The query can be divided into separate, simple, logical building blocks.  These simple blocks can then be used to build more complex, interim CTEs until the final result set is generated
- Scenario: Database2 will contain a stored procedure named usp_UpdateInventory. Usp_UpdateInventory will manipulate a table that contains a self-join that has an unlimited number of hierarchies. 
- A table variable can be very useful to store temporary data and return the data in the table format. 
- Example: The following example uses a self-join to find the products that are supplied by more than one vendor. Because this query involves a join of the ProductVendor table with itself, the ProductVendor table appears in two roles. To distinguish these roles, you must give the ProductVendor table two different aliases (pv1 and pv2) in the FROM clause.  These aliases are used to qualify the column names in the rest of the query. This is an example of the self-join Transact-SQL statement:
         
Incorrect Answers:
B: Using a CTE offers the advantages of improved readability and ease in maintenance of complex queries.
The query can be divided into separate, simple, logical building blocks.  These simple blocks can then be used to build more complex, interim CTEs until the final result set is generated
Question 6
You need to recommend a disk monitoring solution that meets the business requirements. 
What should you include in the recommendation?
  1. a SQL Server Agent alert
  2. a dynamic management view
  3. a maintenance plan
  4. an audit
Correct answer: B
Explanation:
Dynamic Management Views and Functions (Transact-SQL)
Dynamic Management Views and Functions (Transact-SQL)
Question 7
You need to recommend a solution for Application1 that meets the security requirements.  What should you include in the recommendation?
  1. Encrypted columns
  2. Certificate Authentication
  3. Secure Socket Layer (SSL)
  4. Signed stored procedures
Correct answer: D
Explanation:
- Scenario:- Data from Database2 will be accessed periodically by an external application named Application1 - Application developers must be denied direct access to the database tables.  Applications must be denied direct access to the tables. Tutorial: Signing Stored Procedures with a Certificate
- Scenario:
- Data from Database2 will be accessed periodically by an external application named Application1 
- Application developers must be denied direct access to the database tables.  Applications must be denied 
direct access to the tables. 
Tutorial: Signing Stored Procedures with a Certificate
Question 8
You need to recommend a feature to support your backup solution. What should you include in the recommendation?
  1. Transparent Data Encryption (TDE)
  2. Column-level encryption
  3. An NTFS file permission
  4. A Secure Sockets Layer (SSL)
Correct answer: A
Explanation:
- Scenario: You must encrypt the backup files to meet regulatory compliance requirements.  The encryptionstrategy must minimize changes to the databases and to the applications. - Transparent data encryption (TDE) performs real-time I/O encryption and decryption of the data and log files. The encryption uses a database encryption key (DEK), which is stored in the database boot record for availability during recovery. Transparent Data Encryption (TDE)
- Scenario: You must encrypt the backup files to meet regulatory compliance requirements.  The encryption
strategy must minimize changes to the databases and to the applications. 
- Transparent data encryption (TDE) performs real-time I/O encryption and decryption of the data and log 
files. The encryption uses a database encryption key (DEK), which is stored in the database boot record for 
availability during recovery. 
Transparent Data Encryption (TDE)
Question 9
You need to recommend a solution to allow application users to perform UPDATE operations on the database tables.  The solution must meet the business requirements. 
What should you recommend?
  1. Create stored procedures that use EXECUTE AS clauses.
  2. Create a user-defined database role and add users to the role.
  3. Create functions that use EXECUTE AS clauses.
  4. Create a Policy-Based Management Policy.
Correct answer: A
Explanation:
- EXECUTE AS Clause (Transact-SQL) In SQL Server you can define the execution context of the following user-defined modules: functions (exceptinline table-valued functions), procedures, queues, and triggers.
- EXECUTE AS Clause (Transact-SQL) 
In SQL Server you can define the execution context of the following user-defined modules: functions (except
inline table-valued functions), procedures, queues, and triggers.
Question 10
You need to recommend a database reporting solution that meets the business requirements. 
What should you include in the recommendation?
  1. Data collection
  2. Performance Monitor
  3. A maintenance plan
  4. A dynamic management view
Correct answer: A
Explanation:
1. Scenario: System administrators must be able to run real-time reports on disk usage.2. The data collector provides an historical report for each of the System Data collection sets.  Each of the following reports use data that is stored in the management data warehouse:Disk Usage Summary Query Statistics History Server Activity History You can use these reports to obtain information for monitoring system capacity and troubleshooting system performance.
1. Scenario: System administrators must be able to run real-time reports on disk usage.
2. The data collector provides an historical report for each of the System Data collection sets.  Each of the 
following reports use data that is stored in the management data warehouse:
Disk Usage Summary 
Query Statistics History 
Server Activity History 
You can use these reports to obtain information for monitoring system capacity and troubleshooting system 
performance.
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!