exam 70-432. question you work as the network administrator at certkiller.com. certkiller.com has...

246
Exam 70-432

Upload: stella-hannah-cox

Post on 26-Dec-2015

213 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Exam70-432

Page 2: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

• You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server 2008. The stored procedures that the application uses make use of the EXECUTE AS clause that makes use of the Microsoft Windows accounts. A new CertKiller.com security policy requires that all enterprise applications must run under the context of a service account. It is imperative that this account complies with the company policy that states all accounts must have the least amount of privileges whilst allowing duties to be carried out. Consequently this service account must have as little privileges as possible. You have received instructions to configure the SQL Server service to be used in a suitable context for the installation of the new enterprise application.

Page 3: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

ANSWER

• A. You should consider running the SQL Server service under the domain user account.

• B. You should consider running the SQL Server service under the local system account.

• C. You should consider running the SQL Server service under the local Administrator account.

• D. You should consider running the SQL Server service under the local service account.

Page 4: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_DB. CK_DB has its data file and the transaction log file on drive D. You have received instructions to move both the data file and the transaction log file to drive G.

Page 5: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

ANSWER

A. You should consider adding the following Transact-SQL statement:

ALTER DATABASE CK_DB SET RESTRICTED_USER WITH ROLLBACK_IMMEDIATE;

B. You should consider moving the data file and use the following Transact-SQL statement:

ALTER DATABASE CK_DB MODIFY FILE(NAME = CK_DB_Data, FILENAME = mdf');

ALTER DATABASE CK_DB SET MULTI_USER;

C. You should consider adding the following Transact-SQL statement:

ALTER DATABASE CK_DB SET OFFLINE WITH ROLLBACK_IMMEDIATE;

ALTER DATABASE CK_DB mdf';

ALTER DATABASE CK_DB SET ONLINE;

D. You should consider moving the data file and then start the SQL Server service with the

following Transact-SQL statement:

IEXEC sp_attach_single_file_db @dbname = N' CK_DB ',@physname = N'v:\SQLServer\CK_DB_Data.mdf';

E. You should consider moving the data file and transaction log file and then start the SQL Server

service with the following Transact-SQL statement:

EXEC sp_attach_db @dbname = N' CK_DB ',@filename1 = N'G:\SQLServer\CK_DB_Data.mdf',@filename2 = ldf';

F. You should consider moving the data file and transaction log file and then start the SQL Server

service with the following Transact-SQL statement:

EXEC sp_attach_db @dbname = N' CK_DB ',@filename1 = N'G:\SQLServer\CK_DB_Data.mdf',@filename2 =

N 'g:\SQLServer \CK_DB_log.ldf';

Page 6: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

PART 2Configure SQL Server instances. (4 questions)

Page 7: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. Management wants the prefix usp_ on all instances using all user-defined stored procedures; however, they do not want you to develop stored procedures which do not include this prefix.

Page 8: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

A. You should consider using a method that will point to the stored procedure which is evaluated on demand.

B. You should consider using a method that will point to the stored procedure which is evaluated on change.

C. You should consider using a method where the condition targets point to the stored procedure which is evaluated on demand.

D. You should consider using a method where the policy targets point to the stored procedure which is evaluated on demand.

Page 9: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Question

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instructions from management to allow the users at CertKiller.com on the SQL Server sample to use the OPENROWSET() function to search remote information sources.

Page 10: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Answer

A. You should consider configuring the Transaction Logs for sp_configure configuration.

B. You should consider configuring the Ad Hoc Distributed Queries for sp_configure configuration.

C. You should consider configuring the router control for sp_configure configuration.

D. You should consider configuring the Ad Lib Distributed Queries for sp_configure configuration.

Page 11: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Question

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server2008 instance. Because of a new application, you installed a second SQL Server 2008 instance that will work with the new application. However, these two instances should be functional with their respective applications without changing the environment of the application and with the minimal amount of cost.

Page 12: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Answer – Choose 2

A. You should consider changing the SQL Server 2000 application to use SQL Server 2008.

B. You should consider installing the new SQL Server 2008 as a named instance.

C. You should consider changing the SQL Server 2000 instance to a SQL Server 2008 instance.

D. You should consider setting set the new application to use the new instance.

E. You should consider modifying the SQL Server 2008 to run as the default instance.

Page 13: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server2008 instance. You have received instructions from management to move a web application from Microsoft SQL Server 2005 to Microsoft SQL Server 2008. Be reminded that when a web application is moved then the features will be stopped and you need to control the sample to remember the use of features

Page 14: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Answer

A. You should consider using a SQL server-side trace which gets the Deprecation Announcement and Deprecation Final Support event classes.

B. You should consider using a store procedure which gets the Deprecation Announcement and Deprecation Final Support event classes.

C. You should consider using Transaction Log.

D. You should consider using a SQL Server Profiler which gets the Deprecation Announcement and Deprecation Final Support event classes.

Page 15: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

PART 3Configure SQL Server services. (1 question)

Page 16: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server2008 instance. The SQL Server 2008 instance contains a database named CK_DB. Management wants CK_DB to have the following characteristics.

* I/O streaming access should be enabled on CK_DB.

* The data on CK_DB should be accessible to remote clients.

* Ensure that CK_DB is enabled.

Page 17: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Answer

A. You should consider configuring the IIS Service.

B. You should consider configuring the SQL Server service.

C. You should consider configuring the SQL Server VSS Writer.

D. You should consider configuring the Web Service.

Page 18: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

PART 4Configure addtional SQL Server components. (5 questions)

Page 19: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

You work as a database administrator at CertKiller.com. CertKiller.com is using SQL Server 2008.CertKiller.com contains a SQL Server 2008 server named CERTKILLER-DB04. CERTKILLERDB04 will be used to run the Reporting Services. However, the Reporting Services must be able to run the database backups and other maintenance job automatically. Because CertKiller.com has no other SQL systems, you need to make use of the SQL's DNS name.

What should you do?

Page 20: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• A. You should consider using the SQL Server Web Service and the Microsoft Distributed Transaction Coordinator technology.

• B. You should consider using the SQL Server Browser and the SQL Server Web Service technology.

• C. You should consider using the Microsoft Distributed Transaction Coordinator and the SQL Server Browser technology.

• D. You should consider using the Internet Information Services and the Microsoft Distributed Transaction Coordinator technology.

Page 21: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

QUESTION

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 database that makes use of the Analysis Services and Reporting Services. However, installed components at CertKiller.com adhere to the CertKiller.com security policy. You have received instruction to ensure that you adhere to the ertKiller.com security policy.

Page 22: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing policies based on the security policy before applying the policies against a server group which contains the database servers which need to be set.

Page 23: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instructions to publish an instance of SQL Server Reporting Services (SSRS) that will keep the old information to the same machine, and as default as possible. Microsoft 70-432: Practice Exam"

Page 24: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the SharePoint integrated mode and update the SSRS database.

Page 25: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CertKiller.com is using Microsoft SQL Server 2005 Analysis Services (SSAS) that is accessed by an Internet Information Services

• application by using anonymous access. However, management wants the SSAS sample to be processed by the application.

Page 26: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider setting the Security\RequireClientAuthentication server configuration to False.

Page 27: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2000 instance that contains a database named CK_DB1. One day you installed a SQL Server 2008 instance for business. anagement wants you to ensure that the third-party pplications can run on both database instances with the minimum amount of administrative effort.

Page 28: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider installing SQL Server 2008 as a named instance and set the new application to utilize the new instance.

Page 29: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You are busy with the setting of the Database Mail profile. You want the Database Mail profile to send reports to all of the users at CertKiller.com. You then use the sp_send_dbmail stored procedure to send reports during office hours. However, this method will take its time to send delivery reports to management. Furthermore, management wants the reports as soon as possible

Page 30: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider setting a new Database Mail profile that will be used for the delivery

• reports to management.

Page 31: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_Prod which make use of the Fulltext indexes. However, some of the records have the word 'root' in CK_Prod. This causes the Fulltext index, when searching for the root word, an empty resultset. You need to include 'root' in the query that returned.

Page 32: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reproducing the full-text index.

Page 33: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod that has a table named CK_Tbl that keeps data about the entire catalogue of products. The users at CertKiller.com search CK_Tbl which is based on the TestPro column. The TestPro column owns the NULL value for the entire catalogue except products such as Televisions. However, there is no index on the TestPro column presently. You have received instructions from management to ensure that queries are performed

• more efficiently while minimizing the effect your solution will have on the disk space.

Page 34: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a filtered index on the TestPro column.

Page 35: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. The CertKiller.com network contains a SQL Server 2008 computer named CERTKILLER-DB01. CERTKILLER-DB01 needs the SQL Server service and the SQL Server Agent service to start automatically. Besides that, it should also audit all user names and application names that access the system. Auditing should be on always and the result should be there for about a decade.

Page 36: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider create a SQL Server Agent job for the SQL Trace stored procedure.

• You should consider configuring the job to start when the SQL Server Agent service starts.

Page 37: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance hosts quite a few applications. Furthermore, the Ser Test\Test account is used by the SQL Server Agent service. CertKiller.com also uses a file that can be stored to a log server, by using a job named CK_MTest. However, CK_MTest cannot access the log server as it should. You then decide to set the service of SQL Server Agent. You

• need to ensure that the settings of the SQL Server Agent service can access the entire log server.

Page 38: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Domain account.

Page 39: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains SQL Server Agent jobs. These SQL Server Agent jobs uses ten shared schedules that is used 24/7. You have received instructions to ensure that a job named CK_Tst does not execute on Sundays.

Page 40: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider deleting the schedule from CK_Tst for Sundays.

Page 41: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You want the tasks in the database to have the following characteristics: Microsoft 70-432: Practice Exam "Pass Any Exam. Any Time." - www.actualtests.com 10 ctualTests.com

• * Examining database integrity. * Reproducing indexes.* Stores a report to a text file. You have received instructions to ensure that you could change the SQL Server instance in such a way that an e-mail notification is sent to the developers when the maintenance plan could not run

• normally.

Page 42: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider modifying the SQL Server Agent job so that it runs the database maintenance plan to send e-mail notifications to the developers.

• You should consider enabling a fail-safe operator for the SQL Server Agent.

Page 43: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains two SQL Server 2008 servers named CERTKILLER-DB1

• and CERTKILLER-DB2. CERTKILLER-DB1 does the transaction log backups and CERTKILLERDB2

• is to reset by using the SQL Server Surface Area Configuration. However one morning you notice that the CERTKILLER-DB2 did not run the maintenance tasks automatically.

Page 44: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• A. You should consider resetting a full backup of the master database manually.

• B. You should consider resetting the Web service to only grant access to an administrator.

• C. You should consider resetting CERTKILLER-DB1 to use Windows Integrated authentication

• exclusively.

• D. You should consider resetting CERTKILLER-DB2 so that the SQL Server Agent service starts

• automatically.

Page 45: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance has a stored procedure which runs a database maintenance process. You were instructed to develop a SQL Server Agent job which implements the stored procedure; however it should delete the job when it is finished. Microsoft 70-432: Practice Exam

• "

Page 46: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a job that uses the automatically remove job option.

Page 47: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 2, Manage SQL Server Agent alerts. (0 questions) Part 3, Manage SQL Server Agent

• operators. (1 question)

Page 48: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains a SQL Agent job that runs every 5 minutes. CertKiller.com also has a text file called CK_Tst.log on F: drive that logs all the information of the job. One morning during monitoring you notice the following: * The SQL Server Agent job does not function * The SQL Server Agent service does not execute. You need to make sure why the SQL Server Agent service got lost.

Page 49: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider checking the SQLAGENT.OUT log.

Page 50: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Implement the declarative management framework (DMF). (1 question

Page 51: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that has a table named CK_StockOnHand. CK_StockOnHand contains a column named CK_Price. A new CertKiller.com policy states that the value in CK_Price cannot be decreased by more than 10 percent in any single database operation. However, ad hoc queries and various other methods are used to update CK_Price. You need to make sure that the Microsoft 70-432: Practice Exam "Pass Any Exam. Any Time." - www.actualtests.com 12 ActualTests.com CertKiller.com policy is being complied with.

Page 52: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a trigger which rolls back non-CertKiller.com policy compliant changes to CK_Price.

Page 53: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 5, Back up a SQL Server environment. (1 question)

Page 54: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains a SQL Server 2008 server named CERTKILLER-DB1. There are also SQL Server Agent jobs on the server. Furthermore the database is backed up at a daily basis. One morning, the master database on CERTKILLER-DB2 went down. You then

• restore and rebuild the database. The earkiller.com managers want CERTKILLER-DB1 to work as it was in the past.

Page 55: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reserving the model and master databases for the database.

Page 56: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using two SQL Server 2008 sample named CKSmp1 and CKSmp2. Furthermore, CKSmp1 contains a database namedCK_DB. A CertKiller.com user named Mia Hamm uses her name Mia to log on to the database on CKSmp1. During the week you have transferred CK_DB to CKSmp2 with Mia Hamm credentials. Microsoft 70-432: Practice Exam ActualTests.com However, when she tries to login on CK_DB at CKSmp2, she received an error message stating that she is not allowed access. Mia Hamm needs to access CK_DB and you need to make it

• happen.

Page 57: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using CK_DB and change USER Mia WITH LOGIN = Mia;

Page 58: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The a SQL Server 2008 instance is used on a Windows Server 2000 server and uses the mixed authentication mode. Management wants you to ensure the following:

• * SQL Server 2008 authenticated logins has the same password complexity rules which are enforced by Windows Server 2000. * Full compliance of all users with regarding to adhering to the password complexity rules.

Page 59: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the ALTER LOGIN ... CHECK_POLICY = ON statement to change the entire login of all users

• You should consider developing an SQL Server Agent job which implements to raise an alert, if triggered by a violation by any user.

Page 60: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_DB that contains a table named CK_Tbl. CK_DB also contains a stored procedure named CK_Prod that uses a sp_executesql Transact-SQL statement to get data from CK_Tbl. A new CertKiller.com security policy does not allow users to access tables directly in any database. If it does happened that a user runs ProcedureTest"Msg 229, Level 14, State 5, Line 1, it will give the following error. The SELECT permission was denied on the object ' CK_Tbl', database ' CK_DB ', schema 'dbo'."

• You need to ensure that the users can run CK_Prod and still comply with the CertKiller.com

• security policy.

Page 61: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider modifying CK_Prod and increase the WITH EXECUTE AS OWNER option to its header.

Page 62: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. During your leave, you have given a CertKiller.com user named Mia Hamm permission to keep the database snapshots. You need to make sure that Mia Hamm has the appropriate rights assigned to remove database snapshots.

Page 63: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should allow Mia Hamm to use DROP DATABASE.

Page 64: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 3, Manage SQL Server instance permissions. (3 questions)

Page 65: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_Tester that is used by the CertKiller.com's developers. You need to allow the developers to access the SQL Server Profiler to get traces which can be used to troubleshoot the application that CK_Test uses.

Page 66: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider giving suitable server-level rights to the whole SQL Server to grant login access to the developers.

Page 67: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instructions from management to configure the following: * The required permission for Clerk and other users at CertKiller.com. You need to complete this task with the least amount of SQL administrative statements.

Page 68: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adding the following:

• CREATE ROLE Developers; GRANT VIEW DEFINITION TO Developers; GRANT SELECT TO Developers; EXEC sp_addrolemember 'Developers', 'Clerk ';

Page 69: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. A new CertKiller.com security policy requires allows members of a Windows group name CK_Prod to build new links to the SQL Server instance that should occurs between the business hours of 10:00 and 22:00. Furthermore, the other CertKiller.com users are not allowed to

• connect the database at any time. At the bottom the Transact-SQL statements: CREATE TABLE Security.RestrictedTester( ProductID int NOT NULL IDENTITY(1,1),

• Group Test sysname NOT NULL, RestrictedTesterTimeStart time NOT NULL, RestrictedTesterTimeStop time NOT NULL,CONSTRAINT RestrictedTester _pk PRIMARY KEY CLUSTERED(Id)); INSERT INTO Security.RestrictedTester groupTest,RestrictedTesterTimeStart,RestrictedTesterTimeStop)VALUES (' CK_Prod ',CAST('10:00' AS time),CAST('22:00' AS time)); You have received instructions from management to run the new CertKiller.com security policy

• which is reserved in the RestrictedTester table.

Page 70: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a logon trigger which could not permit the connection to CK_Prod during non-business hours.

You should consider developing a logon trigger which could not

permit the connection toCK_Prod during non-business

hours.

Page 71: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Manage database permissions. (1 question)

Page 72: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CertKiller.com has a SQL Server login named CK_Tst that maps to a ertKiller.com learner administrator named CK_ProdApp in CK_Prod. You have received instruction from management that the CertKiller.com user can to do

• the following: * That the entire stored procedures which at present exist in CK_Prod can be run.

• * That the entire stored procedures will be developed in CK_Prod can be run.

Page 73: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider allowing the proper database-level rights to CK_ProdApp.

Page 74: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 5, Manage schema permissions and object permissions. (2 questions)

Page 75: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. CK_DB contains a table named CK_Prod where the Sales Product resides. You have received instruction to move CK_Prod' test to a new schema named CK_Tester. You need to complete this task using the appropriate ransact-SQL

• statement.

Page 76: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adding the following:

• ALTER SCHEMA CK_Tester TRANSFER Products. Test

Page 77: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CertKiller.com also has a Windows group named CertKiller\Managers that makes use of CK_Prod. Some of the users in that group are members for the db_owner role. However, one member in the CertKiller\Managers group named Mia is not allowed to access the SQL Server instance. You have received instructions from the CEO to make sure that the Mia does not access the instance. You need to complete this task using the appropriate Transact-SQL statement.

Page 78: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the following:

• CREATE LOGIN "Mia\Mia" FROM indows;DENY CONNECT SQL TO " Mia\Mia ";

Page 79: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com have 12 retail stores, each store is equipped with their own SQL Server 2008 computer. A database table named CK-Sales is used to store point-of-sale transactions. Furthermore, CKSales also hosts sales information from all 12 of the CertKiller.com stores to accommodate customer returns of products. Consequently the data should be refreshed from the main office to all 12 retail stores every hour, on the hour. To this end you make use of a trigger called trg_Coupon to produce sales coupons based on customer sales and buying patterns. Currently replication between the server in each of the 12 retail stores and a middle server in the main office Microsoft 70-432: Practice Exam ActualTests.com occurs in real time. You should receive instruction to eliminate this replication.

Page 80: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using merge replication.

• You should consider setting the trg_Coupon trigger on the server in each retail store to use the NOT FOR REPLICATION option.

Page 81: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains a SQL Agent job that contains a Windows PowerShell job step that uses the SQLCmd function to move data between servers. You need to ensure that an operator named TestTeam is notified through an e-mail message if the job is lost while being moved between servers.

Page 82: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider enabling the Notifications and develop the TestTeam operator

• You should consider leading the Notification the TestTeam operator on job failure.

Page 83: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instruction from management to set the instance to utilize one thread for searches which owns an estimated execution cost less than 2.

Page 84: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider setting the cost threshold for parallelism.

Page 85: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instructions from management to encrypt the database of CertKiller.com. However, you have just installed the new license and need to use it for encryption.

Page 86: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Every individual node should have the encryption license installed.

Page 87: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. CertKiller.com contains a lot of customer data which is processed by the Web application. You need to keep the customer information safe since it is confidential.

Page 88: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider enabling the Transparent Database Encryption on CK_DB and back up the transaction log.

Page 89: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 8, Configure surface area. (0 questions)

Page 90: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains two SQL Server 2008 computers named CERTKILLERDB1 and CERTKILLER-DB2. Both of these computers contain a copy of a database namedCK_DB. You are using transactional replication between CERTKILLER-DB1 and CERTKILLERDB2 for CK_DB. The backups of the databases are as follows: * Full backup is performed nightly. * Transaction log backups are performed hourly. Furthermore, replication latency is less than two minutes. One morning CK_DB becomes corrupt on CERTKILLER-DB1 and its state was rendered irreparable. Fortunately, the database on CERTKILLER-DB2 was not affected. You need to return CK_DB on CERTKILLER-DB1 and ensure that minimal amount of data loss impact on the users of these servers.

Page 91: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reserving a full database backup on CERTKILLER-DB2 and reserve the

• backup to CERTKILLER-DB1.

Page 92: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. Management wants the backups to be done on a daily basis. Transaction log backups must be every afternoon and morning and thus you should keep in mind that the content of the log will grow exponentially resulting in a large transaction log file that needs to be backed up. You thus received instructions to take appropriate measures when doing the backups of the Microsoft 70-432: Practice Exam ActualTests.com transaction log files.

Page 93: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider cutting down the number of times between transaction log backups for the database.

Page 94: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CK_Prod need to be backed up completely. The transaction log for CK_Prod runs from 08:00 to 17:00, in two hour intervals. The database snapshot needs to be done daily at 07:00. A CertKiller.com user named Mia Hamm has removed all the information on CK_Prod which was entered into the CurrentSpeaker table the previous day. Deletion is the first step for the database.

• However, later in the day many other changes in CK_Prod have been effected. You received instructions to run a full backup on CK_Prod despite all these problems.

Page 95: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the SELECT subquery in the INSERT statement to move the deleted rows from this morning's database snapshot to the CurrentSpeaker table.

Page 96: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. You have received instructions from management to cut the content of the entire database backup files of CK_DB.

Page 97: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the following Transact-SQL statement: BACKUP DATABASE CK_DB TO DISK = 't:\backups\ TT_DB.bak' WITH COMPRESSION;

Page 98: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The CertKiller.com failure recovery plan demands of you to back up the default trace. However, you need to backup the subdirectory which comprises of the default traces.

Page 99: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the LOG.

Page 100: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. CK_DB have 100 GB information where 2 GB of the information is changed daily. CK_DB has its recovery model set for Simple. However,

• CertKiller.com states that data loss of more than three hours worth of transactions during business hours is a NO - NO. You need to ensure to use a backup strategy will use the least number of disk Microsoft 70-432: Practice Exam

• ActualTests.com spaces and still complies with CertKiller.com.

Page 101: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider running a full database backup daily and a differential backup every three hours during business hours.

Page 102: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The backup of CK_Prod is as follows: * Full backup at 01:00 daily

• * Transaction log backup every 20 minutes * Differential backup every 5 hours However, you need to do a full backup of CK_Prod at 12:00. You need to make sure that the backup would not affect the overall backup and restore procedures for CK_Prod and that you can restore the Backup files in correct sequence.

Page 103: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the following: bak' WITH COPY_ONLY;

Page 104: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

Explanation:Microsoft 70-432: Practice Exam

ActualTests.com By using copy_only you do not affect the

backup sequence. Incorrect answer:

trn ' WITH DIFFERENTIAL; by doing this you already affected your backup sequence and you

are only backing up the transaction log.

Part 2, Restore databases. (8 questions)

Page 105: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using SQL Server 2008 Enterprise Edition. CertKiller.com contains a database that unfortunately has torn page errors. You need to solve the Problem of the torn page errors.

Page 106: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the newest database backup to restore only the torn page. Thereafter you should restore any transaction logs which have been made since the latest full backup.

Page 107: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database. The database at CertKiller.com contains transaction information which is for the Web-based order system. The full recovery model is used on the database. CertKiller.com is awaiting a few orders that will come through between 20:00 and 04:00. However, there could be a one hour risk when the

• system is running the Database backup. You need to run the backup as soon as possible and get

• a solution that will negate this type of risk.

Page 108: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider running a full backup daily at 20:00. Then set a second Back up Database task to run differential backups. Then you should also consider setting a third Back up Database job to run hourly Transaction log backups.

Page 109: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_Prod that contains has a backup method which is as follows: * CK_Prod is backed up to a file called CK_Prod.bak is performed at 08:00 hours each day. * Transaction log backed up to a file called CK_Prod _HHMM.trn is executed every 20 minutes starting at 09:30 hours. Furthermore, CK_Prod is configured in single-user mode. One morning at 09:40, a CertKiller.com user named Mia Hamm stated that some information was removed by a search which was executed at 09:20. You have received instructions to ensure that you recovery the database to its original status.

Page 110: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the following:bak WITH NORECOVERY; RESTORE LOG Product FROM "t:\backups\ CK_Prod_0930.trn” WITH RECOVERY, STOPAT = 'Mar 8, 2010 09:20 AM';

Page 111: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using SQL Server 2005 Enterprise Edition. You need to get the information on the torn page errors of the database. However, you need to get a solution on the torn page errors

Page 112: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the newest database backup to restore only the torn page. Thereafter you should restore any transaction logs which have been made since the latest full backup.

Page 113: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. The backup method of CK_DB1 is follows: * Full backup, Sunday at 01:00 * Differential backup, weekdays at 22:00

• * Transaction log backup weekdays at 08:00; 12:00 and 16:00 You have received notification that the user database data files have failed on Wednesday at

• 17:00. You need to ensure that CK_DB1 are saved with the minimal amount of data loss.

Page 114: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider backing up the transaction log and recovery the full backup taken on Sunday and then recovery differential backup taken on Tuesday.

Page 115: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. The backup of CK_DB is as follows: * Full backup at 13:00 * Differential backup at 15:00 * Database snapshots at 20:00 and 21:00 Furthermore, the backups and the database snapshots are reserved on a different disk. However, CK_DB has failed at 18:30. You have received instruction to recover CK_DB with the minimal amount of data loss.

Page 116: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider recovering the Full backup and the differential backup files.

Page 117: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. During monitoring you notice that one of the computers that have the data files is not working. However, you need to reserve the database which is from the most recent configurations of backups as soon as possible.

Page 118: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider running a transaction log backup for the database.

Page 119: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains two SQL Server 2008 computers named CERTKILLERDB1 and CERTKILLER-DB2. Both of these computers contain a copy of a database named CK_DB. You are using transactional replication between CERTKILLER-DB1 and ERTKILLERDB2 for CK_DB. The backups of the databases are as follows: * Full backup is performed night by night. * Transaction log backups are performed hourly. Furthermore, replication latency is less than two minutes. One morning CK_DB becomes corrupt on CERTKILLER-DB1 and its state were not repairable. However, the database on CERTKILLERDB2 was not affected. You need to return CK_DB on CERTKILLER-DB1 and ensure that minimal amount of data loss impact on these servers.

Page 120: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reserving a full database backup on CERTKILLER-DB2 and reserve the backup to CERTKILLER-DB1.

Page 121: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 3, Manage and configure databases. (3 questions)

Page 122: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The rtKiller.com's SQL Server 2008 is configured to make use of the -T1222 and -T1204 trace flags while booting up. You have Microsoft 70-432: Practice Exam ActualTests.comreceived instructions to make sure that the use of these trace flags are also included in the recovery method of the backups.

Page 123: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider backing up the SQL Server registry hive.

Page 124: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CK_Prod database does execute the logged operations. You have received instructions to ensure that the database can be recovered to a specific point in time.

Page 125: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider ensuring that CK_Prod uses the full recovery model.

Page 126: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The CK_Prod contains the following file Groups: * The PRIMARY file group that contains the On-Line Transaction Processing (OLTP) information that is kept in the reserved in the E: volume. * A file group named CK_USERS that contains the older information that is kept in the F: volume. * A transaction log of the information that is kept in the I: volume. Data transferring occurs from the PRIMARY file group to CK_USERS, as a member of the archiving strategy for CK_Prod. The backup of CK_Prod is as follows: * The PRIMARY file group six times a day. Microsoft 70-432: Practice Exam ActualTests.com * The CK_USERS at 20:00 * The transaction log every 20 minutes However, the volume that contains CK_USERS was lost at 14:00 hours. You have received instructions to perform a recovery of CK_USERS with minimal data loss and in the shortest time as possible.

Page 127: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider recovering the latest backup of CK_USERS.

Page 128: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Manage database snapshots. (4 questions)

Page 129: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The CK_Prod database uses a full recovery model. To adapt to business requirements, CertKiller.com now need to make use of a process which changes 20,000 records from the Accounts table at 22:00 hours, which is published, daily. You have received instruction to ensure that any changes to the records could be effected without the database going offline.

Page 130: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using Database snapshots.

Page 131: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod1. One of CertKiller.com policies is that the database should not be changed too often on business days. Thus you have received instructions from management to create a read-only copy of CK_Prod1 for reporting purposes at the start of each business day.

Page 132: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the database snapshots.

Page 133: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a stored procedure which is used as the data source for a report. However, a CertKiller.com user named Mia Hamm complains that the data returned by the report does not comply with normal safety standards. During the investigation you notice that the results are caused by phantom reads. You need to make sure that the report result does not connect to the other users at CertKiller.com.

Page 134: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider changing the stored procedure to utilize the Snapshot isolation level.

Page 135: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using SQL Server 2008 for its database administration. CertKiller.com has five automated testing areas for completely assembled items. The Testing results of every area are stored on the SQL Server 2008 instance. You have received instructions to create a replication method to ensure that test results flow from the testing areas to the SQL Server efficiently and that it can be used for reporting.

Page 136: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The other day you have received instructions to update a SQL Server 6.0 database to the SQL Server instance. You need to ensure that suspect pages in CK_Prod be detected early.

Page 137: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider configuring the PAGE_VERIFY database selection to CHECKSUM for the database.

Page 138: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The newly appointed CertKiller.com trainee wants to know what can be used to check if the database integrity check (DBCC CHECKDB) was implemented for a special database.

Page 139: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should tell him to check the log file of ERRORLOG.

Page 140: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 to administrate and maintain its database. You have received instruction from management to create a repository of function information. This repository should be created with the following Microsoft 70-432: Practice Exam ActualTests.com characteristics: * The data collector is utilized to collect function information. * One database reserves function information for all the instances. * 15 Day old function information must be removed. * Administrative effort to query and operate function data should be minimal.

Page 141: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider setting a management data warehouse process on every instance to reserve and remove performance data in one database for all the instances.

Page 142: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 6, Maintain a database by using maintenance plans. (1 question)

Page 143: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 sample that contains an On-Line Analytical Processing (OLAP) database and a dimension table named CK_TST. CK_TST contains data that is not in use, but you refresh the table on an hourly basis. Consequently this results in a large chunk of disk space being taken up by superfluous data. You need to keep the disk space that will be used to reserve the CK_TST table.

Page 144: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using Page compression.

Page 145: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. You have just installed Microsoft SQL Server Management Studio (SSMS) on one of CertKiller.com's workstations but not the Microsoft Microsoft 70-432: Practice Exam ActualTests.com Business Intelligence Development Studio (BIDS). However, you need to design a package with the following characteristics: * It must be transactional. * It must be able to commodate the use of 10 tables. * It must be stored in the msdb database of server that is offsite.

Page 146: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Microsoft SQL Server Import and Export Wizard to create the package.

Page 147: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance to administrate and maintain their database. The SQL Server 2008 instance contains a database named CK_DB that contains a table named CK_Tbl. You have to put the output of the entire information from CK_Tbl to a file. You have received instructions from management to ensure that your solution will provide the desired output in a Microsoft Office Open XML document format whilst making sure that the data export process is protected for reuse.

Page 148: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the SQL Import and Export Data Wizard and save the output to a file.

Page 149: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. You have received instructions to Microsoft 70-432: Practice Exam ActualTests.com ensure that the entire SQL Server samples are set to comply with the following requirements. * Security configurations should be accommodated * Data fragmentation should be avoided * Naming conventions should be accommodated * Force index creation should be accommodated

Page 150: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider creating a policy in Microsoft SQL Server Management Studio.

Page 151: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You are using the SQL Server Import and Export Wizard to export information from a SQL Server database to a Microsoft Excel file format. However, you need to save the package definition to a file using the appropriate command line.

Page 152: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using dtexec.exe.

Page 153: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. You have completed the installed Microsoft SQL Server Management Studio (SSMS) on one of CertKiller.com's workstations but not the Microsoft Business Intelligence Development Studio (BIDS). However, you need to design a package with the following characteristics: * The package should be transactional. * The package can use 10 tables. * The package should be stored in the msdb database of a server which is remote.

Page 154: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Microsoft SQL Server Import and Export Wizard to create the package.

Page 155: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 2, Manage data partitions. (2 questions)

Page 156: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_DB that has a table named CK_Tbl that is partitioned on the ProID column. The partitioning characteristics are as follows: Partition 1 has integer values between 5 and smaller than 30,000. Partition 2 has integer values greater than 30,000. Due to the growth in business operations the CertKiller.com management foresees the need to have a third partition in the table. You receive instructions to create a third partition on the table. This partition must be able to include the integer values greater than 60,000.

Page 157: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adjusting existing partition function through utilizing a Split clause.

Page 158: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. The CK_DB1 database contains an Order History table that has two table partitions which is as follows: The one partition contains the entire information and the other partition is null. You then create a process to transfer information from the partition which includes information for the oldest month of the Orders table to the proper partition of the Order History table. However, you have received instructions to ensure that the Microsoft 70-432: Practice Exam ActualTests.com process is capable of running at double capacity at the end of each month.

Page 159: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider changing the configurations of the Transaction Logs.

Page 160: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 3, Implement data compression. (0 questions) Part 4, Maintain indexes. (11 questions)

Page 161: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance to manage and maintain its databases. The SQL Server 2008 instance contains a database named CK_DB that has a table named CK_Tbl. You then add a Geography data type column named CK_Colmn to CK_Tbl. The CertKiller.com management also wants CK_Colmn to make allowance for the development of a spatial index.

Page 162: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider creating a primary key for CK_Tbl.

Page 163: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_DB that has a stored procedure which is as Follows:

• 1 CREATE PROCEDURE Products.TestProcedure

• 2 AS

• 3 IFOBJECT_ID(' Products. TableTest1') IS NOT NULL

• 4 DROPTABLE Products.TableTest1;

• 5

• 6 CREATE TABLE Products. TableTest1 (

• 7 Idint PRIMARY KEY CLUSTERED,

• 8 Namevarchar(100);

• 9 );

• 10

• 11 ...

• 12 GO

• However, a CertKiller.com user has called the TestProcedure and received the following:

• Msg 262, Level 14, State 1, Procedure TestProcedure, Line 15CREATE TABLE permission

• permitted in database ' CK_DB '."

Page 164: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adding the WITH EXECUTE AS 'dbo' clause between lines 1 and 2.

Page 165: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2005 database that contains a table named CK_Prod. Product, that has over 50 columns. The normal Transact-SQL statement queries are as follows: --QUERY 1 SELECT [Name], [ProductLine], [ListPrice], [Class], [Style] FROM [CK_Prod]. [Product]WHERE [ProductLine] = 'T’ --QUERY 2 SELECT * FROM [CK_Prod]. [Product] ORDER BY [Name] You have received instructions to minimize the space for the indexes, however, you should keep the most common searched to CK_Prod. Product.

Page 166: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider creating a clustered index on the Name column.

Page 167: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database. During monitoring, you notice that the following Transact- SQL query is running slow: SELECT VideoTitle, UpcNum, RetailPrice, Release Date FROM Srvideo.VideoTitle WITH (INDEX(0)) WHERE ReleaseDate BETWEEN '20050401' AND '20050510’ With regards to the output, a clustered index exists on the VideoTitle column. Furthermore there is a nonclustered index on the ReleaseDate column that has the UpcNum and RetailPrice columns. You also notice that the avg_fragmentation_in_percent is 30 percent, when you explore the sys.dm_db_index_physical_stats dynamic management function (DMF) or the VideoTitle table. You have recievewd instructions to find the method to resolve the problem.

Page 168: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider deleting the query hint from the query.

Page 169: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. CK_DB also contains spatial data types. You have received instructions to run a database consistency check on CK_DB to hold the spatial indexes and to make the effect on the database concurrency minimized.

Page 170: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider running the following:

• DBCC CHECKDB (CK_DB) WITH EXTENDED_LOGICAL_CHECKS;

Page 171: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You then install an important cluster which allows constant availability on two cluster-ready nodes. However, you have received instructions from management to make sure that the service disruption is minimized by setting the cluster to failover.

Page 172: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Prevent automatic failback option.

Page 173: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. CK_DB1 contains a table named CK_Prod that has a clustered primary key called CK_ProdID. Also, the CK_DB1 contains a single XML column called CK_ProdXml which stores XML data. However, CK_ProdXml has an XML index. You then create a new column called CK_ProdName to the Production table. You need to make CK_ProdID the primary key.

Page 174: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server

• 2008 instance that contains a database named CK_DB1. CK_DB1 contains a table named

• CK_Prod that has a clustered primary key called CK_ProdID. Also, the CK_DB1 contains a single

• XML column called CK_ProdXml which stores XML data. However, CK_ProdXml has an XML

• index. You then create a new column called CK_ProdName to the Production table. You need to

• make CK_ProdID the primary key.

Page 175: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reproducing the XML index.

• You should consider using the statement "Drop the XML index on the table" and change the primary key.

Page 176: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a Microsoft SQL Server 2008 Analysis Services (SSAS) instance. You have received instruction to deploy a data mining structure that has the Microsoft Clustering mining model "From Scalable K-Means to Nonscalable K-Means". You need to modify the attribute of the mining model.

Page 177: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider changing CLUSTERING_METHOD.

Page 178: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB. CK_DB contains a table named CK_Prod that contains several indexes and numerous rows. However, 40 % of the indexes on CK_DB are fragmented. You have received instructions to ensure that the effect on database availability is minimized.

Page 179: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Online option.

Page 180: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. CertKiller.com is using the following to join two tables on a column called CK_Cmn. SELECT P.*, PD.*FROM Products AS PINNER JOIN Products AS PD ON PD.CK_Cmn = PD.CK_Cmn However, when you run the search you received the following error: "Msg 468, Level 16, State 9, Line 17Cannot resolve the collation conflict between 'SQL_Latin1_General_CP1_CS_AS' and 'SQL_Latin1_General_CP1_CI_AS' in the equal to operation."

Page 181: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adding the following: CK_Cmn= P.CK_Cmn COLLATE SQL_Latin1_General_CP1_CS_AS

Page 182: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 cluster. You have received instructions from management to perform a manual failover on the cluster.

Page 183: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider Unplugging the network cable(s) from the active node.

• You should consider deleting the shared array from the active node.

Page 184: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 5, Manage collations. (0 questions)

Page 185: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. One morning you have received numerous complaints from the CertKiller.com users that they cannot connect to the default instance or the named instances. You need to make sure that the users can access the entire SQL instances.

Page 186: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Service of SQL Server Browser.

Page 187: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com contains a SQL Server 2008 computer named CERTKILLER-DB01. CERTKILLER-DB01 contains three examples of SQL Server that is supposed to have the ability to connect to the dedicated administrative connection to have a disaster recovery plan. During testing you can connect to the connection on CERTKILLERDB01’ s default example to test its ability; however, you cannot connect to the dedicated connection on the two other examples. You have received instructions to do the following: * Make sure that the examples are implementing. * Make sure that the client applications can approach them. * Ensure that the other administrators cannot connect to any dedicated connections on CERTKILLER-DB01. * Ensure that you could connect to the dedicated connection on all three examples.

Page 188: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider starting the SQL Server Browser service and set is to run automatically.

Page 189: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You need to use the Windows System Monitor and process the output of how many users access the SQL Server instance.

Page 190: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should have the object of SQLServer:General Statistics captured.

Page 191: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 2, Identify concurrency problems. (3 questions)

Page 192: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. However, recently CK_Prod has produced deadlock problems. You have received instructions from management to get the deadlocks on the SQL Server error log.

Page 193: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the SQL Profiler trace.

• You should consider setting up the trace flags and reboot the SQL Server instance.

Page 194: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. A CertKiller.com user named Mia Hamm was complaining that she is waiting forever for a search to finish. You need to make sure if the query is blocked.

Page 195: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Activity Monitor utility.

Page 196: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instructions to clarify the longest-running common language runtime (CLR) searched.

Page 197: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the sys.dm_exec_query_stats view.

Page 198: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 3, Identify SQL Agent job execution problems. (1 question)

Page 199: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance for a Server Agent job. During a routine monitoring, you notice that the Server Agent job is not running as it should be. However, when you check the job history information, you saw that it was not complete and shortened. However, in the future, you need to ensure that the info from the job history is useful for browsing.

Page 200: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should make use of job steps to send the output to a file enable.

Page 201: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Locate error information. (5 questions)

Page 202: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. You are working on a SQL Server 2005 database called TestCont and are using a Transact-SQL script to restore TestCont. The Transact- SQL script is as follows: RESTORE DATABASE TestCont FROM contracts_bu_device WITH CONTINUE_AFTER_ERROR, CHECKSUM, RECOVERY However, after the restore there were still errors in some page restores in the SQL Server logs. You have received instructions to repair the database pages as soon as possible.

Page 203: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider adding the following: DBCC CHECKDB (Contracts, REPAIR_ALLOW_DATA_LOSS) WITH TABLOCK

Page 204: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. You have received instruction from management to keep a management data warehouse. It will be used to store functions data through utilizing the data collector. For this, you need to use a process which gathers and uploads information in the management informationwarehouse on different schedules.

Page 205: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a cached data collection.

Page 206: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. The CertKiller.com management would like the database to conform to the following security requirements: Only successful and failed logon attempts in log files. The SQL Server 2008 instance must close if the records are not written to the log files. You need to set the SQL Server sample to conform to the security requirements.

Page 207: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the following: sp_configure 'show advanced options', 1;

• GO

• RECONFIGURE;

• GO

• sp_configure 'common criteria compliance enabled', 1;

• GO

• RECONFIGURE

• GO

Page 208: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_DB. You are planning to collect performance information on the whole examples with the data collector. You should reserve collected data in CK_DB and to gather and load function data in the management data warehouse every 12 HOURS

Page 209: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a scheduled non-cached data collection.

Page 210: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. One morning you have a complaint from a CertKiller.com user that applications on the server is performing very sluggish. However, you do not want to use the table scans get more information because of the poor performance.

Page 211: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the SQLServer:Access Methods utility in the Windows System Monitor.

Page 212: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains quite a few databases that are utilized by applications. You are planning to use the Resource Governor to cut the result of searches. These searches are run via Microsoft SQL Server Management Studio. However, the characteristics should be as follows: The searches done by the SQL Server Management Studio should not exceed 40 % of CPU utilization and the applications need of 200 % CPU utilization may be allowed when needed. You need to comply with the CertKiller.com needs.

Page 213: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing a new resource pool and set up the MAX_CPU_PERCENT selection to 40.and grant this resource pool to the workload group.

Page 214: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 2, Use the Database Engine Tuning Advisor. (1 question)

Page 215: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains a database that is used by a mission critical application. You have received complaints from a CertKiller.com user named Mia Hamm that the performance of the server is not running by her as it should be. You need to use the Database Engine Tuning Advisor to help the functions of the application however you should ensure that the performance of the server does not affect the other users.

Page 216: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider setting up a test server which has the same hardware setting, before using the dta.exe utility on the test server along with an XML input file.

Page 217: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 3, Collect trace data by using SQL Server Profiler. (3 questions)

Page 218: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a remote SQL Server 2008 instance. One morning you have received complaints that the applications are running sluggish. To get hold of the workload, you need to trace the table on the remote SQL Server instance. You need to use the Database Engine Tuning Advisor and use the SQL Profiler tool to analyze the workload of the remote SQL Server instance on a local SQL Server instance.

Page 219: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider recapturing the workload to a trace file by using the SQL Profiler tool.

Page 220: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2005 instance. In CertKiller.com there are 15 servers which are used by other administrator at the Microsoft 70-432: Practice Exam ActualTests.com company. However, they need to comply with the company service level agreements (SLAs) on querying response time. Some of the administrators need information of the method on controlling query response times on the servers.

Page 221: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider developing SQL Server Profiler templates, which contain query start times and end times and distribute these templates to the administrators.

Page 222: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains databases that host two applications for acquiring and selling. You were busy with the setting of the Resource Governor with the purpose of cutting the maximum CPU search time permitted through the applications. However, after the setting, you notice that some of the reports of the acquiring application does not execute successfully. You need to ensure that you alter the Resource Governor settings to permit more CPU time.

Page 223: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider permitting the workload group which is utilized through the acquiring application.

Page 224: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Collect performance data by using Dynamic Management Views (DMVs). (3 questions)

Page 225: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. One morning you have received numerous complaints from the users at CertKiller.com that the SQL Server 2008 application is running very sluggish. You need to check the disk, CPU, and memory utilization; information and still consider the network.

Page 226: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider checking the proper dynamic management views (DMVs).

Page 227: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. CertKiller.com also contains an application that makes use of the SELECT command that triggers the population of multiple tables. This application also makes use of CK_DB1. One morning you have received several complaints from the users that the application is performing very sluggish. You now need to control the status of the sample without affecting the application performance.

Page 228: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the Dynamic Management Views.

Page 229: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2005 instance. The database enables the CertKiller.com users to operate both ad hoc and predefined searches. There is however a suspicion that some searches will cost too much of the available resources and you need to make sure which searches use the most resources.

Page 230: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider using the sys.dm_exec_query_stats dynamic management view (DMV).

Page 231: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 5, Collect performance data by using System Monitor. (0 questions) Part 6, Use Performance Studio. (0 questions)

Page 232: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains three databases named CK_DB1, CK_DB2 and CK_DB3. Each of these databases runs on different servers. CK_DB1 and CK_DB2 have an important database that is mirrored. CK_DB3 is a helper and CK_DB1 is considered the principle database. You then implement a patch that requires CK_DB1 and CK_DB2 to be rebooted. However since the patching was done as quickly as possible the database that was online at the time could not use the patch. This database cannot use the patch present which result in that the database does not failover to the other partner.

Page 233: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider stopping the mirroring session, use the patch to the server that implements CK_DB2 and resume the mirroring session.

Page 234: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 2, Implement a SQL Server clustered instance. (0 questions) Part 3, Implement log shipping. (3 questions)

Page 235: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. The SQL Server 2008 instance contains a database named CK_Prod which are logged shipping to a remote SQL Server 2008. However, after reboot of the primary SQL Server instance, you notice that the log shipping has no functionality. You need to troubleshoot the log shipping of CK_Prod.

Page 236: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should make sure that the SQL Server Agent is started on the main server.

Page 237: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 sample named CKSmp1. Furthermore, CKSmp1 contains a database named CK_DB. The CK_DB uses the bulk-logging recovery mode. You then use the WAN to log ship CK_DB. Furthermore, CK_DB's indexes are reproduces by a scheduled work. You then make certain that the log shipping adds the number to the job. You need to minimize the size of the log backups used by log shipping.

Page 238: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider making a compress of the log file backups.

Page 239: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_DB1. The CK_DB1 database uses SQL Server log shipping; however, log shipping will occur within the hour. You have received instructions to make a full backup however; you need to cut the net bandwidth utilization when maintenance takes place at night.

Page 240: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reproducing only those indexes that ask it at night.

Page 241: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• Explanation:

• Part 4, Implement replication. (2 questions)

Page 242: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance. CertKiller.com contains a SQL Server 2008 sample named CKSam that contains a database named CK_DB. Furthermore, CK_DB does have a ProductItems table. A Replication topology is needed to copy the ProductItems table to the SQL Server samples included in computers. The only time the ProductItems will be refreshed, is when the computers do not link to the CertKiller.com network. Furthermore, the Products table is from between econnections frequently. You need to run the Replication topology alongside the Subscription type with the minimum amount of bandwidth usage.

Page 243: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider running the Merge Replication topology simultaneously with a Pull Subscription.

Page 244: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You work as a database administrator at CertKiller.com. CertKiller.com is using a SQL Server 2008 instance that contains a database named CK_Prod. The database contains a Products table. You have developed a Merge Replication topology and a Publication which owns a 25-dayretention period; so that the Products table can be reproduce to the SQL Server instances at remote locations. After a one month break the CertKiller.com user named Mia Hamm, noticed that CK_Prod does not include her latest data. During the investigation you came upon the following error message: "Replication: expired subscription dropped.” Mia Hamm needs the latest data in her database and you should ensure that the information changes are properly doubled.

Page 245: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server

• You should consider reinitializing the publication and produce a new snapshot immediately.

Page 246: Exam 70-432. QUESTION You work as the network administrator at CertKiller.com. CertKiller.com has acquired an enterprise application that runs SQL Server