Download Provisioning SQL Databases.70-765.PracticeTest.2018-07-27.99q.tqb

Vendor: Microsoft
Exam Code: 70-765
Exam Name: Provisioning SQL Databases
Date: Jul 27, 2018
File Size: 3 MB

How to open TQB files?

Files with TQB (Taurus Question Bank) extension can be opened by Taurus Exam Studio.

Demo Questions

Question 1
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets stated goals.
You manage a Microsoft SQL Server environment with several databases. 
You need to ensure that queries use statistical data and do not initialize values for local variables. 
Solution: You enable the PARAMETER_SNIFFING option for the databases.
Does the solution meet the goal?
  1. Yes
  2. No
Correct answer: A
Explanation:
PARAMETER_SNIFFING = { ON | OFF | PRIMARY} enables or disables parameter sniffing. This is equivalent to Trace Flag 4136. SQL server uses a process called parameter sniffing when executing queries or stored procedures that use parameters. During compilation, the value passed into the parameter is evaluated and used to create an execution plan. That value is also stored with the execution plan in the plan cache. Future executions of the plan will re-use the plan that was compiled with that reference value. References: https://msdn.microsoft.com/en-us/library/mt629158.aspx
PARAMETER_SNIFFING = { ON | OFF | PRIMARY} enables or disables parameter sniffing. This is equivalent to Trace Flag 4136. 
SQL server uses a process called parameter sniffing when executing queries or stored procedures that use parameters. During compilation, the value passed into the parameter is evaluated and used to create an execution plan. That value is also stored with the execution plan in the plan cache. Future executions of the plan will re-use the plan that was compiled with that reference value. 
References: https://msdn.microsoft.com/en-us/library/mt629158.aspx
Question 2
You manage a Microsoft SQL Server environment in a Microsoft Azure virtual machine. 
You must enable Always Encrypted for columns in a database. 
You need to configure the key store provider. 
What should you do?
  1. Manually specify the column master key.
  2. Modify the connection string for applications.
  3. Auto-generate a column master key.
  4. Use the Windows certificate store.
Correct answer: D
Explanation:
Always Encrypted supports multiple key stores for storing Always Encrypted column master keys. A column master key can be a certificate stored in Windows Certificate Store. References: https://msdn.microsoft.com/en-us/library/mt723359.aspx
Always Encrypted supports multiple key stores for storing Always Encrypted column master keys. A column master key can be a certificate stored in Windows Certificate Store. 
References: https://msdn.microsoft.com/en-us/library/mt723359.aspx
Question 3
You plan to deploy 20 Microsoft Azure SQL Database instances to an elastic pool in Azure to support a batch processing application. 
Two of the databases in the pool reach their peak workload threshold at the same time every day. This leads to inconsistent performance for batch completion. 
You need to ensure that all batches perform consistently. 
What should you do?
  1. Create an In-Memory table.
  2. Increase the storage limit in the pool.
  3. Implement a readable secondary database.
  4. Increase the total number of elastic Database Transaction Units (eDTUs) in the pool.
Correct answer: D
Explanation:
In SQL Database, the relative measure of a database's ability to handle resource demands is expressed in Database Transaction Units (DTUs) for single databases and elastic DTUs (eDTUs) for databases in an elastic pool. A pool is given a set number of eDTUs, for a set price. Within the pool, individual databases are given the flexibility to auto-scale within set parameters. Under heavy load, a database can consume more eDTUs to meet demand. Additional eDTUs can be added to an existing pool with no database downtime. References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-elastic-pool
In SQL Database, the relative measure of a database's ability to handle resource demands is expressed in Database Transaction Units (DTUs) for single databases and elastic DTUs (eDTUs) for databases in an elastic pool. 
A pool is given a set number of eDTUs, for a set price. Within the pool, individual databases are given the flexibility to auto-scale within set parameters. Under heavy load, a database can consume more eDTUs to meet demand. 
Additional eDTUs can be added to an existing pool with no database downtime. 
References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-elastic-pool
Question 4
Note: This questions 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 manage on-premises and Microsoft Azure SQL Database instances for a company. Your environment must support the Microsoft SQL Server 2012 ODBS driver. 
You need to encrypt only specific columns in the database. 
What should you implement?
  1. transport-level encryption
  2. cell-level encryption
  3. Transparent Data Encryption
  4. Always Encrypted
  5. Encrypting File System
  6. BitLocker
  7. dynamic data masking
Correct answer: D
Explanation:
To encrypt columns you can configure Always Encrypted. SQL Server Management Studio (SSMS) provides a wizard that helps you easily configure Always Encrypted by setting up the column master key, column encryption key, and encrypted columns for you. Always Encrypted allows client applications to encrypt sensitive data and never reveal the data or the encryption keys to SQL Server or Azure SQL Database. An Always Encrypted enabled driver, such as the ODBC Driver 13.1 for SQL Server, achieves this by transparently encrypting and decrypting sensitive data in the client application. Note: The ODBC driver automatically determines which query parameters correspond to sensitive database columns (protected using Always Encrypted), and encrypts the values of those parameters before passing the data to SQL Server or Azure SQL Database. Similarly, the driver transparently decrypts data retrieved from encrypted database columns in query results.References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-always-encrypted-azure-key-vault#encrypt-columns-configure-always-encryptedhttps://msdn.microsoft.com/en-us/library/mt637351(v=sql.110).aspx
To encrypt columns you can configure Always Encrypted. 
SQL Server Management Studio (SSMS) provides a wizard that helps you easily configure Always Encrypted by setting up the column master key, column encryption key, and encrypted columns for you. 
Always Encrypted allows client applications to encrypt sensitive data and never reveal the data or the encryption keys to SQL Server or Azure SQL Database. An Always Encrypted enabled driver, such as the ODBC Driver 13.1 for SQL Server, achieves this by transparently encrypting and decrypting sensitive data in the client application. 
Note: The ODBC driver automatically determines which query parameters correspond to sensitive database columns (protected using Always Encrypted), and encrypts the values of those parameters before passing the data to SQL Server or Azure SQL Database. Similarly, the driver transparently decrypts data retrieved from encrypted database columns in query results.
References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-always-encrypted-azure-key-vault#encrypt-columns-configure-always-encrypted
https://msdn.microsoft.com/en-us/library/mt637351(v=sql.110).aspx
Question 5
Note: This questions 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.
Your company has several Microsoft Azure SQL Database instances. 
Data encryption should be allowed to be implemented by the client applications that access the data. Encryption keys should not be made available to the database engine. 
You need to configure the database. 
What should you implement?
  1. transport-level encryption
  2. cell-level encryption
  3. Transparent Data Encryption
  4. Always Encrypted
  5. Encrypting File System
  6. BitLocker
  7. dynamic data masking
Correct answer: A
Explanation:
Using encryption during transit with Azure File Shares Azure File Storage supports HTTPS when using the REST API, but is more commonly used as an SMB file share attached to a VM. HTTPS is a transport-level security protocol. Incorrect Answers:C: TDE encrypts the storage of an entire database by using a symmetric key called the database encryption key. In SQL Database the database encryption key is protected by a built-in server certificate.References: https://docs.microsoft.com/en-us/azure/storage/storage-security-guide#encryption-in-transit
Using encryption during transit with Azure File Shares 
Azure File Storage supports HTTPS when using the REST API, but is more commonly used as an SMB file share attached to a VM. 
HTTPS is a transport-level security protocol. 
Incorrect Answers:
C: TDE encrypts the storage of an entire database by using a symmetric key called the database encryption key. In SQL Database the database encryption key is protected by a built-in server certificate.
References: https://docs.microsoft.com/en-us/azure/storage/storage-security-guide#encryption-in-transit
Question 6
You are deploying a Microsoft SQL Server database that will support a mixed OLTP and OLAP workload. The target virtual machine has four CPUs. 
You need to ensure that reports do not use all available system resources. 
What should you do?
  1. Increase the default database file auto growth sizes.
  2. Increase the value for the Minimum System Memory setting.
  3. Set MAXDOP to half the number of CPUs available.
  4. Increase the value for the Minimum Memory per query setting.
Correct answer: C
Explanation:
When an instance of SQL Server runs on a computer that has more than one microprocessor or CPU, it detects the best degree of parallelism, that is, the number of processors employed to run a single statement, for each parallel plan execution. You can use the max degree of parallelism option to limit the number of processors to use in parallel plan execution. Incorrect Answers:A: The Auto Close property exposes server behavior for databases not accessed by a user. This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.References: https://msdn.microsoft.com/en-us/library/ms189094.aspx
When an instance of SQL Server runs on a computer that has more than one microprocessor or CPU, it detects the best degree of parallelism, that is, the number of processors employed to run a single statement, for each parallel plan execution. You can use the max degree of parallelism option to limit the number of processors to use in parallel plan execution. 
Incorrect Answers:
A: The Auto Close property exposes server behavior for databases not accessed by a user. This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
References: https://msdn.microsoft.com/en-us/library/ms189094.aspx
Question 7
A company has an on-premises Microsoft SQL Server 2014 environment. The company has a main office in Seattle, and remote offices in Amsterdam and Tokyo. You plan to deploy a Microsoft Azure SQL Database instance to support a new application. You expect to have 100 users from each office. 
In the past, users at remote sites reported issues when they used applications hosted at the Seattle office. 
You need to optimize performance for users running reports while minimizing costs. 
What should you do?
  1. Implement an elastic pool.
  2. Implement a standard database with readable secondaries in Asia and Europe, and then migrate the application.
  3. Implement replication from an on-premises SQL Server database to the Azure SQL Database instance.
  4. Deploy a database from the Premium service tier.
Correct answer: B
Explanation:
References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-geo-replication-transact-sql#add-secondary-database
References: https://docs.microsoft.com/en-us/azure/sql-database/sql-database-geo-replication-transact-sql#add-secondary-database
Question 8
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets stated goals.
You have a mission-critical application that stores data in a Microsoft SQL Server instance. The application runs several financial reports. The reports use a SQL Server-authenticated login named Reporting_User. All queries that write data to the database use Windows authentication. 
Users report that the queries used to provide data for the financial reports take a long time to complete. The queries consume the majority of CPU and memory resources on the database server. As a result, read-write queries for the application also take a long time to complete. 
You need to improve performance of the application while still allowing the report queries to finish. 
Solution: You create a snapshot of the database. You configure all report queries to use the database snapshot.
Does the solution meet the goal?
  1. Yes
  2. No
Correct answer: B
Explanation:
Use a Resource Governor instead. References: https://msdn.microsoft.com/en-us/library/bb933866.aspx
Use a Resource Governor instead. 
References: https://msdn.microsoft.com/en-us/library/bb933866.aspx
Question 9
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution. Determine whether the solution meets stated goals.
You have a mission-critical application that stores data in a Microsoft SQL Server instance. The application runs several financial reports. The reports use a SQL Server-authenticated login named Reporting_User. All queries that write data to the database use Windows authentication. 
Users report that the queries used to provide data for the financial reports take a long time to complete. The queries consume the majority of CPU and memory resources on the database server. As a result, read-write queries for the application also take a long time to complete. 
You need to improve performance of the application while still allowing the report queries to finish. 
Solution: You configure the Resource Governor to limit the amount of memory, CPU, and IOPS used for the pool of all queries that the Reporting_user login can run concurrently.
Does the solution meet the goal?
  1. Yes
  2. No
Correct answer: A
Explanation:
SQL Server Resource Governor is a feature than you can use to manage SQL Server workload and system resource consumption. Resource Governor enables you to specify limits on the amount of CPU, physical IO, and memory that incoming application requests can use. References: https://msdn.microsoft.com/en-us/library/bb933866.aspx
SQL Server Resource Governor is a feature than you can use to manage SQL Server workload and system resource consumption. Resource Governor enables you to specify limits on the amount of CPU, physical IO, and memory that incoming application requests can use. 
References: https://msdn.microsoft.com/en-us/library/bb933866.aspx
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. Determine whether the solution meets stated goals.
You have a mission-critical application that stores data in a Microsoft SQL Server instance. The application runs several financial reports. The reports use a SQL Server-authenticated login named Reporting_User. All queries that write data to the database use Windows authentication. 
Users report that the queries used to provide data for the financial reports take a long time to complete. The queries consume the majority of CPU and memory resources on the database server. As a result, read-write queries for the application also take a long time to complete. 
You need to improve performance of the application while still allowing the report queries to finish. 
Solution: You configure the Resource Governor to set the MAXDOP parameter to 0 for all queries against the database.
Does the solution meet the goal?
  1. Yes
  2. No
Correct answer: B
Explanation:
SQL Server will consider parallel execution plans for queries, index data definition language (DDL) operations, and static and keyset-driven cursor population. You can override the max degree of parallelism value in queries by specifying the MAXDOP query hint in the query statement. References: https://technet.microsoft.com/en-us/library/ms181007(v=sql.105).aspx
SQL Server will consider parallel execution plans for queries, index data definition language (DDL) operations, and static and keyset-driven cursor population. 
You can override the max degree of parallelism value in queries by specifying the MAXDOP query hint in the query statement. 
References: https://technet.microsoft.com/en-us/library/ms181007(v=sql.105).aspx
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

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

Get Now!