Same Microsoft 70-457 Practice Tests Questions From Microsoft Centre 100% Pass! (166-180)

The Microsoft 70-457 Practice Exam is a very hard exam to successfully pass your exam.Here you will find Free Braindump2go Microsoft Practice Sample Exam Test Questions that will help you prepare in passing the 70-457 exam.Braindump2go Guarantees you 100% PASS exam 70-457

Vendor: Microsoft
Exam Code: 70-457
Exam Name: Transition Your MCTS on SQL Server 2008 to MCSA: SQL Server 2012, Part 1 Exam

11022 

QUESTION 166
You are migrating a database named Orders to a new server that runs Microsoft SQL Server 2012.
You attempt to add the [Corpnet\User1] login to the database.
However, you receive the following error message:
“User already exists in current database.”
You need to configure the [Corpnet\User1] login to be able to access the Orders database and retain the original permissions.
You need to achieve this goal by using the minimum required permissions.
Which Transact-SQL statement should you use?

A.    DROP USER [User1];
CREATE USER [Corpnet\User1] FOR LOGIN [Corpnet\User1];
ALTER ROLE [db_owner] ADD MEM3ER [Corpnet\User1];
B.    ALTER SERVER RCLS Isysadmin] ADD MEMBER [Corpnet\User1];
C.    ALTER USER [Corpnet\User1] WITH LOGIN [Corpnet\User1];
D.    ALTER ROLE [db owner] ADD MEMBBR [Corpnet\User1];

Answer: C
Explanation:
Http://msdn.microsoft.com/en-us/library/ms176060.aspx

QUESTION 167
You administer a Microsoft SQL Server 2012 database.
You configure Transparent Data Encryption (TDE) on the Orders database by using the following statements:

wpsEDC3.tmp_thumb

You attempt to restore the Orders database and the restore fails.
You copy the encryption file to the original location. A hardware failure occurs and so a new server must be installed and configured. After installing SQL Server to the new server, you restore the Orders database and copy the encryption files to their original location.
However, you are unable to access the database.
You need to be able to restore the database.
Which Transact-SQL statement should you use before attempting the restore?

wps22E.tmp_thumb

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ff773063.aspx

QUESTION 168
Drag and Drop Question
You administer a Microsoft SQL Server 2012 server that has multiple databases.
You need to ensure that users are unable to create stored procedures that begin with sp_.
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.)

wps2AF4.tmp_thumb

Answer:

wps4171.tmp_thumb

QUESTION 169
You administer a Microsoft SQL Server 2012 database.
You provide temporary securityadmin access to User1 to the database server.
You need to know if User1 adds logins to securityadmin.
Which server-level audit action group should you use?

A.    SERVER_STATE_CHANGE_GROUP
B.    SERVER_PRINCIPAL_IMPERSONATION_GROUP
C.    SUCCESSFUL_LOGIN_GROUP
D.    SERVER_ROLE_MEMBER_CHANGE_GROUP

Answer: D
Explanation:
http://technet.microsoft.com/en-us/library/cc280663.aspx

QUESTION 170
You administer a Microsoft SQL Server 2012 instance.
You need to stop a blocking process that has an SPID of 64 without stopping other processes. What should you do?

A.    Execute the following Transact-SQL statement:
EXECUTE sp_KillSPID 64
B.    Restart the SQL Server service.
C.    Execute the following Transact-SQL statement:
KILL 64
D.    Execute the following Transact-SQL statement:
ALTER SESSION KILL ’64’

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ms173730.aspx

QUESTION 171
Drag and Drop Question
You administer a Microsoft SQL Server 2012 server.
A variety of issues occur from time to time in the production environment.
You need to identify the appropriate tool for each issue.
Which tool or tools should you use? (To answer, drag the appropriate tool or tools to the correct issue or issues in the answer area. Each tool may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

wps65A5.tmp_thumb

Answer:

wps785B.tmp_thumb

QUESTION 172
You administer a Microsoft SQL Server 2012 database. Users report that an application that accesses the database displays an error, but the error does not provide meaningful information. No entries are found in the SQL Server log or Windows event logs related to the error.
You need to identify the root cause of the issue by retrieving the error message.
What should you do?

A.    Create an Extended Events session by using the sqlserver.error_reported event.
B.    Create a SQL Profiler session to capture all ErrorLog and EventLog events.
C.    Flag all stored procedures for recompilation by using sp_recompile.
D.    Execute sp_who.

Answer: A
Explanation:
http://msdn.microsoft.com/en-us/library/bb630282.aspx

QUESTION 173
You administer a Microsoft SQL Server 2012 server.
One of the databases on the server supports a highly active OLTP application.
Users report abnormally long wait times when they submit data into the application.
You need to identify which queries are taking longer than 1 second to run over an extended period of time.
What should you do?

A.    use SQL Profiler to trace all queries that are processing on the server.
Filter queries that have a Duration value of more than 1,000.
B.    Use sp_configure to set a value for blocked process threshold.
Create an extended event session.
C.     Use the Job Activity monitor to review all processes that are actively running.
Review the Job History to find out the duration of each step.
C.    Run the sp_who command from a query window.
D.    Run the DBCC TRACEON 1222 command from a query window and review the SQL Server event log.

Answer: A
Explanation:
Trace 1222 is used for deadlocks. To take slow queries better to use Profile! –\Burgos Verified the SQL Profiler and DBCC answers as correct. However, while Profiler will show this information, the best practice with Profiler is to use it short-term.
The question specifically states “over an extended period of time”.
That means Profiler wouldn’t be the best tool for this scenario.
Therefore, DBCC would be the best answer.
http://www.mssqltips.com/sqlservertip/2130/finding-sql-server-deadlocks-using-trace-flag-1222/
http://msdn.microsoft.com/en-us/library/ms188396.aspx

QUESTION 174
Drag and Drop Question
You administer a Microsoft SQL Server database that is used by an application.
Users of the application report performance issues.
You need to choose the appropriate tool for performance-tuning of SQL Server databases.
Which tool or tools should you use? (To answer, drag the appropriate tool or tools to their corresponding task or tasks in the answer area. Each tool may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

wps9F0E.tmp_thumb

Answer:

wpsB405.tmp_thumb

Explanation:
http://msdn.microsoft.com/en-us/library/ms175166.aspx
http://msdn.microsoft.com/en-us/library/ms187827.aspx

QUESTION 175
You administer a Microsoft SQL Server 2012 database.
You need to ensure that the size of the transaction log file does not exceed 2 GB.
What should you do?

A.    Execute sp_configure ‘max log size’, 2G.
B.    use the ALTER DATABASE…SET LOGFILE command along with the maxsize parameter.
C.    In SQL Server Management Studio, right-click the instance and select Database Settings.
Set the maximum size of the file for the transaction log.
D.    in SQL Server Management Studio, right-click the database, select Properties, and then click Files.
Open the Transaction log Autogrowth window and set the maximum size of the file.

Answer: D
QUESTION 176
You administer a Microsoft SQL Server 2012.
A process that normally runs in less than 10 seconds has been running for more than an hour.
You examine the application log and discover that the process is using session ID 60.
You need to find out whether the process is being blocked.
Which Transact-SQL statement should you use?

A.    SELECT ~ FROM sys.dm_exec_sessions WHERE session_id = 60
B.    DBCC OPENTRAN
C.    EXEC sp_helpdb 60
D.    SELECT * FROM sys.dm_exec_requests WHERE session_id = 60

Answer: D
Explanation:
The sp_helpdb – sp_helpdb [ [ @dbname= ] ‘name’ – does not accept a spid – http://technet.microsoft.com/en-us/library/ms178568.aspx

QUESTION 177
You maintain a SQL Server Integration Services (SSIS) package. The package was developed by using SQL Server 2008 Business Intelligence Development Studio (BIDS).
The package includes custom scripts that must be upgraded.
You need to upgrade the package to SQL Server 2012.
Which tool should you use?

A.    SQL Server Configuration Manager
B.    SQL Server Agent
C.    SSIS Upgrade Wizard in SQL Server Management Studio
D.    SQL Server DTExecUI utility (dtexecui.exe)

Answer: C
Explanation:
Use the SSIS Package Upgrade Wizard to migrate packages that were developed in SQL Server 2005 Integration Services (SSIS) and SQL Server 2008 Integration Services (SSIS) to the package format that the current release of Integration Services uses.

QUESTION 178
You install a SQL Server 2012 database engine instance on a production server.
A month later, you install SQL Server 2012 Integration Services (SSIS).
You must develop an SSIS project and deploy it to the server by using the Project Deployment model. Operations log records that are outside the configured retention period must be cleaned automatically.
You need to create the SSIS catalog on the production server and ensure that the operations log cleaning requirement is met.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Enable CLR Integration.
B.    Enable FILESTREAM with Full Access.
C.    Enable the Resource Governor.
D.    Change the recovery mode of the msdb database to FULL.
E.     Change the Server-wide Default Logging Level in SSISDB to Verbose.
F.    Start the SQL Server Browser service.
G.    Start the SQL Server Agent service.

Answer: AG

QUESTION 179
You install a SQL Server 2012 database engine instance on a production server.
A month later, you install SQL Server 2012 Integration Services (SSIS).
You must develop an SSIS project and deploy it to the server by using the Project Deployment model. Operations Log records that are outside the configured retention period must be cleaned automatically.
You need to create the SSIS catalog on the production server.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Enable XP Command Shell.
B.    Enable CLR Integration.
C.    Enable OLE Automation.
D.    Start the SQL Server Browser service.
E.    Enable Cross Database Ownership Chaining.
F.    Start the SQL Server Agent service.
G.    Enable Ad Hoc Remote Queries.

Answer: BF
Explanation:
http://msdn.microsoft.com/en-us/library/gg471509(v=sql.110).aspx

QUESTION 180
You maintain a SQL Server Integration Services (SSIS) package.
The package was developed by using SQL Server 2008 Business Intelligence Development Studio (BIDS).
The package includes custom scripts that must be upgraded.
You need to upgrade the package to SQL Server 2012.
Which tool should you use?

A.    SSIS Upgrade Wizard in SQL Server 2008 BIDS
B.    SSIS Upgrade Wizard in SQL Server Data Tools
C.    SQL Server DTExecUI utility (dtexecui.exe)
D.    SQL Server dtexec utility (dtexec.exe)

Answer: B


Braindump2go Latest 70-457 Exam Dumps Released! 100% Real Questions – Dumps Qulification is the secret of Success! Prepare yourself to Face the 70-457 Exam with Real Exam Questions from Microsoft Official Exam Center, walk into the Testing Centre with confidence.

1522

http://www.braindump2go.com/70-457.html