70-432 mcts sql 2008

Upload: tumi-minaar

Post on 07-Apr-2018

224 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/6/2019 70-432 MCTS SQL 2008

    1/57

    Microsoft 70-432

    70-432 TS: Microsoft SQL Server 2008 ,

    Implementation and Maintenance

    Practice Test

    Updated: Dec 15, 2009

    Version 5.0

  • 8/6/2019 70-432 MCTS SQL 2008

    2/57

    ActualTe

    sts.com

    QUESTION NO: 1

    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. Furthermore it must 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.

    What should you do?

    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.

    Answer: A

    QUESTION NO: 2

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008instance. 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 the data file and

    the transaction log file to drive G.

    What should you do?

    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';

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 2

  • 8/6/2019 70-432 MCTS SQL 2008

    3/57

    ActualTe

    sts.com

    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';

    Answer: D

    Explanation:

    Part 2, Configure SQL Server instances. (4 questions)

    QUESTION NO: 3

    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.

    What should you do?

    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 that will point to the stored procedure which is evaluated

    on demand.

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

    on demand.

    Answer: B

    QUESTION NO: 4

    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.

    What should you do?

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

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

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 3

  • 8/6/2019 70-432 MCTS SQL 2008

    4/57

    ActualTe

    sts.com

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

    D. You should consider configuring the Agent XPs for sp_configure configuration.

    Answer: B

    QUESTION NO: 5

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008

    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.

    What should you do?

    A. You should consider using the SQL Server 2008 as the default instance.

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

    new application to use the new instance.

    C. You should consider updating the SQL Server 2000 application to use SQL Server 2008.

    D. You should consider updating the SQL Server 2000 instance to a SQL Server 2008 instance.

    Answer: B

    QUESTION NO: 6

    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 move a web application from

    Microsoft SQL Server 2005 to Microsoft SQL Server 2008. However, you need to control the SQL

    Server sample to remember the use of features.

    What should you do?

    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.

    Answer: A

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 4

  • 8/6/2019 70-432 MCTS SQL 2008

    5/57

    ActualTe

    sts.com

    Explanation:

    Part 3, Configure SQL Server services. (1 question)

    QUESTION NO: 7

    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. 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.

    What should you do?

    A. You should consider setting the IIS Service.

    B. You should consider setting the SQL Server service.

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

    D. You should consider setting the Web Service.

    Answer: B

    Explanation:

    Part 4, Configure additional SQL Server components. (5 questions)

    QUESTION NO: 8

    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. CERTKILLER-

    DB04 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?

    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 SQLServer Browser technology.

    D. You should consider using the Internet Information Services and the Microsoft Distributed

    Transaction Coordinator technology.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 5

  • 8/6/2019 70-432 MCTS SQL 2008

    6/57

    ActualTe

    sts.com

    Answer: C

    QUESTION NO: 9

    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 Certkiller.com security policy.

    What should you do?

    A. You should consider changing the configuration of the SQL Server Best Practices Analyzer

    (BPA).

    B. You should consider changing the RSReportServer.config configuration file and run it again.C. You should consider developing a Transact-SQL script based on the sp_configure stored

    procedure.

    D. 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.

    Answer: D

    QUESTION NO: 10

    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.

    What should you do?

    A. You should consider using the Internet Information Services default Web site and update the

    SSRS instance.

    B. You should consider using the Single mode and update the SSRS database.

    C. You should consider using the http.sys listener and install the SSRS instance.

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

    Answer: D

    QUESTION NO: 11

    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

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 6

  • 8/6/2019 70-432 MCTS SQL 2008

    7/57

    ActualTe

    sts.com

    2005 Analysis Services (SSAS) that is accessed by an Internet Information Services application by

    using anonymous access. However, management wants the application to process the SSAS

    sample.

    What should you do?

    A. You should consider increasing a new Microsoft SQL Server 2005 Analysis Services (SSAS) to

    the Security\ RequireClientAuthentication server configuration.

    B. You should consider configuring the Security\RequireClientAuthentication server configuration

    to True.

    C. You should consider configuring the Security\RequireClientAuthentication server configuration

    to False.

    D. You should consider configuring the Security\RequireClientAuthentication server configuration

    to Default value.

    Answer: C

    QUESTION NO: 12

    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. Management wants you to ensure that the third-party applications can run

    on both database instances with the minimum amount of administrative effort.

    What should you do?

    A. You should consider updating the SQL Server 2000 instance application to use the SQL Server

    2008 instance.

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

    application to utilize the new instance.

    C. You should consider installing SQL Server 2008 as a default instance and set the new

    application to utilize the new instance.

    D. You should consider updating the SQL Server 2000 application to use the SQL Server 2008.

    Answer: B

    Explanation:

    Part 5, Implement database mail. (1 question)

    QUESTION NO: 13

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 7

  • 8/6/2019 70-432 MCTS SQL 2008

    8/57

    ActualTe

    sts.com

    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.

    What should you do?

    A. You should consider changing the configurations of the SMTP.

    B. You should consider increasing another SMTP account for it.

    C. You should consider setting a new Database Mail profile that will be used for the reports to

    management.

    D. You should consider changing the configurations of the Database Mail system.

    Answer: C

    Explanation:

    Part 6, Configure full-text indexing. (2 questions)

    QUESTION NO: 14

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008instance. 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.

    What should you do?

    A. You should consider adding a full-text index.

    B. You should consider changing a full-text index.

    C. You should consider rebooting the MSFTESQL services.

    D. You should consider reproducing the full-text index.

    Answer: D

    QUESTION NO: 15

    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 whole types of products. The users at Certkiller.com search CK_Tbl which is based

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 8

  • 8/6/2019 70-432 MCTS SQL 2008

    9/57

    ActualTe

    sts.com

    on the TestPro column. The TestPro column owns the NULL value for the whole products other

    than Televisions. However, there is no index on the TestPro column presently. You have received

    instructions from management to ensure to make the query performance higher even through the

    effect on the disk space is minimized.

    What should you do?

    A. You should consider developing a unique index on the TestPro column.

    B. You should consider developing a default index on the TestPro column.

    C. You should consider developing a clustered index on the TestPro column.

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

    Answer: D

    QUESTION NO: 16

    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.

    What should you do?

    A. You should consider setting the Login auditing setting to failed and successful logins.

    B. You should consider setting the authentication mode to SQL Server and Windows

    Authentication mode.

    C. You should consider disabling the C2 Audit Tracing setting.

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

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

    Answer: D

    QUESTION NO: 17

    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

    SerTest\Test account is used by the SQL Server Agent service. Certkiller.com also uses a file that

    can be stored to a log serve, by using a job named CK_MTest. However, CK_MTest cannotaccess 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.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 9

  • 8/6/2019 70-432 MCTS SQL 2008

    10/57

    ActualTe

    sts.com

    What should you do?

    A. You should consider using the remote Service account.

    B. You should consider using the remote System account.

    C. You should consider using the Local Service account.

    D. You should consider using the Domain account.

    Answer: D

    QUESTION NO: 18

    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.

    What should you do?

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

    B. You should consider creating another Tester schedule for CK_Tst for Sundays.

    C. You should consider removing the schedule for Sundays.

    D. You should consider disable the schedule for Sundays.

    Answer: A

    QUESTION NO: 19

    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:

    * 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 message is sent to the developers when the maintenance plan could not run

    normally.

    What should you do?

    A. You should consider making a fail-safe operator disable for the SQL Server Agent.

    B. You should consider modifying the SQL Server Agent job so that it runs the database

    maintenance plan to notify the proper developers.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 10

  • 8/6/2019 70-432 MCTS SQL 2008

    11/57

    ActualTe

    sts.com

    C. You should consider modifying the database maintenance plan to contain a Notify Operator

    task that will e-mail the proper developers.

    D. You should consider making a fail-safe operator enable for the SQL Server Agent.

    Answer: B

    QUESTION NO: 20

    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 CERTKILLER-DB2

    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.

    What should you do?

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

    B. You should consider resetting the Web service to log.

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

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

    automatically.

    Answer: D

    QUESTION NO: 21

    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.

    What should you do?

    A. You should consider developing an Alert that will be raised when the job completes. You should

    also set it so that it calls another job when you are using this alert.

    B. You should consider developing a Transactions Log which is scheduled to run twice.

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

    D. You should consider developing a job which belongs to the Database Maintenance category.

    Answer: C

    Explanation:

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 11

  • 8/6/2019 70-432 MCTS SQL 2008

    12/57

    ActualTe

    sts.com

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

    Part 3, Manage SQL Server Agent operators. (1 question)

    QUESTION NO: 22

    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.

    What should you do?

    A. You should consider checking the INDEXDEFRAG log.

    B. You should consider checking the SQLAGENT.OUT log.

    C. You should consider checking the ERRORLOG log.

    D. You should consider checking the VIEWDELETE log.

    Answer: B

    Explanation:

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

    QUESTION NO: 23

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008

    instance that has a table named CK_Inventory. CK_Inventory 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 Certkiller.com policy is adhering to.

    What should you do?

    A. You should consider developing a trigger which rolls back changes to CK_Price that does not

    comply with the Certkiller.com policy.B. You should consider developing a view which rolls back changes to CK_Price that does not

    comply with the Certkiller.com policy.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 12

  • 8/6/2019 70-432 MCTS SQL 2008

    13/57

    ActualTe

    sts.com

    C. You should consider developing a stored procedure which rolls back changes to CK_Price that

    does not comply with the Certkiller.com policy.

    D. You should consider developing a primary key constraint to a table which includes valid prices

    on CK_Price.

    Answer: A

    Explanation:

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

    QUESTION NO: 24

    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 Certkiller.com managers want CERTKILLER-DB1 to work as it was in

    the past.

    What should you do?

    A. You should consider rebuilding the entire SQL Server Web Service for the database.

    B. You should consider reserving the model and master databases for the database.C. You should consider reserving the Log Transaction for the database.

    D. You should consider rebuilding the entire table schema for the database.

    Answer: B

    QUESTION NO: 25

    You work as a database administrator at Certkiller.com. Certkiller.com is using two SQL Server2008 sample named CKSmp1 and CKSmp2. Furthermore, CKSmp1 contains a database named

    CK_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.

    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.

    What should you do?

    A. You should consider using CK_DB and ALTER LOGIN Mia WITH DEFAULT_DATABASE =

    CK_DB;

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 13

  • 8/6/2019 70-432 MCTS SQL 2008

    14/57

    ActualTe

    sts.com

    B. You should consider using CK_DB and ALTER LOGIN Mia WITH PASSWORD = 'Re#99$45'

    UNLOCK;

    C. You should consider the following: USE CK_DB and ALTER LOGIN Mia ENABLE.

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

    Answer: D

    QUESTION NO: 26

    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.* The password complexity rules should be enforced.

    What should you do? (Choose TWO)

    A. You should consider using the ALTER LOGIN ... CHECK_EXPIRATION = OFF statement to

    change the entire logins.

    B. You should consider using the ALTER LOGIN ... CHECK_POLICY = ON statement to change

    the entire logins.

    C. You should consider using the ALTER LOGIN ... CHECK_POLICY = OFF statement to change

    the entire logins.

    D. You should consider developing an SQL Server Agent job which implements to raise an alert, if

    a violation is found.

    Answer: B,D

    Explanation:

    Part 2, Manage users and database roles . (2 questions)

    QUESTION NO: 27

    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.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 14

  • 8/6/2019 70-432 MCTS SQL 2008

    15/57

    ActualTe

    sts.com

    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.

    What should you do?

    A. You should consider modifying CK_Prod and increase the WITH EXECUTE AS OWNER option

    to its header.

    B. You should consider modifying CK_Prod and the WITH EXECUTE AS OWNER option to its

    header.

    C. You should consider running, GRANT SELECT ON dbo.Master'TO Clerk.

    D. You should consider running, GRANT SELECT ON dbo.CK_Tbl'TO Clerk.

    Answer: A

    QUESTION NO: 28

    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 you leave, you have give a

    Certkiller.com user named Mia Hamm permission to keep the database snapshots. You need to

    make sure that Mia Hamm has the proper rights to remove the database snapshots.

    What should you do?

    A. You should allow Mia Hamm to use UPDATE.

    B. You should allow Mia Hamm to use DROP DATABASE.

    C. You should allow Mia Hamm to use INSERT ANY DATASPACE.

    D. You should allow Mia Hamm to use CREATE.

    Answer: B

    Explanation:

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

    QUESTION NO: 29

    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.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 15

  • 8/6/2019 70-432 MCTS SQL 2008

    16/57

    ActualTe

    sts.com

    What should you do?

    A. You should consider making use of Transactions Log.

    B. You should consider giving suitable server-level rights to the whole SQL Server logins to the

    developers.

    C. You should consider increasing the database roles of the developers to a fixed database role.

    D. You should consider giving suitable server-level rights to the default SQL Server logins to the

    developers.

    Answer: B

    QUESTION NO: 30

    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.

    What should you do?

    A. You should consider adding the following:

    CREATE ROLE Developers;EXEC sp_addrolemember 'sp_dbdatareader', 'Developers';

    EXEC sp_addrolemember 'sp_dbddladmin', 'Developers';EXEC sp_addrolemember 'Developers', ' Clerk';

    B. You should consider adding the following:

    DROP ROLE Developers;GRANT VIEW DEFINITION TO Developers;

    GRANT SELECT TO Developers;

    EXEC sp_addrolemember 'Developers', 'Clerk ';

    C. You should consider adding the following:

    CREATE ROLE Developers;

    GRANT VIEW DEFINITION TO Developers;

    GRANT SELECT TO Developers;

    EXEC sp_addrolemember 'Developers', 'Clerk ';

    D. You should consider adding the following:

    GRANT VIEW ANY DEFINITION TO 'Clerk;

    EXEC sp_addrolemember 'db_datareader', 'Clerk ';

    Answer: C

    QUESTION NO: 31

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 16

  • 8/6/2019 70-432 MCTS SQL 2008

    17/57

    ActualTe

    sts.com

    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),

    GroupTest 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.

    What should you do?

    A. You should consider developing a Microsoft SQL Server 2005 Reporting Services (SSRS) that

    will result in the SQL Server Windows service to stop during non-business hours.

    B. You should consider developing a SQL Server Agent job that will result in the SQL Server

    Windows service to stop during non-business hours.

    C. You should consider developing a logon trigger which could not permit the connection to

    CK_Prod during non-business hours.

    D. You should consider developing a Microsoft SQL Server 2005 Integration Services (SSIS) that

    will result in the SQL Server Windows service to stop during non-business hours.

    Answer: C

    Explanation:

    Part 4, Manage database permissions. (1 question)

    QUESTION NO: 32

    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 Certkiller.com learner administrator named CK_ProdApp in CK_Prod. You

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 17

  • 8/6/2019 70-432 MCTS SQL 2008

    18/57

    ActualTe

    sts.com

    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.

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

    What should you do?

    A. You should consider allowing the proper database-level rights to default database.

    B. You should consider allowing the proper database-level rights to CK_Tst.

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

    D. You should consider increasing a new role in the local group.

    Answer: C

    Explanation:

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

    QUESTION NO: 33

    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.

    What should you do?

    A. You should consider adding the following:

    ALTER TABLE Products. Test SWITCH TO CK_Tester.Table1;

    B. You should consider adding the following:

    ALTER AUTHORIZATION ON Products. Test TO CK_Tester;

    C. You should consider adding the following:

    ALTER USER Products WITH DEFAULT_SCHEMA = CK_Tester;

    D. You should consider adding the following:

    ALTER SCHEMA CK_Tester TRANSFER Products. Test

    Answer: D

    QUESTION NO: 34

    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

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 18

  • 8/6/2019 70-432 MCTS SQL 2008

    19/57

    ActualTe

    sts.com

    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.

    What should you do?

    A. You should consider using the following:

    EXEC dbo.sp_droprolemember 'db_master', "Certkiller\Mia";

    B. You should consider using the following:

    DROP LOGIN "Certkiller\Mia";

    C. You should consider using the following:

    CREATE LOGIN "Mia\Mia" FROM Windows;DENY CONNECT SQL TO " Mia\Mia ";

    D. You should consider using the following:

    REMOVE LOGIN "Certkiller\Mia";

    Answer: C

    Explanation:

    Part 6, Audit SQL Server instances. (3 questions)

    QUESTION NO: 35

    You work as a database administrator at Certkiller.com. Certkiller.com has 15 retail stores, each

    with their own SQL Server 2008 computer. Each retail store keeps transactions of point-of-sale ina database table named Sales. The Sales table also includes sales information from other stores

    to enable customer returns to any of the 15 retail stores. You have received instructions to refresh

    the data in the main office to every retail store every hour. You should also use trigger called

    trg_Coupon to produce sales coupons based on customer sales and buying patterns. Currently

    replication between the server in every retail store and a middle server in the main office occurs in

    real time. You should not have this replication. What should you do?

    A. You should build multiple merge publications, one at every store and one in the main office.

    B. You should utilize transactions log between the server in each retail store and the central server

    in the main office.

    C. You should utilize merge replication. You should set the trg_Coupon trigger on the server in

    each retail store to use the NOT FOR REPLICATION option.

    D. Snapshot replication should be utilized. You should set the trg_Coupon trigger on the server in

    every store to utilize the NOT FOR REPLICATION option.

    Answer: C

    QUESTION NO: 36

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 19

  • 8/6/2019 70-432 MCTS SQL 2008

    20/57

    ActualTe

    sts.com

    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 losses.

    What should you do?

    A. You should consider creating Transactions Log and develop the TestTeam operator.

    B. You should consider developing the TestTeam operator and give the operator as the failCsafe

    operator, there after you make the job enable.

    C. You should consider adding a store procedure to develop the TestTeam operator.

    D. You should consider enabling the Notifications and develop the TestTeam operator. There after

    you should lead the Notification the TestTeam operator on job failure.

    Answer: D

    QUESTION NO: 37

    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.

    What should you do?

    A. You should consider setting the cost threshold for parallelism.

    B. You should consider setting the DBCC VIEWDELETE.

    C. You should consider setting the DBCC SHRINKFILE.

    D. You should consider setting the DBCC INDEXDEFRAG.

    E. You should consider setting the store procedure.

    Answer: A

    Explanation:

    Part 7, Manage transparent data encryption. (2 questions)

    QUESTION NO: 38

    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.

    What should you do?

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 20

  • 8/6/2019 70-432 MCTS SQL 2008

    21/57

    ActualTe

    sts.com

    A. Every individual node should have the encryption license.

    B. The local group should have the encryption license.

    C. The no-cluster and cluster group should have the encryption license.

    D. The no-cluster group should have the encryption license.

    Answer: A

    QUESTION NO: 39

    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.

    What should you do?

    A. You should consider adding Log on CK_DB, and encrypt the information at fixed time.

    B. You should consider enabling the Transparent Database Encryption on CK_DB and back up

    the transaction log.

    C. You should consider enabling the Transparent Database Encryption on CK_DB and the master

    database.

    D. You should consider making CK_DB running normal by stored procedures and functions.

    Answer: B

    Explanation:

    Part 8, Configure surface area. (0 questions)

    QUESTION NO: 40

    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 CERTKILLER-DB1 andCERTKILLER-DB2. Both of these computers contain a copy of a database named CK_DB. You

    are using transactional replication between CERTKILLER-DB1 and CERTKILLER-DB2 for

    CK_DB. The backups of the databases are as follows:

    * Full backup is performed every night.

    * Transaction log backups are performed every hour.

    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 CERTKILLER-DB2 was not affected. You need to return CK_DB on CERTKILLER-DB1 and ensure that minimal

    amount of data loss impact on these servers.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 21

  • 8/6/2019 70-432 MCTS SQL 2008

    22/57

    ActualTe

    sts.com

    What should you do?

    A. You should consider reserving only the latest transaction log backup.

    B. You should consider reserving the latest full database backup and the whole transaction logs

    made since the past backup could be made.

    C. You should consider detaching CK_DB on CERTKILLER-DB2 and copy CK_DB to

    CERTKILLER-DB1, and link the database on both servers.

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

    backup to CERTKILLER-DB1.

    Answer: D

    QUESTION NO: 41

    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 daily. Transaction log backups must be

    every afternoon and morning and that you should keep in mind that the content of the log will get

    larger and larger. You also need to take measure to do the log file.

    What should you do?

    A. You should consider cutting the number of time between transaction log backups for the

    database.B. You should consider cutting the SQL sentences in order to make the smallest value for the

    database.

    C. You should consider setting the database to use the simple recovery model for the database.

    D. You should consider cutting the DBCC SHRINKFILE towards the transaction log file for the

    database.

    Answer: A

    QUESTION NO: 42

    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 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 day before. Deletion is the first

    step for the database. However, later in the day many other changes have happened in CK_Prod.

    What should you do?

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 22

  • 8/6/2019 70-432 MCTS SQL 2008

    23/57

    ActualTe

    sts.com

    A. You should consider reserving the Full Backup of the night before and all transaction log

    backups until the 10:00 backup. Use the STOP AT statement on the some restores.

    B. You should consider using the Delete subquery in the INSERT statement to transfer the deleted

    rows from the morning's database before the snapshot to the CurrentSpeaker.

    C. You should consider reserving the Full Backup and all transaction log backups until the 10:00

    backup. Use the STOP AT statement on the last restore.

    D. 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.

    Answer: D

    QUESTION NO: 43

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008instance 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.

    What should you do?

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

    BACKUP DATABASE CK_DB TO DISK = 't:\backups\finance.bak'

    B. You should consider using the following Transact-SQL statement:

    BACKUP DATABASE CK_DB TO DISK = 't:\backups\finance.bak' WITH DIFFERENTIAL;

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

    BACKUP DATABASE CK_DB TO DISK = 't:\backups\ TT_DB.bak' WITH COMPRESSION;

    D. You should consider using the following Transact-SQL statement:

    BACKUP DATABASE CK_DB TO DISK = 't:\backups\finance.bak' WITH COMPRESSION,

    DIFFERENTIAL;

    Answer: C

    QUESTION NO: 44

    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.

    What should you do?

    A. You should consider using the TRANSACTION LOG.

    B. You should consider using the INSTALL.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 23

  • 8/6/2019 70-432 MCTS SQL 2008

    24/57

    ActualTe

    sts.com

    C. You should consider using the DATA.

    D. You should consider using the LOG.

    Answer: D

    QUESTION NO: 45

    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 contains recovery model. 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 spaces that

    complies with Certkiller.com.

    What should you do?

    A. You should consider running a transaction log backup every three hours during business hours.

    B. You should consider running a full database backup daily.

    C. You should consider running a differential backup every three hours during business hours.

    D. You should consider running a full database backup daily and a differential backup every three

    hours during business hours.

    Answer: D

    QUESTION NO: 46

    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.

    What should you do?

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

    B. You should consider using the following:

    bak ' WITH NOUNLOAD;

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 24

  • 8/6/2019 70-432 MCTS SQL 2008

    25/57

    ActualTe

    sts.com

    C. You should consider using the following:

    trn' WITH DIFFERENTIAL;

    D. You should consider using the following:

    trn' WITH COPY_ONLY;

    E. You should consider using the following:

    trn ' WITH NOUNLOAD;

    F. You should consider using the following:

    bak' WITH DIFFERENTIAL;

    Answer: C

    Explanation:

    Part 2, Restore databases. (8 questions)

    QUESTION NO: 47

    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 get the info on the torn page errors.

    What should you do?

    A. You should consider restoring the database from the latest snapshot of the database.B. You should consider restoring the latest database backup and then restore the transaction logs

    which have been made since the latest backup.

    C. You should consider using DBCC CHECKDB.

    D. 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.

    Answer: D

    QUESTION NO: 48

    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 runthe backup as soon as possible.

    What should you do?

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 25

  • 8/6/2019 70-432 MCTS SQL 2008

    26/57

    ActualTe

    sts.com

    A. You should consider running the full backup of the database hourly and set a Check Database

    Integrity task to run every day to avoid this kind of risk.

    B. You should consider running a full backup daily at 20:00 and set a second Back up Database

    task to run differential backup. You should also consider setting a third Back up Database job to

    run transaction log backups hourly.

    C. You should consider running a full backup daily at 20:00 and set a second Back up Database

    task to run differential backup. You should also consider running a Check Database Integrity task

    to run hourly.

    D. You should consider running a full backup daily at 09:00 and 14:00 and set a second Back up

    Database task to do transaction log backups hourly.

    Answer: B

    QUESTION NO: 49

    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:23. You have received instructions to ensure that you recovery the database to its

    original status.

    What should you do?

    A. You should consider using the following:

    bak WITH NORECOVERY;RESTORE LOG Product FROM "t:\backups\ CK_Prod_0930.trn"

    WITH RECOVERY, STOPAT = 'Mar 17, 2008 09:23 AM';

    B. You should consider using the following:

    bak WITH NORECOVERY;

    RESTORE LOG Product FROM "t:\backups\ CK_Prod_0915.trn"

    WITH RECOVERY, STOPAT = 'Mar 17, 2008 09:23 AM';

    C. You should consider using the following:

    bak WITH NORECOVERY;

    RESTORE LOG Product FROM "t:\backups\ CK_Prod_0915.trn"

    D. You should consider using the following:

    WITH RECOVERY, STOPAT = 'Mar 17, 2008 09:23 AM';

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 26

  • 8/6/2019 70-432 MCTS SQL 2008

    27/57

    ActualTe

    sts.com

    bak WITH STOPAT = 'Mar 17, 2008 09:23 AM';

    Answer: B

    QUESTION NO: 50

    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

    What should you do?

    A. You should consider restoring the latest database backup and then restore the transaction logs

    which have been made since the latest backup.

    B. 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.

    C. You should consider using DBCC CHECKDB.

    D. You should consider restoring the database from the latest snapshot of the database.

    Answer: B

    QUESTION NO: 51

    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.

    What should you do?

    A. You should consider recovering the full backup taken daily and thereafter recover the

    differential backup taken on Wednesday.

    B. You should consider recovering the full backup on Wednesday and thereafter recover the

    differential backup taken on Sunday.C. You should consider recovering the full backup on Sunday and thereafter recover the

    differential backup taken on Wednesday.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 27

  • 8/6/2019 70-432 MCTS SQL 2008

    28/57

    ActualTe

    sts.com

    D. You should consider backing up the transaction log and recovery the full backup taken on

    Sunday and then recovery differential backup taken on Tuesday.

    Answer: D

    QUESTION NO: 52

    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 recovery CK_DB with the minimal

    amount of data loss.

    What should you do?

    A. You should consider recovering the differential backup files.

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

    C. You should consider recovering the database snapshot from 21:00.

    D. You should consider recovering the database snapshot from 20:00.

    Answer: B

    QUESTION NO: 53

    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.

    What should you do?

    A. You should consider using the most recent store produce log backup for the database.

    B. You should consider using the old database backup for the database.

    C. You should consider running the full database backup.

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

    Answer: D

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 28

  • 8/6/2019 70-432 MCTS SQL 2008

    29/57

    ActualTe

    sts.com

    QUESTION NO: 54

    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 CERTKILLER-DB1 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 CERTKILLER-DB2 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 CERTKILLER-

    DB2 was not affected. You need to return CK_DB on CERTKILLER-DB1 and ensure that minimalamount of data loss impact on these servers.

    What should you do?

    A. You should consider detaching CK_DB on CERTKILLER-DB2 and copy CK_DB to

    CERTKILLER-DB1, and link the database on both servers.

    B. You should consider reserving the latest full database backup and the whole transaction logs

    made since the past backup could be made.

    C. You should consider reserving only the latest transaction log backup.

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

    backup to CERTKILLER-DB1.

    Answer: D

    Explanation:

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

    QUESTION NO: 55

    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 Certkiller.com's SQL Server 2008 is

    configured to make use of the -T1222 and -T1204 trace flags during boot. You have received

    instructions to make sure that the recovery method backs up the use of the trace flags.

    What should you do?

    A. You should consider backing up the SQL Server Log.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 29

  • 8/6/2019 70-432 MCTS SQL 2008

    30/57

    ActualTe

    sts.com

    B. You should consider backing up the default database.

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

    D. You should consider backing up the master database.

    Answer: C

    QUESTION NO: 56

    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

    special point in time.

    What should you do?

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

    B. You should consider ensuring that CK_Prod uses the half recovery model.

    C. You should consider ensuring that CK_Prod uses the Transactions Log.

    D. You should consider ensuring that CK_Prod uses the store procedure.

    Answer: A

    QUESTION NO: 57

    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.

    * 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 receivedinstructions to recovery CK_USERS with minimal data loss and in the shortest time as possible.

    What should you do?

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 30

  • 8/6/2019 70-432 MCTS SQL 2008

    31/57

    ActualTe

    sts.com

    A. You should consider backing up the transaction log and recovery the latest backup of

    CK_USERS and recovery the entire transaction log backups after the most resent backup.

    B. You should consider backing up the transaction log and recovery the oldest backup of

    CK_USERS and recovery the entire transaction log backups after the most resent backup.

    C. You should consider recovering the oldest backup of CK_USERS.

    D. You should consider recovering the latest backup of CK_USERS.

    Answer: D

    Explanation:

    Part 4, Manage database snapshots. (4 questions)

    QUESTION NO: 58

    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. However, Certkiller.com is now using 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 data could be changed without the database going offline.

    What should you do?

    A. You should consider using Database Recovery.B. You should consider using store procedure.

    C. You should consider using Transaction log backup.

    D. You should consider using Database snapshots.

    Answer: D

    QUESTION NO: 59

    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 often each day. However, you have received instructions from

    management to create a read-only copy of CK_Prod1 for reporting purposes at the start of each

    day.

    What should you do?

    A. You should consider using the Transactions Log.

    B. You should consider using the store procedure.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 31

  • 8/6/2019 70-432 MCTS SQL 2008

    32/57

    ActualTe

    sts.com

    C. You should consider using the database snapshots.

    D. You should consider using the schema-bound views and XML schema.

    Answer: C

    QUESTION NO: 60

    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 is not safe.

    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.

    What should you do?

    A. You should consider making the database Read Committed Snapshot isolation.

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

    C. You should consider making the database Auto Update Statistics.

    D. You should consider changing the stored procedure to utilize the Read Committed Snapshot

    isolation level.

    Answer: B

    QUESTION NO: 61

    You work as a database administrator at Certkiller.com. Certkiller.com is using a SQL Server 2008

    instance. Certkiller.com has five automated testing areas for finished 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

    speedily and that it can be used for reporting.

    What should you do?

    A. You should consider developing a separate snapshot publication at every testing area for the

    test results and a pull subscription on each distributor to the SQL Server.

    B. You should consider developing a separate snapshot publication at every testing area for the

    test results and a merge subscription on each distributor to the SQL Server.

    C. You should consider developing a separate transactional publication at every testing area for

    the test results and a merge subscription on each distributor to the SQL Server.D. You should consider developing a separate transactional publication at every testing area for

    the test results and a push subscription on each testing area.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 32

  • 8/6/2019 70-432 MCTS SQL 2008

    33/57

    ActualTe

    sts.com

    Answer: D

    Explanation:

    Part 5, Maintain database integrity. (3 questions)

    QUESTION NO: 62

    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 the early

    detection of suspect pages in CK_Prod.

    What should you do?

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

    database.

    B. You should consider configuring the database compatibility level option to 5.

    C. You should consider switching of the TRUSTWORTHY database selection for the database.

    D. You should consider configuring the PAGE_VERIFY database selection to

    TORN_PAGE_DETECTION.

    Answer: A

    QUESTION NO: 63

    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 use to check is

    the database integrity check (DBCC CHECKDB) was implemented for a special database.

    What should you reply?

    A. You should tell him to check the log file of INDEXDEFRAG.

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

    C. You should tell him to check the log file of SQLAGENT.

    D. You should tell him to check the log file of VIEWDELETE.

    Answer: B

    QUESTION NO: 64

    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 create a repository of function

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 33

  • 8/6/2019 70-432 MCTS SQL 2008

    34/57

    ActualTe

    sts.com

    information with the following characteristics:

    * The data collector is utilized to collect function information.

    * One database reserves function information for the entire instances.

    * Function information which is older than 15 days is removed.

    * Administrative effort to operate function data should minimal.

    What should you do?

    A. You should consider creating a single Microsoft SQL Server 2005 Analysis Services (SSAS)

    package process to reserve and remove performance data.

    B. You should consider setting a management data warehouse process on every instance to

    reserve and remove performance data in one database for the entire instances.

    C. You should consider creating a single Microsoft SQL Service Integration Services (SSIS)

    package process to reserve and remove performance data.

    D. You should consider creating a single Microsoft SQL Server 2005 Reporting Services (SSRS).

    Answer: B

    Explanation:

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

    QUESTION NO: 65

    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 at a hourly

    basis. You need to reserve the CK_TST to keep the disk space.

    What should you do?

    A. You should consider using Page compression.

    B. You should consider using Windows NTFS file system compression.

    C. You should consider using Transaction compression.

    D. You should consider using Row compression.

    Answer: A

    QUESTION NO: 66

    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

    Business Intelligence Development Studio (BIDS). However, you need to design a package with

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 34

  • 8/6/2019 70-432 MCTS SQL 2008

    35/57

    ActualTe

    sts.com

    the following characteristics:

    * It should be transactional.

    * It can use 10 tables.

    * It should be stored in the msdb database of a server which is remote.

    What should you do?

    A. You should consider using the Package Migration Wizard to create the package.

    B. You should consider using the DTS Designer to create the package.

    C. You should consider using the Create Package submenu to create the package.

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

    package.

    Answer: D

    QUESTION NO: 67

    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. 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 the list conditions is met A Microsoft

    Office Open XML document format. Furthermore, the data export process is protected for reuse.

    What should you do?

    A. You should consider using the bulk copy program function.

    B. You should consider using the SQLCmd function and save the output to a file.

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

    file.

    D. You should consider using the bulk copy program function along with a format file and an

    output file.

    Answer: C

    QUESTION NO: 68

    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 ensure that

    the entire SQL Server samples are set for the following listed aspects.* Security configurations

    * Avoidance of data fragmentation

    * Naming conventions

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 35

  • 8/6/2019 70-432 MCTS SQL 2008

    36/57

    ActualTe

    sts.com

    * Force index creation

    What should you do?

    A. You should consider using the Process Control Tool.

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

    C. You should consider creating a maintenance plan in Microsoft SQL Server Management Studio.

    D. You should consider using the Web Service Tool.

    Answer: B

    QUESTION NO: 69

    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 output information from SQL

    Server to a Microsoft Excel. However, you need to save the package definition to a file.

    What should you do?

    A. You should consider using Register.exe.

    B. You should consider using sqlmaint.exe.

    C. You should consider using dtexec.exe.

    D. You should consider using update.exe.

    Answer: C

    QUESTION NO: 70

    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 apackage 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.

    What should you do?

    A. You should consider using the Package Migration Wizard to create the package.

    B. You should consider using the DTS Designer to create the package.

    C. You should consider using the Create Package submenu to create the package.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 36

  • 8/6/2019 70-432 MCTS SQL 2008

    37/57

    ActualTe

    sts.com

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

    package.

    Answer: D

    Explanation:

    Part 2, Manage data partitions. (2 questions)

    QUESTION NO: 71

    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 partitioned is as follows:

    Partition 1 has integer values between 5 and 20,000 and partition 2 has integer values greater

    than 20,000. You have received instructions to ensure that you can create a third partition that will

    include the integer values greater than 40,000.

    What should you do?

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

    B. You should consider adjusting existing partition function through utilizing a Merge clause.

    C. You should consider adjusting existing partition scheme.D. You should consider developing a new partition function.

    Answer: A

    QUESTION NO: 72

    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 anOrderHistory 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 OrderHistory table. However, you have received instructions that the process are

    able to double at the end of each month.

    What should you do?

    A. You should consider changing the partition function of the OrderHistory table by using the split

    selection and change the proper partition of the Orders table to the proper

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 37

  • 8/6/2019 70-432 MCTS SQL 2008

    38/57

    ActualTe

    sts.com

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

    C. You should consider changing the Orders table by using the merge selection and change the

    partition function of the Orders table through utilizing the split

    D. You should consider changing the OrderHistory table by using the merge selection and change

    the Orders table by utilizing the merge option.

    E. You should consider changing the partition function of the Orders table through utilizing the split

    and then change the Orders table by using the merge selection.

    Answer: B

    Explanation:

    Part 3, Implement data compression. (0 questions)

    Part 4, Maintain indexes. (11 questions)

    QUESTION NO: 73

    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. You then add a Geography data type column named CK_Colmn to CK_Tbl. You

    need to ensure that you could develop a spatial index on CK_Colmn.

    What should you do?

    A. You should consider creating a clustered index for CK_Tbl.

    B. You should consider creating a primary key for CK_Tbl.

    C. You should consider creating a default index for CK_Tbl.

    D. You should consider creating a foreigner key for CK_Tbl.

    Answer: B

    QUESTION NO: 74

    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.TestProcedure2 AS

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

    4 DROPTABLE Products.TableTest1;

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 38

  • 8/6/2019 70-432 MCTS SQL 2008

    39/57

    ActualTe

    sts.com

    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 '."

    You need to correct the problem. What should you do?

    A. You should consider changing the CREATE TABLE permission.

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

    C. You should consider adding the ALTER permission on the Products schema to the user.

    D. You should consider adding the WITH EXECUTE AS 'dbo' clause between lines 3 and 4.

    Answer: B

    QUESTION NO: 75

    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.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 39

  • 8/6/2019 70-432 MCTS SQL 2008

    40/57

    ActualTe

    sts.com

    What should you do?

    A. You should consider creating a clustered index on the ProductLine, ListPrice, Class and Style

    columns.

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

    C. You should consider creating a nonclustered index on the Name column.

    D. You should consider creating a nonclustered index on the ProductLine, ListPrice columns.

    Answer: B

    QUESTION NO: 76

    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.

    What should you do?

    A. You should consider reproducing the entire index on the VideoTitle table.

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

    C. You should consider changing the query hint to force the optimizer to force an unclustered

    index seek.

    D. You should consider recreating the index on only the ReleaseDate column.

    Answer: B

    QUESTION NO: 77

    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. Youhave 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.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 40

  • 8/6/2019 70-432 MCTS SQL 2008

    41/57

    ActualTe

    sts.com

    What should you do?

    A. You should consider running the following:

    DBCC CHECKDB (CK_DB) WITH VIEWDELETE;

    B. You should consider running the following:

    DBCC CHECKDB (CK_DB) WITH EXTENDED_LOGICAL_CHECKS;

    C. You should consider running the following:

    DBCC INDEXDEFRAG(CK_DB)

    D. You should consider running the following:

    DBCC SHRINKFILE(CK_DB)

    Answer: B

    QUESTION NO: 78

    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 cluster to failover.

    What should you do?

    A. You should consider using the Prevent automatic failback option.B. You should consider using the allow failback immediately option.

    C. You should consider using the Allow failback only during non-business hours option.

    D. You should consider using the Allow failback only during business hours option.

    Answer: A

    QUESTION NO: 79

    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.

    What should you do?

    A. You should consider making the XML index on CK_ProdName disabled and change the

    primary key.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 41

  • 8/6/2019 70-432 MCTS SQL 2008

    42/57

    ActualTe

    sts.com

    B. You should consider transferring the XML data to a temporary before clearing the XML

    information from the original table by configuring CK_ProdName to NULL.

    C. You should consider changing the XML index and set the ALLOW_ROW_LOCKS = ON option.

    D. You should consider using the statement "Drop the XML index on the table" and change the

    primary key and then reproduce the XML index.

    Answer: D

    QUESTION NO: 80

    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 Non-

    scalable K-Means". You need to modify the attribute of the mining model.

    What should you do?

    A. You should consider changing SHRINKFILE.

    B. You should consider changing MODELLING_CARDINALITY.

    C. You should consider changing CLUSTERING_METHOD.

    D. You should consider changing INDEXDEFRAG.

    Answer: C

    QUESTION NO: 81

    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 many of 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.

    What should you do?

    A. You should consider using the Full index option.

    B. You should consider using the Page index option.

    C. You should consider using the Online option.

    D. You should consider using the Offline option.

    Answer: C

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 42

  • 8/6/2019 70-432 MCTS SQL 2008

    43/57

    ActualTe

    sts.com

    QUESTION NO: 82

    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."

    You need to ensure that you can change the ON clause of the search to perform a join. What

    should you do?

    A. You should consider adding the following:

    CK_Cmn) = UPPER(P.CK_Cmn)

    B. You should consider adding the following:

    CK_Cmn) = TRIM(P.CK_Cmn)

    C. You should consider adding the following:

    CK_Cmn= P.CK_Cmn COLLATE SQL_Latin1_General_CP1_CI_AS

    D. You should consider adding the following:

    CK_Cmn= P.CK_Cmn COLLATE SQL_Latin1_General_CP1_CS_AS

    Answer: D

    QUESTION NO: 83

    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 run a failover on the cluster,

    manually.

    What should you do? (Choose TWO)

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

    B. You should consider recreating a cluster for a backup to the active node.

    C. You should consider using Encrypting File System (EFS).D. You should consider deleting the shared array from the active node.

    Microsoft 70-432: Practice Exam

    "Pass Any Exam. Any Time." - www.actualtests.com 43

  • 8/6/2019 70-432 MCTS SQL 2008

    44/57

    ActualTe

    sts.com

    Answer: A,D

    Ex