web analytics

Best Lead2pass Microsoft 70-765 PDF Dumps With New Update Exam Questions:

https://www.lead2pass.com/70-765.html

QUESTION 11
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?

A.    Enable Auto Close.
B.    Increase the value for the Minimum System Memory setting.
C.     Set MAXDOP to half the number of CPUs available.
D.     Increase the value for the Minimum Memory per query setting.

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.

QUESTION 12 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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 LEGACY_CARDINALITY_ESTIMATION option for the databases.
Does the solution meet the goal?

A.    Yes
B.    No

Answer: B
Explanation:
LEGACY_CARDINALITY_ESTIMATION = { ON | OFF | PRIMARY } Enables you to set the query optimizer cardinality estimation model to the SQL Server 2012 and earlier version independent of the compatibility level of the database. This is equivalent to Trace Flag 9481.
https://msdn.microsoft.com/en-us/library/mt629158.aspx

QUESTION 13 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
Drag and Drop Question
A new Azure Active Directory security principal named [email protected] should have access to select all current and future objects in the Reporting database.
You should not grant the principal any other permissions.
You should use your Active Directory Domain Services (AD DS) account to authenticate to the Azure SQL database.
You need to create the new security principal.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
131
Answer:

132
Explanation:
Step 1:
To provision an Azure AD-based contained database user (other than the server administrator that owns the database), connect to the database (here the Reporting database) with an Azure AD identity (not with a SQL Server account) that has access to the database.
Step 2: CREATE USER … FROM EXTERNAL PROVIDER
To create an Azure AD-based contained database user (other than the server administrator that owns the database), connect to the database with an Azure AD identity, as a user with at least the ALTER ANY USER permission. Then use the following Transact-SQL syntax:
CREATE USER <Azure_AD_principal_name>
FROM EXTERNAL PROVIDER;
Step 3:
Grant the proper reading permissions.
https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication

QUESTION 14 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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?

A.    Manually specify the column master key.
B.    Modify the connection string for applications.
C.    Auto-generate a column master key.
D.    Use theWindows certificate store.

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.
https://msdn.microsoft.com/en-us/library/mt723359.aspx

QUESTION 15 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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?

A.    Create an In-Memory table.
B.    Increase the storage limit in the pool.
C.    Implement a readable secondary database.
D.    Increase the total number of elastic Database Transaction Units (eDTUs) in the pool.

Answer: D
Explanation:
In SQL Database, the relative measure of a database’s ability tohandle 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.
https://docs.microsoft.com/en-us/azure/sql-database/sql-database-elastic-pool

QUESTION 16 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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 QUERY_OPTIMIZER_HOTFIXES option for the databases.
Does the solution meet the goal?

A.    Yes
B.    No

Answer: B
Explanation:
QUERY_OPTIMIZER_HOTFIXES = { ON | OFF | PRIMARY } enables or disables query optimization hotfixes regardless of the compatibility level of the database. This is equivalent to Trace Flag 4199.
https://msdn.microsoft.com/en-us/library/mt629158.aspx

QUESTION 17 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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?

A.    transport-level encryption
B.    cell-level encryption
C.    Transparent Data Encryption
D.    Always Encrypted
E.    Encrypting File System
F.    BitLocker
G.    dynamic data masking

Answer: D
Explanation:
To encrypt columns you can configure Always Encrypted.
SQL Server Management Studio (SSMS) provides a wizard that helps you easilyconfigure 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.
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 18 70-765 Dumps,70-765 Exam Questions,70-765 New Questions,70-765 VCE,70-765 PDF
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?

A.    transport-level encryption
B.    cell-level encryption
C.    Transparent Data Encryption
D.    Always Encrypted
E.    Encrypting FileSystem
F.    BitLocker
G.    dynamic data masking

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.

70-765 dumps full version (PDF&VCE): https://www.lead2pass.com/70-765.html

Large amount of free 70-765 exam questions on Google Drive: https://drive.google.com/open?id=0B3Syig5i8gpDejczeWp0aURaSnM

You may also need:

70-761 exam dumps: https://drive.google.com/open?id=0B3Syig5i8gpDU2RSQnhzX2pIZVE

70-762 exam dumps: https://drive.google.com/open?id=0B3Syig5i8gpDMW9NcjJrQXlsMGs

70-764 exam dumps: https://drive.google.com/open?id=0B3Syig5i8gpDUjBoM0pVQnlUTlU

70-767 exam dumps: https://drive.google.com/open?id=0B3Syig5i8gpDdTF0R0taLWgxSmc

70-768 exam dumps: https://drive.google.com/open?id=0B3Syig5i8gpDZ2pRQkV6Vnc4dHc

By admin