This page was exported from Braindump2go Free Exam Dumps with PDF and VCE Collection [ https://www.mcitpdump.com ] Export date:Fri Apr 19 14:51:05 2024 / +0000 GMT ___________________________________________________ Title: Braindump2go Microsoft 70-458 Practice Tests Latest Questions Free Share (51-60) --------------------------------------------------- Braindump2go New Published Microsoft 70-458 Dumps PDF Contanins the latest questions from Microsoft Exam Center! 100% Certification got guaranteed! Vendor: MicrosoftExam Code: 70-458Exam Name: Transition Your MCTS on SQL Server 2008 to MCSA: SQL Server 2012, Part 2 Exam QUESTION 51Drag and Drop QuestionYou administer three Microsoft SQL Server 2008 R2 instances. Database mirroring is configured in High-Safety mode with Automatic Failover between the following three servers:- SQL1 is the Principal server.- SQL2 is the mirror server.- SQL3 is the witness server.You need to upgrade SQL1 and SQL2 to SQL Server 2012. You need to ensure that downtime is minimized during the upgrade. Which six 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.) Answer: QUESTION 52You administer a Microsoft SQL Server 2012 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 need to ensure that the minimum amount of data is lost. Which recovery model should the database use? A.    FULLB.    DBO_ONLYC.    CONTINUE_AFTER_ERRORD.    CHECKSUME.    NO_CHECKSUMF.    SIMPLEG.    Transaction logH.    SKIPI.    RESTARTJ.    COPY_ONLYK.    NORECOVERYL.    BULK_LOGGEDM.    DifferentialN.    STANDBY Answer: AExplanation:This seems to be a trick question. In order to minimize the amount of data loss, we use Full recovery model. BulkLogged model has the potential for some data loss. According to this logic (and the below reference), this answer looks correct.http://msdn.microsoft.com/en-us/library/ms189275.aspx QUESTION 53You administer a SQL Server 2012 server that contains a database named SalesDb. SalesDb contains a schema named Customers that has a table named Regions. A user named UserA is a member of a role named Sales. UserA is granted the Select permission on the Regions table. The Sales role is granted the Select permission on the Customers schema. You need to ensure that UserA is disallowed to select from any of the tables in the Customers schema. Which Transact-SQL statement should you use? A.    DENY SELECT ON Object::Regions FROM UserAB.    DENY SELECT ON Object::Regions FROM SalesC.    REVOKE SELECT ON Schema::Customers FROM SalesD.    REVOKE SELECT ON Schema::Customers FROM UserAE.    REVOKE SELECT ON Object::Regions FROM SalesF.    REVOKE SELECT ON Object::Regions FROM UserAG.    DENY SELECT ON Schema::Customers FROM SalesH.    DENY SELECT ON Schema::Customers FROM UserAI.    EXEC sp_addrolemember 'Sales', 'UserA'J.    EXEC sp droprolemember 'Sales', 'UserA' Answer: HExplanation:http://msdn.microsoft.com/en-us/library/ms188369.aspxhttp://msdn.microsoft.com/en-us/library/ms187750.aspx http://msdn.microsoft.com/en-us/library/ff848791.aspx QUESTION 54Drag and Drop QuestionYou administer two Microsoft SQL Server 2012 servers named ServerA and ServerB. You use a database named AdventureWorks. You need to prepare the AdventureWorks database for database mirroring. ServerB will act as the mirror in a mirroring partnership along with ServerA. 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.) Answer: Explanation:http://msdn.microsoft.com/en-us/library/ms190941.aspx http://msdn.microsoft.com/en-us/library/ms189852.aspx QUESTION 55You administer a Microsoft SQL Server 2012 database named ContosoDb. The database contains a table named Suppliers and a column named IsActive in the Purchases schema. You create a new user named ContosoUser in ContosoDb. ContosoUser has no permissions to the Suppliers table. You need to ensure that ContosoUser can delete rows that are not active from Suppliers. You also need to grant ContosoUser only the minimum required permissions. Which Transact-SQL statement should you use? A.    GRANT DELETE ON Purchases.Suppliers TO Contoso UserB.    CREATE PROCEDURE Purchases.PurgeInactiveSuppliersWITH EXECUTE AS USER = 'dbo'ASDELETE FROM Purchases.Suppliers WHERE IsActive = 0GOGRANT EXECUTE ON Purchases.PurgelnactiveSuppliers TO ContosoUserC.    GRANT SELECT ON Purchases.Suppliers TO ContosoUserD.    CREATE PROCEDURE Purchases.PurgeInactiveSuppliersASDELETE FROM Purchases.Suppliers WHERE IsActive = 0GOGRANT EXECUTE ON Purchases.PurgeInactiveSuppliers TO ContosoUser Answer: BExplanation:http://msdn.microsoft.com/en-us/library/ms188354.aspx http://msdn.microsoft.com/en-us/library/ms187926.aspx QUESTION 56You administer a Microsoft SQL Server 2012 database that contains a table named OrderDetail. You discover that the NCI_OrderDetail_CustomerID non-clustered index is fragmented. You need to reduce fragmentation. You need to achieve this goal without taking the index offline. Which Transact-SQL batch should you use? A.    CREATE INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID WITH DROP EXISTINGB.    ALTER INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID REORGANIZEC.    ALTER INDEX ALL ON OrderDetail REBUILDD.    ALTER INDEX NCI_OrderDetail_CustomerID ON OrderDetail.CustomerID REBUILD Answer: BExplanation:http://msdn.microsoft.com/en-us/library/ms188388.aspx QUESTION 57You administer all the deployments of Microsoft SQL Server 2012 in your company. You need to ensure that an OLTP database that uses a storage area network (SAN) remains available if any of the servers fail. You also need to minimize the amount of storage used by the database. Which configuration should you use? A.    Two servers configured in different data centersSQL Server Availability Group configured in Synchronous-Commit Availability Mode One server configured as an Active SecondaryB.    SQL Server that includes an application database configured to perform transactional replicationC.    Two servers configured in the same data centerSQL Server Availability Group configured in Asynchronous-Commit Availability Mode One server configured as an Active SecondaryD.    Two servers configured in different data centersSQL Server Availability Group configured in Asynchronous-Commit Availability ModeE.    Two servers configured in the same data centerA primary server configured to perform log-shipping every 10 minutes A backup server configured as a warm standbyF.    Two servers configured on the same subnetSQL Server Availability Group configured in Synchronous-Commit Availability ModeG.    SQL Server that includes an application database configured to perform snapshot replicationH.    Two servers configured in a Windows Failover Cluster in the same data center SQL Server configured as a clustered instance Answer: HExplanation:http://msdn.microsoft.com/en-us/library/ff650328.aspx http://msdn.microsoft.com/en-us/library/ms189134http://msdn.microsoft.com/en-us/library/hh750283.aspx http://msdn.microsoft.com/en-us/library/ff878716.aspx QUESTION 58You administer all the deployments of Microsoft SQL Server 2012 in your company. A database contains a large product catalog that is updated periodically. You need to be able to send the entire product catalog to all branch offices on a monthly basis. Which configuration should you use? A.    Two servers configured in the same data centerA primary server configured to perform log-shipping every 10 minutes A backup server configured as a warm standbyB.    Two servers configured in the same data centerSQL Server Availability Group configured in Asynchronous-Commit Availability Mode One server configured as an Active SecondaryC.    SQL Server that includes an application database configured to perform snapshot replicationD.    Two servers configured in different data centersSQL Server Availability Group configured in Synchronous-Commit Availability Mode One server configured as an Active SecondaryE.    Two servers configured on the same subnetSQL Server Availability Group configured in Synchronous-Commit Availability ModeF.    Two servers configured in different data centersSQL Server Availability Group configured in Asynchronous-Commit Availability ModeG.    SQL Server that includes an application database configured to perform transactional replicationH.    Two servers configured in a Windows Failover Cluster in the same data center SQL Server configured as a clustered instance Answer: CExplanation:http://msdn.microsoft.com/en-us/library/ms151832.aspx QUESTION 59You administer all the deployments of Microsoft SQL Server 2012 in your company. You need to ensure that data changes are sent to a non-SQL Server database server in near real time. You also need to ensure that data on the primary server is unaffected. Which configuration should you use? A.    SQL Server that includes an application database configured to perform transactional replicationB.    Two servers configured in different data centersSQL Server Availability Group configured in Asynchronous-Commit Availability ModeC.    Two servers configured in different data centersSQL Server Availability Group configured in Synchronous-Commit Availability Mode One server configured as an Active SecondaryD.    SQL Server that includes an application database configured to perform snapshot replicationE.    Two servers configured in the same data centerSQL Server Availability Group configured in Asynchronous-Commit Availability Mode One server configured as an Active SecondaryF.    Two servers configured on the same subnetSQL Server Availability Group configured in Synchronous-Commit Availability ModeG.    Two servers configured in a Windows Failover Cluster in the same data center SQL Server configured as a clustered instanceH.    Two servers configured in the same data centerA primary server configured to perform log-shipping every 10 minutes A backup server configured as a warm standby Answer: AExplanation:http://technet.microsoft.com/en-us/library/ms151738.aspx QUESTION 60You administer all the deployments of Microsoft SQL Server 2012 in your company. You need to ensure that an OLTP database that includes up-to-the-minute reporting requirements can be off- loaded from the primary database to another server. You also need to be able to add indexes to the secondary database. Which configuration should you use? A.    Two servers configured in different data centersSQL Server Availability Group configured in Synchronous-Commit Availability Mode One server configured as an Active SecondaryB.    Two servers configured in the same data centerSQL Server Availability Group configured in Asynchronous-Commit Availability Mode One server configured as an Active SecondaryC.    Two servers configured in the same data centerA primary server configured to perform log-shipping every 10 minutes A backup server configured as a warm standbyD.    Two servers configured in different data centersSQL Server Availability Group configured in Asynchronous-Commit Availability ModeE.    Two servers configured on the same subnetSQL Server Availability Group configured in Synchronous-Commit Availability ModeF.    SQL Server that includes an application database configured to perform transactional replicationG.    SQL Server that includes an application database configured to perform snapshot replicationH.    Two servers configured in a Windows Failover Cluster in the same data center SQL Server configured as a clustered instance Answer: AExplanation:http://msdn.microsoft.com/en-us/library/ff878253.aspx Braindump2go Guarantee:Pass-Certification 70-458 offers absolute risk free investment opportunity, values your timr and money! Braindump2go latest 70-458 Real Exam Dumps - Your success in 70-458 Exam is certain! Your belief in our 70-458 Exam Dumps is further strengthened with 100% Money Back Promise from Braindump2go! http://www.braindump2go.com/70-458.html --------------------------------------------------- Images: http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/110.png http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/wps7551.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/wps938C.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/wpsCB7D.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/wpsE880.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/8e8c9d4b2db3_F4BE/15.png --------------------------------------------------- --------------------------------------------------- Post date: 2015-02-26 09:24:44 Post date GMT: 2015-02-26 09:24:44 Post modified date: 2015-02-26 09:24:44 Post modified date GMT: 2015-02-26 09:24:44 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com