Ensurepass.com : Ensure you pass the IT Exams
2018 Aug Microsoft Official New Released 70-465
100% Free Download! 100% Pass Guaranteed!
Designing Database Solutions for Microsoft SQL Server
Question No: 31 – (Topic 3)
You are designing your maintenance plan.
Which command should you use only during the monthly maintenance window?
-
DBCC INDEXDEFRAG (ProdDB, SalesOrderDetail, SODIndex)
-
ALTER INDEX SODIndex ON SalesOrderDetail REORGANIZE
-
ALTER INDEX SODIndex ON SalesOrderDetail REBUILD
-
ALTER INDEX SODIndex ON SalesOrderDetail REBUILD WITH (ONLINE * ON)
Answer: D Explanation:
Scenario: 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.
After the degree of fragmentation is known, use the following table to determine the best method to correct the fragmentation.
avg_fragmentation_in_percent value
/ gt; 5% and lt; = 30% then use
ALTER INDEX REORGANIZE
/ gt; 30%
then use
ALTER INDEX REBUILD WITH (ONLINE = ON) ALTER INDEX (Transact-SQL)
Question No: 32 – (Topic 3)
You need to implement a backup strategy to support the requirements.
Which two actions should you perform? Each correct answer presents part of the solution. Choose two.
-
Create a credential called MyCredential on SQL Server by using a Windows domain account and password.
-
Schedule a full backup by using the command BACKUP DATABASE ProdDB TO DISK…
-
Create a share on your Windows Azure site by using your Windows Azure storage account information, and grant permission to the SQL Server service login.
-
Schedule a full backup by using the command BACKUP DATABASE ProdDB TO URL
… WTTH CREDENTIAL=N#39;MyCredential#39;
-
Create a share on the hot standby site and grant permission to the SQL Server service login.
-
Create a credential called MyCredential on SQL Server, using MyStorageAccount for the storage account name and StorageAccountKey for the access key.
-
Schedule a full backup by using the command BACKUP DATABASE ProdDB TO SHARE … WITH CREDENTIAL=N#39; MyCredential#39;
Answer: C,D Explanation:
Scenario: 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.
Need to store files in the cloud.
Manage your backups to Windows Azure: Using the same methods used to backup to DISK and TAPE, you can now back up to Windows Azure storage by Specifying URL as the backup destination. You can use this feature to manually backup or configure your own
backup strategy like you would for a local storage or other off-site options. This feature is also referred to as SQL Server Backup to URL.
Reference: SQL Server Managed Backup to Windows Azure
Question No: 33 – (Topic 3)
You need to recommend a solution to back up DB1. What should you include in the recommendation?
-
Azure Table Storage
-
Azure Queue storage
-
Azure Blob storage
-
Azure Document DB
Answer: C
Explanation: For SQL Server the Azure Blob Storage service offers a better alternative to the often used tape option to archive backups. Tape storage might require physical transportation to an off-site facility and measures to protect the media. Storing your backups in Azure Blob Storage provides an instant, highly available, and a durable archiving option.
Reference: How to Use Azure Storage for SQL Server Backup and Restore
https://azure.microsoft.com/en-us/documentation/articles/storage-use-storage-sql-server- backup-restore/
Question No: 34 DRAG DROP – (Topic 3)
The business requires a satellite office to have a local copy of the data to report against. You want to implement a solution to support the requirements. You need to establish a new
Availability Group between the two servers.
Develop the solution by selecting and arranging the required code blocks in the correct order. You may not need all of the code blocks.
Answer:
Explanation:
Box 1:
Box 2:
Box 3:
Box 4:
Box 5:
Box 6:
Box 7:
Note:
-
The following table lists the basic tasks involved in creating and configuring an availability group and indicates which Transact-SQL statements to use for these tasks. The AlwaysOn Availability Groups tasks must be performed in the sequence in which they are presented in the table.
(step 2) Create database mirroring endpoint (once per SQL Server instance) CREATE ENDPOINT endpointName … FOR DATABASE_MIRRORING
(step 3) Create availability group CREATE AVAILABILITY GROUP
(step 4) Join secondary replica to availability group ALTER AVAILABILITY GROUP group_name JOIN
(step 5-6)
Prepare the secondary database BACKUP and RESTORE.
Create backups on the server instance that hosts the primary replica.
Restore backups on each server instance that hosts a secondary replica, using RESTORE WITH NORECOVERY.
(step 7)
Start data synchronization by joining each secondary database to availability group ALTER DATABASE database_name SET HADR AVAILABILITY GROUP = group_name
Topic 4, A.Datum Overview
General Overview
A. Datum 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 a 5-ms latency.
A. Datum standardizes its database platform by using SQL Server 2014 Standard 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 used mainly for reports. The database is recreated every day. 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 a table in the Products database and searches for information in Table1 based on input from the Products table. After the process is complete, Table1 is deleted.
A stored procedure named USP_2 is used to generate a product list. USP_2 takes several minutes to run due to locks on the tables the procedure accesses.
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 continues to execute.
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.
A stored procedure named USP_5 changes data in multiple databases. Security checks are performed each time USP_5 accesses a database.
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 Point Objective (RPO) of one hour.
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 view the server state of the SQL Server instance that hosts 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
A. Datum 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.
Question No: 35 – (Topic 4)
You need to recommend a change to USP_3 to ensure that the procedure continues to execute even if one of the UPDATE statements fails.
Which change should you recommend?
-
Set the XACT_ABORT option to off.
-
Set the XACT_ABORT option to on.
-
Set the IMPLICIT_TRANSACTIONS option to off.
-
Set the IMPLICIT_TRANSACTIONS option to on.
Answer: A Explanation:
-
-
Scenario: 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 continues to execute.
-
When SET XACT_ABORT is OFF, in some cases only the Transact-SQL statement that raised the error is rolled back and the transaction continues processing.
Reference: http://msdn.microsoft.com/en-us/library/ms188792.aspx
Question No: 36 – (Topic 4)
You need to recommend a disaster recovery solution for the Dev database. What should you include in the recommendation?
-
The simple recovery model and full backups
-
The bulk-logged recovery model and full backups
-
The full recovery model, full backups, and differential backups
-
The full recovery model, full backups, and transaction log backups
Answer: A Explanation:
-
-
Scenario: 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.
-
The simple recovery model provides the simplest form of backup and restore. This recovery model supports both database backups and file backups, but does not support log backups. Transaction log data is backed up only with the associated user data. The absence of log backups simplifies managing backup and restore. However, a database can be restored only to the end of the most recent backup.
Incorrect:
Not B: The bulk-logged recovery model is a special-purpose recovery model that should be used only intermittently to improve the performance of certain large-scale bulk operations, such as bulk imports of large amounts of data.
Reference: Recovery Models (SQL Server)
Question No: 37 – (Topic 4)
You need to recommend a solution to meet the security requirements of the junior database administrators.
What should you include in the recommendation?
-
A server role
-
A database role
-
A credential
-
A shared login
Answer: C Explanation:
-
-
Scenario: A group of junior database administrators must be able to view the server state of the SQL Server instance that hosts the Sales database. The junior database administrators will not have any other administrative rights.
-
Credentials provide a way to allow SQL Server Authentication users to have an identity outside of SQL Server. Credentials can also be used when a SQL Server Authentication user needs access to a domain resource, such as a file location to store a backup.
Reference: Create a Credential
Question No: 38 – (Topic 4)
You need to recommend a solution to ensure that USP_4 adheres to the security requirements.
What should you include in the recommendation?
-
Enable SQL Server Audit.
-
Enable trace flags.
-
Configure data manipulation language (DML) triggers.
-
Enable C2 audit tracing.
Answer: A Explanation:
-
-
Scenario: 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.
-
Beginning in SQL Server 2008 Enterprise, you can set up automatic auditing by using SQL Server Audit.
Reference: SQL Server Audit (Database Engine)
Question No: 39 – (Topic 4)
You need to recommend a solution to minimize the amount of time it takes to execute USP_2.
What should you recommend?
-
A database snapshot
-
A table variable
-
A temporary table
-
Snapshot isolation
Answer: C Explanation:
Scenario: A stored procedure named USP_2 is used to generate a product list. USP_2 takes several minutes to run due to locks on the tables the procedure accesses.
Reference: CREATE TABLE (SQL Server)
Question No: 40 – (Topic 4)
You need to recommend a solution to minimize the amount of time it takes to execute USP_1.
With what should you recommend replacing Table1?
-
A view
-
A temporary table
-
A table variable
-
A function
Answer: A Explanation:
-
-
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. CREATE TABLE (SQL Server)
100% Ensurepass Free Download!
–70-465 PDF
100% Ensurepass Free Guaranteed!
–70-465 DumpsEnsurePass ExamCollection Testking Lowest Price Guarantee Yes No No Up-to-Dated Yes No No Real Questions Yes No No Explanation Yes No No PDF VCE Yes No No Free VCE Simulator Yes No No Instant Download Yes No No