You are on page 1of 87

Microsoft 70-432

TS: Microsoft SQL Server 2008,


Version: TS: Microsoft SQL Server 2008, Implementation and
Maintenance

Microsoft 70-432 Exam


QUESTION NO: 1
You work as a database administrator at ABC.com. You have just installed Microsoft SQL Server
Management Studio on one of ABC.coms workstations and the Microsoft Business Intelligence
Development Studio. You have been requested to design a 12 table transactional package to be
stored on an offsite servers msdb data store.
You decide that BIDS in this scenario is an overkill and you decide to uninstall it. What utility
should you run to create the requested package?
A. Use the bulk copy program.
B. Use the DTS Designer.
C. Use the Microsoft SQL Server Import and Export Wizard.
D. Use Process Control Tool.
E. Use the Package Migration Wizard.
F. Use the Process Control Tool
G. Use the ISIS.
Answer: C
Explanation:

QUESTION NO: 2 DRAG DROP


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_DB1. As part of your backup method of ABC_DB1,
you do a Full backup every Sunday at 01:00, you do a differential backup weekdays at 22:00, and
you do transactional log backup weekdays at 08:00; 12:00 and 16:00.
You have received notification that the user database data files have failed on Thursday at 15:00.
You need to ensure that ABC_DB1 are retrieve as quickly as possible with as small as possible
amount of data loss.
What steps should you take? Use only steps that apply.

BrainDumps.com

Microsoft 70-432 Exam

Answer:

BrainDumps.com

Microsoft 70-432 Exam

Explanation:

BrainDumps.com

Microsoft 70-432 Exam

QUESTION NO: 3 DRAG DROP


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. During the night a daily full backup of
ABC_Prod is started at 03:15, a differential backup is performed every 90 days minutes and a
transaction log backup is performed every 20 minutes.

BrainDumps.com

Microsoft 70-432 Exam


This particular day your CEO has requested that you make an extra full backup during the lunch
break starting at 11.30. How can you meet her request while keeping the database backup files in
order for future backups and restores?

Answer:

Explanation:

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

Microsoft 70-432 Exam


transaction log.

QUESTION NO: 4
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance hosts quite a few applications. ABC also has a server
named ABC-SR43 that is used to store log files.
You have to set up a new job that stores log files on ABC-SR43. You create a new account
ABC\Log_Account. You set it up to be run by the SQL Server Agent Services.
However, your job fails to store any log files on ABC-SR43. After some investigation you notice
that the job does not have permissions to store files on ABC-SR43.
How should you remedy the situation? Select the best option.
A. You should set up ABC\Log_Accoun as a Remote Service account.
B. You should set up ABC\Log_Accoun as a Domain service account.
C. You should set up ABC\Log_Accoun as a Local Service account.
D. You should set up ABC\Log_Accoun as a Local System account.
E. You should set up ABC\Log_Accoun as a Network Service account.
F. You should set up ABC\Log_Account as a Domain account.
Answer: F
Explanation:
The service startup account defines the Microsoft Windows account in which SQL Server Agent
runs and its network permissions. SQL Server Agent runs as a specified user account. For
compatibility with earlier versions of SQL Server, SQL Server Agent can also run as the Local
System account.
In this scenario you should select a Domain account, which allows sufficient permissions and
improved security.

QUESTION NO: 5
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that has a table named ABC_Training. ABC_ Training contains a column named
ABC_Distance. A new ABC.com training policy states that the training (ie. The ABC_Distance
column in the ABC_Training table) cannot be increased or decreased by more than 3%.

BrainDumps.com

Microsoft 70-432 Exam


How should you implement the ABC Training Policy?
A. You should consider developing a view which rolls back non-compliant ABC.com policy
changes to ABC_Distance.
B. You should consider developing a stored procedure which rolls back non-compliant ABC.com
policy compliant changes to the ABC_Distance column.
C. You should consider developing a primary key constraint to the ABC_training table which only
contains valid values on ABC_Distance.
D. You should consider developing a create trigger which rolls back non-compliant ABC.com
policy changes to the ABC_Distance column.
E. You should consider developing an update trigger which rolls back non-compliant ABC.com
policy changes to the ABC_Distance column.
F. You should consider developing a delete trigger which rolls back non-compliant ABC.com policy
changes to the ABC_Distance column.
Answer: E
Explanation:

QUESTION NO: 6
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_DB. ABC.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. This information includes files of data, backups, and log files.
How can this be achieved and still keep the performance and functionality of the web application?
Select one or two.
A. You should consider adding a transaction Log on ABC_DB, and set the information to be
encrypted for a fixed time.
B. Use BitLocker Drive Encryption on the hard drives on the SQL Server.
C. Use EFS (Encrypting File System) on the hard drives on the SQL Server.
D. You should consider enabling the Transparent Database Encryption on ABC_DB and back up
the transaction log.
E. You should consider enabling the Transparent Database Encryption on ABC_DB and enabling
the Transparent Database Encryption on master database.
F. Use cell-level encryption for the specific data that needs to be kept safe.
Answer: D
Explanation:
With the introduction of transparent data encryption (TDE) in SQL Server 2008, users now have
the choice between cell-level encryption as in SQL Server 2005, full database-level encryption by
using TDE, or the file-level encryption options provided by Windows. TDE is the optimal choice for

BrainDumps.com

Microsoft 70-432 Exam


bulk encryption to meet regulatory compliance or corporate data security standards. TDE works at
the file level, which is similar to two Windows features: the Encrypting File System (EFS) and
BitLocker Drive Encryption, the new volume-level encryption introduced in Windows Vista,
both of which also encrypt data on the hard drive. TDE does not replace cell-level encryption,
EFS, or BitLocker.

QUESTION NO: 7
You work as a database administrator at ABC.com. ABC.com is using two SQL Server 2008
sample named ABCSmp1 and ABCSmp2. Furthermore, ABCSmp1 contains a database named
ABC_DB. A ABC.com user named Mia Hamm uses her logon MiaHamm to log on to the database
on ABCSmp1. During the week you have transferred ABC_DB to ABCSmp2. You manually
recreate the Mia Hamm login on ABCSmp2. However, when she tries to login on ABC_DB at
ABCSmp2, she received an error message stating that she is not allowed access. Mia Hamm
needs to access ABC_DB and you need to make it happen.
What T-SQL code should you use? (Each correct option is part of the answer. Choose TWO)
A. Use ABC.com;
B. Use ABC_DB; *
C. Use ABCSmp1;
D. Use ABCSmp2;
E. ALTER LOGIN MiaHamm WITH DEFAULT_DATABASE = ABC_DB;
F. CHANGE LOGIN MiaHamm WITH DEFAULT_DATABASE = ABC_DB;
G. ALTER LOGIN MiaHamm WITH PASSWORD = 'pwd1234' UNLOCK;
H. CHANGE LOGIN MiaHamm WITH PASSWORD = 'pwd1234' UNLOCK;
I. CHANGE USER MiaHamm WITH LOGIN = MiaHamm;
J. ALTER USER MiaHamm WITH LOGIN = MiaHamm; *
K. ALTER LOGIN MiaHamm ENABLE;
L. CHANGE LOGIN MiaHamm ENABLE;
Answer: B,J
Explanation:

QUESTION NO: 8
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance.
Your junior assistant is curious about on how to move a table, such as ABC_table, from its current
scheme (scheme1) to another scheme (scheme2)

BrainDumps.com

Microsoft 70-432 Exam


How can you accomplish this in T-SQL?
A. You should consider using the following:
ALTER TABLE Schema1.ABC_Table SWITCH TO Schema2.ABC_table;
B. You should consider using the following:
ALTER AUTHORIZATION ON Schema1.ABC_Table TO Schema2;
C. You should consider using the following:
ALTER SCHEMA schema2 TRANSFER schema1.ABC_table;
D. You should consider using the following:
ALTER SCHEMA schema1 TRANSFER schema2.ABC_table;
E. You should consider using the following:
ALTER USER Schema1 WITH DEFAULT_SCHEMA = Schema2;
F. You should consider using the following:
MOVE ABC_Table FROM SCHEMA schema1 TO schema2
G. You should consider using the following:
MOVE ABC_Table FROM schema1 TO schema2
Answer: C
Explanation:
ALTER SCHEMA can only be used to move securables between schemas in the same database.
To change or drop a securable within a schema, use the ALTER or DROP statement specific to
that securable.

QUESTION NO: 9
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. You have received instructions from management to allow the users at ABC.com on the
SQL Server sample to use the OPENROWSET() function to search remote information sources.
You study incomplete code in the exhibit carefully. (Line numbers are used for reference purposes
only)
Exhibit:
01. sp_configure 'show advanced options', 1
02. RECONFIGURE
03.
04. RECONFIGURE
05. GO
06.
BrainDumps.com

10

Microsoft 70-432 Exam


07. SELECT a.*
08. FROM OPENROWSET('SQLNCLI', 'Server=Madrid;Trusted_Connection=yes;',
09. 'SELECT GroupName, Name, DepartmentID
10. FROM AdventureWorks.HumanResources.Department
11. ORDER BY GroupName, Name') AS a;
12. GO
Which T-SQL statement should you insert at line 03 to make the batch meet the requirement in
this scenario?
A. sp_configure 'Router control', 1
B. sp_configure 'Router control', 0
C. sp_configure 'Transaction Logs', 1
D. sp_configure 'Transaction Logs', 0
E. sp_configure 'Ad Lib Distributed Queries ', 1
F. sp_configure 'Ad Lib Distributed Queries ', 0
G. sp_configure 'Ad Hoc Distributed Queries', 1
H. sp_configure 'Ad Hoc Distributed Queries', 0
Answer: G
Explanation:
By default, SQL Server does not allow ad hoc distributed queries using OPENROWSET and
OPENDATASOURCE. When this option is set to 1, SQL Server allows ad hoc access. When this
option is not set or is set to 0, SQL Server does not allow ad hoc access.
Ad hoc distributed queries use the OPENROWSET and OPENDATASOURCE functions to
connect to remote data sources that use OLE DB. OPENROWSET and OPENDATASOURCE
should be used only to reference OLE DB data sources that are accessed infrequently. For any
data sources that will be accessed more than several times, define a linked server.

QUESTION NO: 10
You work as a database administrator at ABC.com. ABC.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 logins must have the same password complexity rules which are enforced by
Windows Server 2000 for authentication.

BrainDumps.com

11

Microsoft 70-432 Exam


Full compliance of all users with regarding to adhering to the password complexity rules.
What actions should you take?? (Each correct option is part of the answer. Choose TWO)
A. You should consider using the ALTER LOGIN ... CHECK_EXPIRATION = OFF statement to
change the entire login of all users.
B. You should consider using the ALTER LOGIN ... CHECK_EXPIRATION = ON statement to
change the entire login of all users.
C. You should consider using the command ALTER LOGIN ... NO CREDENTIAL.
D. You should consider using the command ALTER LOGIN ... UNLOCK.
E. You should consider using the command ALTER LOGIN ... ADD CREDENTIAL.
F. You should consider using the command ALTER LOGIN ... DROP CREDENTIAL.
G. You should consider using the ALTER LOGIN ... CHECK_POLICY = ON statement to change
the entire login of all users.
H. You should consider using the ALTER LOGIN ... CHECK_POLICY = OFF statement to change
the entire login of all users.
I. Create a policy using Policy-Based Management that matches the requirements of this scenario.
J. You should consider using the ALTER LOGIN ... CREDENTIAL = statement to change the
entire login of all users.
Answer: G,I
Explanation:
ALTER LOGIN
CHECK_POLICY = { ON | OFF }
Applies only to SQL Server logins. Specifies that the Windows password policies of the computer
on which SQL Server is running should be enforced on this login. The default value is ON.
Policy-Based Management is a system for managing one or more instances of SQL Server 2008.
When SQL Server policy administrators use Policy-Based Management, they use SQL Server
Management Studio to create policies to manage entities on the server, such as the instance of
SQL Server, databases, or other SQL Server objects.

QUESTION NO: 11 DRAG DROP


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 Server.
You are requested to make it easier to export data from the database to Microsoft Excel 2007
format. In particular you want to be able run a command from the command line that exports the
data to Excel format.
What steps should you take?

BrainDumps.com

12

Microsoft 70-432 Exam

Answer:

BrainDumps.com

13

Microsoft 70-432 Exam

Explanation:

BrainDumps.com

14

Microsoft 70-432 Exam

QUESTION NO: 12
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. ABC.com contains a SQL Server 2008 server named ABC-DB01. 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 ABC-DB02 went down. You then restore and rebuild the master
database. The ABC.com managers want ABC-DB01 to work as it was in the past.
What steps should you take? (Each correct option is part of the answer. Choose TWO)
A. You should consider rebuilding the entire SQL Server Web Service for the database.
B. You should consider reserving the model database for the database.
C. You should consider reserving the Resource databases for the database.
D. You should consider reserving the tempdb databases for the database.
E. You should consider reserving the master databases for the database.
F. You should consider reserving the msdb databases for the database.
G. You should consider reserving all the Transaction Logs for the database.
H. You should consider starting from scratch and rebuilding the database of all users memories.

BrainDumps.com

15

Microsoft 70-432 Exam


Answer: B,E
Explanation:

QUESTION NO: 13
You work as a database administrator at ABC.com. ABC.com is using SQL Server 2008.
ABC.com contains a SQL Server 2008 server named ABC-DB04. ABC-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 ABC.com has no other SQL systems,
you need to make use of the SQLs DNS name.
What steps should you take?
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.
Answer: C
Explanation:

QUESTION NO: 14
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. You have received instruction from management to migrate a web application from
Microsoft SQL Server 2005 to Microsoft SQL Server 2008. Be reminded that when a web
application is moved then some features could stop working. You need to detect such instances.
What action should you take? (Each correct option is part of the answer. Choose TWO)
A. You should consider using a SQL client-side trace.
B. You should consider using a stored procedure.
C. You should consider using server side Transaction Log.
D. You should consider using a SQL server-side trace.
E. You should consider using SQL Server 2008 Upgrade Advisor.
F. You should consider using a SQL Server Profiler.
G. You should consider capturing the Deprecation Announcement and Deprecation Final Support
event classes.
BrainDumps.com

16

Microsoft 70-432 Exam


H. You should consider capturing the SQL:BatchCompleted and Exception event classes.
Answer: D,G
Explanation:

QUESTION NO: 15
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. Your junior assistant is interested in the default trace log. What T-SQL command should
she use to open this log file if we assume it is stored in the default location?
A. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\TRACE
LOG\log.trc',
default)
GO
B. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\log.trc',
default)
GO
C. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\LOG\log.trc',
default)
GO
D. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\TRANSACTION
LOG\log.trc',
default)
GO
E. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\TRACE\log.trc',
default)
GO
F. SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\BACKUP\log.trc',
default)
GO
Answer: C
BrainDumps.com

17

Microsoft 70-432 Exam


Explanation:
The correct subdirectory is named LOG.
The following statement opens the default trace log in the default location:
SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\LOG\log.trc',
default)
GO

QUESTION NO: 16
You work as a database administrator at ABC.com. ABC.com is using SQL Server 2008
Enterprise Edition. ABC.com contains a database that unfortunately has torn page errors. You
need to solve the problem of the torn page errors.
What steps should you take? (Each correct option is part of the answer. Choose TWO)
A. By using the newest database backup to restore the full database.
B. By using the newest database backup to restore only the torn page.
C. By restoring the database from the latest snapshot of the database.
D. By restoring the latest database backup and then restore the transaction logs which have been
made since the latest backup.
E. By using DBCC CHECKDB.
F. By restoring any transaction logs created since the latest full backup.
Answer: B,F
Explanation:

QUESTION NO: 17
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains multiple SQL Server Agent jobs. These SQL
Server Agent jobs use twelve shared schedules that are used at all times. There is one schedule
for each month. The schedules are named January, February, etc. each configured to run in a
specific month.
You have been asked to make sure that the ABC_job13 is never run in April. What action should
you take?

BrainDumps.com

18

Microsoft 70-432 Exam


A. You should consider creating a separate schedule for April.
B. You should consider creating another April schedule for ABC_job13.
C. You should consider deleting the schedule for April from ABC_job13. *
D. You should consider deleting ABC_job13 from the April schedule.
E. You should consider deleting all the scheduled tasks for April.
Answer: C
Explanation: Just remove the April scheduled from job ABC_job13.

QUESTION NO: 18
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance has a stored procedure named ABC_14. You have been
asked to make sure ABC_14 is run once on April 21 at 5.15 AM only. You create a new SQL
Server Agent Job that starts ABC_14 to run at April 21 at 5.15 AM.
You ask your CEO if you are allowed to use SQL Server Agent Job to implement this. She tells
you that it is ok, but in that case you must make sure the SQL Server Agent Job is removed after
ABC_14 has run.
What actions should you take?
A. Reconfigure the SQL Server Agent Job to Automatically delete the job when the job succeeds.
B. Reconfigure the SQL Server Agent Job to Automatically delete the job when the job fails.
C. Reconfigure the SQL Server Agent Job to Automatically delete the job when the job completes.
D. Make sure that the job belongs to the Database Maintenance category.
E. You should consider developing an Alert that will be raised when the job completes.
In addition you should also set the alert to call another job when activated.
F. Modify ABC14 to delete itself when the job succeeds.
G. Modify ABC14 to delete itself when the job fails.
H. Modify ABC14 to delete itself when the job completes.
Answer: C
Explanation:

QUESTION NO: 19
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. ABC.com has a SQL Agent job that contains a Windows PowerShell job step that uses
the SQLCmd function to move data between servers. The SQL Agent job is working fine for a
couple of week. However, occasionally the job fails.

BrainDumps.com

19

Microsoft 70-432 Exam


Your CEO tells you that all employees in ABC must be notified by e-mail if this job is not
successfully run.
What steps should you take? (Each correct option is part of the answer. Choose THREE.)
A. By Enabling the Notifications.
B. By setting the operator as the failsafe operator.
C. By enabling all jobs.
D. By creating the ABCEmployees operator.
E. By Adding a stored procedure to develop the ABCEmployees operator.
F. By Creating Transactions Log and develop the ABCEmployees operator.
G. By directing the Notification to the ABCEmployees operator on job failure.
H. by directing the Notification to the ABCEmployees operator on job success.
Answer: A,D,G
Explanation:

QUESTION NO: 20 DRAG DROP


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. Your CEO tells you that all user-defined stored procedures must have the prefix ABC_.
You must prevent user-defined procedures from being created that do not meet her requirement.
What steps would meet this requirement?

BrainDumps.com

20

Microsoft 70-432 Exam


Answer:

Explanation:

QUESTION NO: 21
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. ABC.com contains two SQL Server 2008 servers named ABC-DB1 and ABC-DB2. ABCDB1 is configured to automatically run a maintenance job ABC_JOB10 at regular intervals. Alls is
BrainDumps.com

21

Microsoft 70-432 Exam


going well for months.
Then one morning your boss, Miss Tess King, notifies you that the ABC_JOB10 has not been run.
How should you do to remedy this situation? Select two.
A. Modify the SQL Server Agent job.
B. Start the SQL Server Surface Area Configuration.
C. Modify the Maintenance plan.
D. Reconfigure ABC-DB1 to use mixed mode authentication.
E. Reconfigure ABC-DB2 to use mixed mode authentication.
F. Reconfigure ABC-DB1 so that the SQL Server Agent service starts automatically.
G. Reconfigure ABC-DB2 so that the SQL Server Agent service starts automatically.
H. Reconfigure ABC-DB1 to use Windows Integrated authentication exclusively.
I. Reconfigure ABC-DB2 to use Windows Integrated authentication exclusively.
Answer: B,F
Explanation:
Use SQL Server Surface Area Configuration to enable, disable, start, or stop the features,
services, and remote connectivity of your SQL Server 2005 installations. You can use SQL Server
Surface Area Configuration on local and remote servers.
In this scenario a plausible source for the problem is that SQL Server Agent service on ABC-DB1
no longer is configured to start automatically.

QUESTION NO: 22
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. One morning you are being bugged by your boss. Apparently there are problems with
the SQL Server Agent Service and the SQL Server Agent job.
What steps should you take to obtain more information regarding this problem?
A. You should consider checking the TRANSACTION log.
B. Check the SQL Book Online.
C. You should consider checking the SQLAGENT.OUT log.
D. You should consider checking the ERRORLOG log.
E. You should consider checking the VIEWDELETE log.
F. You should consider checking the SQLSERVER log.
Answer: C
Explanation:
The SQLAGENT.OUT file is an errorlog file for the SQL server Agent service. It would contain
BrainDumps.com

22

Microsoft 70-432 Exam


information regarding the problem in this scenario.

QUESTION NO: 23
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. ABC.com contains two SQL Server 2008 computers named ABC-DB1 and ABC-DB2.
Both of these computers contain a copy of a database named ABC_DB. You are using
transactional replication between ABC-DB1 and ABC-DB2 for ABC_DB. The backups of the
databases are as follows:
Full backup is performed nightly.
Transaction log backups are performed hourly.
Furthermore, replication delay is less than one minute. ABC_DB becomes corrupt on ABC-DB1
and its state was rendered irreparable. You need to return ABC_DB on ABC-DB1 and ensure that
minimal amount of data loss while you copy the data from ABC-DB2 and minimize the impact on
the users of these servers.
What steps should you take? (Each correct option is part of the answer. Choose TWO)
A. Detach ABC_DB on ABC-DB2.
B. Make a transactional backup on ABC-DB1.
C. Make a differential backup on ABC-DB1.
D. Make a full backup on ABC-DB1.
E. Make a transactional backup on ABC-DB2.
F. Make a differential backup on ABC-DB2.
G. Make a full backup on ABC-DB2.
H. Restore the latest transactional backups on ABC-DB1.
I. Restore the latest differential backup on ABC-DB1.
J. Restore the latest full backup on ABC-DB1.
K. Copy the ABC_DB from ABC-DB2 to ABC-DB1.
L. Copy the ABC_DB from ABC-DB1 to ABC-DB2.
M. Only one action is required.
Answer: G,J
Explanation:
First backup the current database from ABC-DB2 by making a full backup. Restore this backup to
replace the corrupt database on ABC-DB1.

BrainDumps.com

23

Microsoft 70-432 Exam


QUESTION NO: 24
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_DB. You want to get yourself acquainted with
Database snapshots.
What T-SQL commands are used to create and remove database snapshots respectively?
Choose all that apply.
A. UPDATE.
B. CREATE SNAPSHOT
C. DELETE SNAPSHOT
D. DROP DATABASE
E. REMOVE DATABASE
F. DELETE DATABASE
G. INSERT ANY DATASPACE.
H. RECREATE.
I. CREATE DATABASE
J. REMOVE SNAPSHOT
K. DROP SNAPSHOT
Answer: D,I
Explanation:
Microsoft SQL Server Database Administrators has a new feature with the Microsoft SQL Server
2005 Edition which is database snapshots.
A snapshot can persists until it is dropped using DROP DATABASE command.
Also multiple snapshots can be created with different names of a database called as source
database.
In order to create a MS SQL Server database snapshot, CREATE DATABASE statement is used.

QUESTION NO: 25
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 Server
that contains a database named ABC_DB. The performance of the server has been decreasing.
After investigation you notice that the ABC_DB database backup files are too large. You have
received instructions from management to cut the content of the entire database backup files of
ABC_DB. Currently the following Transact-SQL command is used:
BACKUP DATABASE ABC_DB TO DISK = 'f:\ABCbackupfolder\ABC_DB.bak';

BrainDumps.com

24

Microsoft 70-432 Exam


In this scenario how should you change the T-SQL command to decrease the size of the ABC_DB
backup files?
A. Add the option: WITH NO_COMPRESSION;
B. Add the option: WITH DIFFERENTIAL;
C. Add the option: WITH MINIMAL_SIZE;
D. Add the option: WITH COMPRESSION;
E. Add the options: WITH COMPRESSION, TRANSACTIONAL;
F. Add the option: WITH TRANSACTIONAL;
G. Add the options: WITH COMPRESSION, DIFFERENTIAL;
Answer: D
Explanation:
To create a full database backup
1.
Execute the BACKUP DATABASE statement to create the full database backup, specifying:
* The name of the database to back up.
* The backup device where the full database backup is written.
The basic Transact-SQL syntax for a full database backup is:
BACKUP DATABASE database
TO backup_device [ ,...n ]
[ WITH with_options [ ,...o ] ] ;
Option Description
database

Is the database that is to be backed up.


backup_device [ ,...n ]

Specifies a list of from 1 to 64 backup devices to use for the backup operation. You can specify a
physical backup device, or you can specify a corresponding logical backup device, if already
defined. To specify a physical backup device, use the DISK or TAPE option:

BrainDumps.com

25

Microsoft 70-432 Exam


{ DISK | TAPE } =physical_backup_device_name
For more information, see Backup Devices.
WITH with_options [ ,...o ]

Optionally, specifies one or more additional options, o. For information about some of the basic
with options, see step 2.
2.
Optionally, specify one or more WITH options. A few basic WITH options are described here. For
information about all the WITH options, see BACKUP (Transact-SQL).
* Basic backup set WITH options:
{ COMPRESSION | NO_COMPRESSION }
In SQL Server 2008 Enterprise and later only, specifies whether backup compression is performed
on this backup, overriding the server-level default.

QUESTION NO: 26
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_DB. The backup of ABC_DB is as follows:
Full backup at 17:00
Differential backup at 19:00
Database snapshots at 20:00 and 21:00
Furthermore, the backups and the database snapshots are reserved on a different disk. However,
ABC_DB has failed at 20:10. You have received instruction to recover ABC_DB .
What steps should you take to keep the data loss minimum?
A. You should consider recovering the Differential backup files only.
B. You should consider recovering the Full backup and the differential backup files.
C. You should consider recovering the Full backup files only.
D. You should consider recovering the database snapshot from 21:00.
BrainDumps.com

26

Microsoft 70-432 Exam


E. You should consider recovering the database snapshot from 20:00.
Answer: B
Explanation:

QUESTION NO: 27
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. Using the Maintenance Plan Wizard you create an appropriate Maintenance plan. The
Maintenance plan works fine, but it is just that your boss, Miss Tess King, in addition wants an email notification to be sent to you and her when there is a problem with running the Maintenance
plan.
How can you please your boss?
A. Configure the SQL Server Agent job that runs the database maintenance to send e-mail
notifications to Tess King and you.
B. Configure the Maintenance plan to contain a Notify Operator task that will e-mail Tess King and
you.
C. Configure the Maintenance plan to disable a fail-safe operator.
D. Configure the SQL Server Agent job to enable a fail-safe operator.
Answer: A
Explanation:
Maintenance plans create a workflow of the tasks required to make sure that your database is
optimized, is regularly backed up, and is free of inconsistencies.
The Maintenance Plan Wizard also creates core maintenance plans, but creating plans manually
gives you much more flexibility. In SQL Server 2005 Database Engine, maintenance plans create
an Integration Services package, which is run by a SQL Server Agent job. These maintenance
tasks can be run manually or automatically at scheduled intervals.

QUESTION NO: 28
You work as a database administrator at ABC.com. ABC.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 ABC.com. You then use the sp_send_dbmail stored
procedure to send reports during office hours. You set everything up and it works fine. There are
no complaints from employees. However, after a week employees complain that they have to wait
too long for the daily reports that are sent through the Database Mail system you have set up.
How can you fix this problem to ensure the fastest delivery of these reports?
BrainDumps.com

27

Microsoft 70-432 Exam


A. You should consider create another SMTP account that will be used for the delivery reports to
Tess King.
B. You should consider setting a new Database Mail profile that will be used for the delivery
reports to Tess King.
C. You should consider setting a new Database Mail account that will be used for the delivery
reports to Tess King.
D. You should consider increase the priority of the reports that are sent to Tess King.
Answer: B
Explanation:
Database Mail allows you to create multiple profiles within a SQL Server instance. Optionally, you
can choose the profile that Database Mail uses when you send a message.
By using different profiles you can prioritize among the messages that are being sent.

QUESTION NO: 29
You work as a database administrator at ABC.com. The ABC.com network contains a SQL Server
2008 computer named ABC-DB01. ABC-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 15 years.
What steps should you take? (Choose all that apply.)
A. By setting the authentication mode to SQL Server and Windows Authentication mode.
B. By setting the authentication mode to mixed mode.
C. By creating a SQL Server Agent job for the SQL Audit stored procedure.
D. By creating a SQL Server Agent job for the SQL Trace stored procedure.
E. By creating a SQL Server Agent job for the SQL Logging stored procedure.
F. By disabling the C2 Audit Tracing setting.
G. By enabling the C2 Audit Tracing setting.
H. By setting the Login auditing to log all logins as events.
I. By configuring the job to start when the SQL Server Agent service starts.
J. By manually starting the job each time you start the server.
Answer: D,I
Explanation: To automate administration, follow these steps:
Establish which administrative tasks or server events occur regularly and whether these tasks or
events can be administered programmatically. A task is a good candidate for automation if it
involves a predictable sequence of steps and occurs at a specific time or in response to a specific
event.
Define a set of jobs, schedules, alerts, and operators by using SQL Server Management Studio,

BrainDumps.com

28

Microsoft 70-432 Exam


Transact-SQL scripts, or SQL Server Management Objects (SMO).
Run the SQL Server Agent jobs you have defined.
To define your own trace using stored procedures
Specify the events to capture using sp_trace_setevent.
Specify any event filters. For more information, see How to: Set a Trace Filter (Transact-SQL).
Specify the destination for the captured event data using sp_trace_create.

QUESTION NO: 30
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains a database named ABC_DB.
Which service is used when you configure the FILESTREAM data container in the ABC_DB
database?
A. The IIS Service.
B. SQL Server Agent service
C. SQL Server Integration Services
D. Microsoft Search service
E. The SQL Server service.
F. The SQL Server VSS Writer.
G. The Web Service.
H. MSDTC service
Answer: E
Explanation:
Only the account under which the SQL Server service account runs is granted NTFS permissions
to the FILESTREAM container.

QUESTION NO: 31
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2005
instance. You have multiple applications running fine on this server. You receive a new third-party
application that will not run in SQL Server 2005, as it requires SQL Server 2008.
You are required to make sure that all these applications should run without changing the
environment of the applications and with the minimal amount of cost. What action should you
take? (Each correct option is part of the answer. Choose TWO)

BrainDumps.com

29

Microsoft 70-432 Exam


A. By changing the older applications to use SQL Server 2008.
B. By installing the new SQL Server 2008 as a named instance.
C. By installing the new SQL Server 2008 as the default instance.
D. By changing the SQL Server 2005 instance to a SQL Server 2008 instance.
E. By setting the new application to use the new SQL Server instance.
F. By rewriting the new application so that it can run on a SQL Server 2005 instance.
G. Only one action is needed.
Answer: B,E
Explanation:

QUESTION NO: 32
You work as a database administrator at ABC.com. ABC.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 action should you take?
A. Use Internet Information Services to update the SSRS instance.
B. Use Internet Information Services to reinstall the SSRS instance.
C. Use the http.sys listener and update the SSRS instance.
D. Use the http.sys listener and reinstall the SSRS instance.
E. Switch to Mixed mode by updating the SSRS database.
F. Switch to Mixed mode by reinstalling the SSRS database.
G. Switch to Single mode by updating the SSRS database.
H. Switch to Single mode by reinstalling the SSRS database.
I. Switch to SharePoint integrated mode by updating the SSRS database.
J. Switch to SharePoint integrated mode by reinstalling the SSRS database.
K. Switch to Native mode by updating the SSRS database.
L. Switch to Native mode by reinstalling the SSRS database.
Answer: I
Explanation:
SharePoint integrated mode is required in this scenario.
To switch modes, you point the server to a native mode report server database. You do not have
to re-install the report server to switch modes.

QUESTION NO: 33
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. You have received instruction from management to set the instance to utilize one thread
BrainDumps.com

30

Microsoft 70-432 Exam


for searches which owns an estimated execution cost less than 6.
What steps should you take?
A. Change the sp_configure cost threshold for parallelism option.
B. Use the DBCC SHRINKFILE command.
C. Execute DBCC INDEXDEFRAG.
D. Create an appropriate stored procedure.
E. Change the sp_configure cost boost for parallelism option.
F. Change the sp_configure the max worker threads option.
Answer: A
Explanation:
Use the cost threshold for parallelism option to specify the threshold at which Microsoft SQL
Server creates and runs parallel plans for queries. SQL Server creates and runs a parallel plan for
a query only when the estimated cost to run a serial plan for the same query is higher than the
value set in cost threshold for parallelism. The cost refers to an estimated elapsed time in seconds
required to run the serial plan on a specific hardware configuration. Only set cost threshold for
parallelism on symmetric multiprocessors.
Longer queries usually benefit from parallel plans; the performance advantage negates the
additional time required to initialize, synchronize, and terminate the plan. The cost threshold for
parallelism option is actively used when a mix of short and longer queries is executed. The short
queries execute serial plans while the longer queries use parallel plans. The value of cost
threshold for parallelism determines which queries are considered short, thus executing only serial
plans.
In certain cases, a parallel plan may be chosen even though the query's cost plan is less than the
current cost threshold for parallelism value. This is because the decision to use a parallel or serial
plan, with respect to cost threshold for parallelism, is based on a cost estimate provided before the
full optimization is complete.
The cost threshold for parallelism option can be set to any value from 0 through 32767. The
default value is 5.
If your computer has only one processor, if only a single CPU is available to SQL Server because
of the affinity mask configuration value, or if the max degree of parallelism option is set to 1, SQL
Server ignores cost threshold for parallelism.
cost threshold for parallelism is an advanced option. If you are using the sp_configure system
stored procedure to change the setting, you can change cost threshold for parallelism only when
show advanced options is set to 1. The setting takes effect immediately (without a server stop and
BrainDumps.com

31

Microsoft 70-432 Exam


restart).

QUESTION NO: 34
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. ABC.com also has a Windows group named
ABC\Employees that makes use of ABC_Prod. Some of the users in that group are members for
the db_owner role. However, one member in the ABC\ Employees 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 SQL Server instance. You need to complete this task using
the appropriate Transact-SQL statement.
Which would be the best solution?
A. You should consider using the following:
EXEC dbo.sp_droprolemember 'db_master', "ABC\Mia";
B. You should consider using the following:
DROP LOGIN "ABC\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:
CREATE LOGIN "ABC\Mia" FROM Windows;
DENY CONNECT SQL TO "ABC\Mia "; *
E. You should consider using the following:
REMOVE LOGIN "ABC\Mia";
Answer: C
Explanation:
CREATE LOGIN
Creates a new SQL Server login.
Option: WINDOWS
Specifies that the login be mapped to a Windows login.
DENY
Denies a permission to a principal. Prevents that principal from inheriting the permission through
its group or role memberships.

BrainDumps.com

32

Microsoft 70-432 Exam


QUESTION NO: 35
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains a database named ABC_DB that contains a
table named ABC_Tbl. ABC_DB also contains a stored procedure named ABC_Prod that uses a
sp_executesql Transact-SQL statement to get data from ABC_Tbl.
Everything is going fine. Employees are using ABC_Prod as user ABC_User and it works fine.
Some moths later a new ABC.com security policy is implemented. This security policy does not
allow users to access tables directly in any database. Now the employees are complaining. When
they use ABC_prod they get an error saying: The SELECT permission was denied on the object '
ABC_Tbl', database ' ABC_DB ', schema 'dbo'.
What action would be best?
A. You should consider modifying ABC_Prod and change the WITH EXECUTE AS USER =dbo
before the sp_executesql Transact-SQL statement.
B. You should consider modifying ABC_Prod and change the WITH EXECUTE AS USER
=administrator before the sp_executesql Transact-SQL statement.
C. You should consider running, GRANT SELECT ON dbo.Master' TO ABC_User.
D. You should consider running, GRANT SELECT ON dbo.ABC_Tbl' TO ABC_User.
E. Give ABC_User full Administrative permissions.
F. You should consider modifying ABC_Prod and change the WITH EXECUTE AS OWNER option
to its header.
G. You should consider modifying ABC_Prod and change the WITH EXECUTE AS CLAUSE
option to its header.
H. You should consider modifying ABC_Prod and change the WITH EXECUTE AS
ADMINISTRATOR option to its header.
I. You should consider modifying ABC_Prod and change the WITH EXECUTE AS CALLER option
to its header.
J. Set up appropriate roles and permissions.
Answer: F
Explanation:
EXECUTE AS OWNER is a great way to limit the permissions of a SQL Server Login. The general
idea is to create your stored procedure with the EXECUTE AS OWNER modifier. Any user who
has the permissions to execute the stored procedure, runs the stored procedure under the
Database's dbo user (which means it can do anything in the database, but nothing at the serverlevel nor on other databases). If you only allow your Logins to execute stored procedures (and not
touch the tables directly), then you've effectively limited the Logins to code you've written. If you
don't write any DELETE statements, then Logins can't delete anything.
This is better than Roles, because Roles are very coarse in comparison. With Roles, you may
have to give a User INSERT permissions on table. Instead with EXECUTE AS OWNER you can
BrainDumps.com

33

Microsoft 70-432 Exam


write a stored procedure that checks the data exactly the way you want in the body of the stored
procedure. This is much more fine grained way of handling permissions.

QUESTION NO: 36
UESTION NO: 36
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. You have received instructions from your boss, Miss Tess King, to comply with a new set
of users that will be hired by ABC. The first user is KeithClark. Later a new group of users named
Hirelings will be added as well. They should all be able to:
view the definitions from all user-defined tables
read data from all user-defined tables
read data from all user-defined views
read data from all user-defined functions
You need to complete this task with the least amount of SQL administrative statements. You start
by created the user KeithClark.
What other steps are required? Select all that apply.
A. DROP ROLE Hirelings;
B. CREATE ROLE Hirelings;
C. GRANT VIEW DEFINITION TO Hirelings;
D. GRANT VIEW ANY DEFINITION TO KeithClark;
E. GRANT SELECT TO Hirelings;
F. EXEC sp_addrolemember Hirelings, 'KeithClark';
G. EXEC sp_addrolemember 'sp_dbdatareader', 'Hirelings';
H. EXEC sp_addrolemember 'db_datareader', 'KeithClark'
I. EXEC sp_addrolemember 'sp_dbddladmin', 'Hirelings';
J. EXEC sp_addrolemember 'Hirelings ', 'KeithClark ';
Answer: B,C,E,J
Explanation:
Create a new role.
Give the role the appropriate permissions.
Add KeithClark to the new role.

BrainDumps.com

34

Microsoft 70-432 Exam


QUESTION NO: 37
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. ABC.com has a SQL Server login named
ABC_Tst _Login that maps to a ABC.com learner administrator named ABC_ProdAppUser in
ABC_Prod. You have received instruction from management that you need to restrict
ABC_ProdAppUser so that it only can run stored procedures (current and future). It should not be
allowed to execute other tasks in the database.
What action should you take?
A. You should consider allowing the proper ojbect-level rights to default database.
B. You should consider allowing the proper ojbect -level rights to ABC_Tst_login
C. You should consider allowing the proper ojbect -level rights to ABC_ProdApp_User.
D. You should consider allowing the proper ojbect -level rights to Anonymous User.
E. You should consider allowing the proper database-level rights to default database.
F. You should consider allowing the proper database-level rights to ABC_Tst_login
G. You should consider allowing the proper database-level rights to ABC_ProdApp_User.
H. You should consider allowing the proper database-level rights to Anonymous User.
I. You should consider allowing the proper server-level rights to default database.
J. You should consider allowing the proper server -level rights to ABC_Tst_login
K. You should consider allowing the proper server -level rights to ABC_ProdApp_User.
L. You should consider allowing the proper server -level rights to Anonymous User.
M. You should consider increasing a new role in the default domain group.
Answer: G
Explanation:
Right click database
select properties
select permissions
add the user
scroll down to "EXECUTE" then check "GRANT"
This grant execute permissions on all stored procedures.

QUESTION NO: 38
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
database that makes use of the Analysis Services and Reporting Services. However, installed
components at ABC.com adhere to the ABC.com security policy. You have received instruction to
ensure that you adhere to the ABC.com security policy.
What steps should you take? (Each correct option is part of the answer. Choose THREE)
BrainDumps.com

35

Microsoft 70-432 Exam


A. Use SQL Server BPA
B. Use an updated copy of the T-SQL sp-configure stored procedure
C. Use a newly created policy
D. Edit the configuration file named..
E. to analyze your SQL database servers.
F. to create a script.
G. RSReportServer.config.
H. rssrvpolicy.config.
I. ..built on suitable facets.
J. Apply the policies on your SQL Servers.
K. Implement the proposed suggestions.
L. Copy and apply the file to all SQL Servers.
M. Run the script on your SQL Servers.
Answer: C,I,J

QUESTION NO: 39
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance with failover clustering. You have received instructions from management to encrypt the
connections in the failover cluster.
How can this be accomplished? Select all that apply.
A. By obtaining an appropriate encryption certificate.
B. By obtaining an appropriate encryption license.
C. By installing the encryption certificate on all computers in the domain.
D. By installing the encryption certificate on all servers in the domain.
E. By installing the encryption certificate on all SQL servers in the domain.
F. By installing the encryption certificate on all nodes in the failover cluster.
G. By installing the encryption license in the local group.
H. By installing the encryption license in the no-cluster group.
I. By installing the encryption license in the cluster group.
J. By installing the encryption certificate in a shared folder on the SQL Server.
K. By Installing the encryption certificate on the cluster quorum drive.
Answer: A,F
Explanation:
If you deploy SQL Server with a failover cluster, you must install the server certificate with the
FQDN of the virtual server on all nodes in the failover cluster.

QUESTION NO: 40
BrainDumps.com

36

Microsoft 70-432 Exam


You work as a database administrator at ABC.com. ABC.com has 12 separate branch offices and
a main office, each office is equipped with their own SQL Server 2008 computer.
A database table named ABC-Sales is used to store point-of-sale transactions. Furthermore, ABCSales also hosts sales information from all 12 of the ABC.com branch offices to accommodate
customer returns of products. Consequently the data should be refreshed from the main office to
all 12 branch offices every hour, on the hour. To this end you make use of a trigger called
Stats_Trigger to produce sales statistics based on customer sales and buying patterns. Currently
replication between the server in each of the 12 branch offices and a middle server in the main
office occurs in real time. You need to decide which type of replication would be best in this
scenario. You should also eliminate the replication of the data that is produced by the trigger.
What steps should you take? (Each correct answer presents part of the solution. Choose TWO.)
A. You should consider using multiple merge publications, one at every branch office and one in
the main office.
B. You should consider using transactions log between all the servers in the ABC.com domain
C. You should consider using snapshot replication.
D. You should consider using merge replication.
E. You should consider setting the Stats_Trigger trigger on the server in each retail store to use
the NOT FOR REPLICATION option.
F. You should consider setting the Stats_Trigger trigger on the server in each retail store to use
the FOR REPLICATION option.
Answer: D,E
Explanation:
In some cases, it is desirable for user activity in a replication topology to be treated differently from
agent activity.
The NOT FOR REPLICATION option allows you to specify that the following database objects are
treated differently when a replication agent performs an operation:
* Foreign key constraints
The foreign key constraint is not enforced when a replication agent performs an insert, update, or
delete operation.
* Check constraints
The check constraint is not enforced when a replication agent performs an insert, update, or delete
operation.
* Identity columns
The identity column value is not incremented when a replication agent performs an insert
operation.
* Triggers
The trigger is not executed when a replication agent performs an insert, update, or delete
BrainDumps.com

37

Microsoft 70-432 Exam


operation.

QUESTION NO: 41
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Travel that has a table named ABC_Travel that
keeps data about the entire catalogue of travels. The users at ABC.com search ABC_Tbl on the
Travel_Type column. The Travel_Type column is planned to contain data such as walk, bike, car,
train, bus, ferry, boat, spaceshuttle. However, at the moment the column either contains bus or
NULL.
After some investigation, to your horror, you find out that you have forgotten to build an index on
this table. After examining the hard drive on the server you realize that you cannot afford to use
indexes that require a lot of hard drive space.
What action should you take to avoid to lose your job?
A. You should consider developing view that is indexed on the Travel_Type column.
B. You should consider developing a unique index on the Travel_Type column.
C. You should consider developing a default index on the Travel_Type column.
D. Replace the NULL data with the appropriate data such as walk, bike, car, train, bus, ferry, boat,
spaceshuttle.
E. You should consider developing an un-cluttered index on the Travel_Type column.
F. You should consider developing a filtered index on the Travel_Type column.
G. You should consider developing an non-clustered index on the Travel_Type column.
H. You should consider developing a general index on the Travel_Type column.
Answer: F
Explanation:
A filtered index is an optimized nonclustered index, especially suited to cover queries that select
from a well-defined subset of data. It uses a filter predicate to index a portion of rows in the table.
A well-designed filtered index can improve query performance, reduce index maintenance costs,
and reduce index storage costs compared with full-table indexes.
Filtered indexes can provide the following advantages over full-table indexes:
Improved query performance and plan quality
Reduced index maintenance costs
Reduced index storage costs

BrainDumps.com

38

Microsoft 70-432 Exam


QUESTION NO: 42
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance to administrate and maintain their database. The SQL Server 2008 instance contains a
database named ABC_DB that contains a table named ABC_Tbl.
You have to put the output of the entire information from ABC_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.
What utility and what step should you use to accomplish this task? (Each correct option is part of
the answer. Choose TWO)
A. Use the Package Migration Wizard
B. Use the ISIS
C. Use the Process Control Tool
D. Use Process Control Tool
E. Use the bulk copy program..
F. Use the Microsoft SQL Server Import and Export Wizard
G. Use the dtexec.exe
H. Use the DTS Designer
I. ..with a format file
J. ..with an output file.
K. ..and store the output in a file.
Answer: F,K
Explanation:

QUESTION NO: 43
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. You have received instructions to ensure
that the entire SQL Server samples are set to comply with specific corporate standards. In
particular index creation should be forced, naming conventions should be implemented and data
fragmentation should be prevented.
Which tool and which action should you take? (Each correct option is part of the answer. Choose
TWO)
A. Use the Package Migration Wizard.
B. Use the SQL Server Configuration Manager.
C. Use the ISIS.
BrainDumps.com

39

Microsoft 70-432 Exam


D. Use the Microsoft SQL Server Management Studio.
E. Use the Process Control Tool.
F. Use the Web Service Tool.
G. Use the bulk copy program.
H. Use the Microsoft SQL Server Import and Export Wizard.
I. Use the dtexec.exe.
J. Use the DTS Designer.
K. Create a configuration package.
L. Create a policy.
M. Create a recovery plan.
N. Create a maintenance plan.
Answer: D,L
Explanation:

QUESTION NO: 44
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains a database named ABC_Prod which make use
of the Fulltext indexes.
One day ABC.com users complain that some searches in the database is not working any longer.
In particular, some searches result an empty resultsets, even though even though the
corresponding key words are indeed present in the database.
What action should you take to resolve this problem?
A. You should consider adding a new full-text index.
B. You should consider changing the full-text index.
C. You should consider repearing the full-text index.
D. You should consider stop and start the MSFTESQL service.
E. You should consider deleting the full-text catalog and rebuild it.
F. Add the appropriate key words to the Fulltext index.
Answer: E
Explanation:

QUESTION NO: 45
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2000
instance that contains a database named ABC_DB1. One day you are required to install a SQL
Server 2008 instance. Management wants you to ensure that new third-party SQL Server 2008
applications can run on both database instances with the minimum amount of administrative effort
BrainDumps.com

40

Microsoft 70-432 Exam


while the old SQL Server 2000 applications should be working as before.
Which steps should you take? Select two.
A. Install SQL Server 2008 as a mixed instance.
B. Install SQL Server 2008 as a named instance.
C. Install SQL Server 2008 as a default instance.
D. Reconfigure the SQL Server 2000 instance application to use the SQL Server 2008 instance.
E. Reconfigure the SQL Server 2000 server to use the SQL Server 2008.
F. Configure the new applications to use the new instance.
G. Configure the new applications to use the default instance.
Answer: B,F
Explanation:

QUESTION NO: 46
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. ABC.com is using Microsoft SQL Server
2005 Analysis Services (SSAS) that is accessed by an Internet Information Services application.
You get complaints from users that say they cant access the information SQL Server 2008. They
are prompted for authentication.
How should you reconfigure the server so that the users can access the application without being
prompted for a login and a password?
A. You should consider setting the Security\RequireServerAuthentication server configuration to
False.
B. You should consider setting the Security\RequireClientAuthentication server configuration to
False.
C. You should consider setting the Security\RequireClientAuthentication server configuration to
True.
D. You should consider setting the Security\RequireClientAuthentication server configuration to
the Default Value.
E. You should consider setting the Security\RequireServerAuthentication server configuration to
Default value.
F. You should consider setting the Security\RequireServerAuthentication server configuration to
True.
Answer: B
Explanation:
By default, Microsoft SQL Server Analysis Services requires clients to be authenticated by the
Microsoft Windows operating system in order to establish a connection with the service. By
BrainDumps.com

41

Microsoft 70-432 Exam


default, Microsoft SQL Server Analysis Services will reject all requests from unauthenticated
clients.
To modify the client authentication requirement, the administrator must change the value of the
Security \ RequireClientAuthentication server configuration property.

QUESTION NO: 47
You work as the network administrator at ABC.com. ABC.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 ABC.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.
What steps should you take?
A. You should consider running the SQL Server service under the global system account.
B. You should consider running the SQL Server service under the local service account.
C. You should consider running the SQL Server service under the domain local account.
D. You should consider running the SQL Server service under the domain user account.
E. You should consider running the SQL Server service under the local Administrator account.
F. You should consider running the SQL Server service under the mixed user account.
G. You should consider running the SQL Server service under the local system account.
H. You should consider running the SQL Server service under the global Administrator account.
I. You should consider running the SQL Server service under the global service account.
Answer: D
Explanation:

QUESTION NO: 48
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_Prod. ABC.coms SQL Server 2008 is configured
to make use of the 7806 trace flag while booting up. You have received instructions to make sure
that the use of this trace flag is included in backups.
What action should you take?
BrainDumps.com

42

Microsoft 70-432 Exam


A. You should consider including a backup of the SQL Server Log.
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.
E. You should consider using a stored procedure.
Answer: C
Explanation:

QUESTION NO: 49
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 server.
Management wanted the backups to be done on a daily basis. Transaction log backups are
performed every afternoon and morning. This worked fine for six months. However, as the content
of the log file grew it resulted in a large transaction log file. The size of the transaction log file is
affecting the performance of the server. You have received instructions to take appropriate
measures when doing the backups of the transaction log files.
What is the preferred action in this scenario?
A. Set the database to use the debug model.
B. Decrease the size of transaction log file by using the DBCC SHRINKFILE command
C. The number of transaction log backups should increase. Make a transaction log backup every
hour.
D. Optimize the SQL code by reducing amount the size of the statements.
E. The number of transaction log backups should decrease. Make a single transaction log backup
every day.
F. .Set the database to use the simple recovery model.
Answer: C
Explanation:
Increasing the number of transaction log backups decreases the size of the transaction log file.

QUESTION NO: 50
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a database named ABC_DB. ABC_DB have 200 GB information where 3
GB of the information is changed daily. ABC_DB has its recovery model set for Simple. However,
ABC.com states that data loss of more than one hour for transactions during business hours is a
NO - NO.

BrainDumps.com

43

Microsoft 70-432 Exam


How can you setup a backup service while also making sure that minimum disk space is used?
Select two.
A. Run a daily incremental backup during non-office hours.
B. Run a daily hybrid backup during non-office hours.
C. Run a daily full backup during non-office hours.
D. Run a daily differential backup during non-office hours.
E. Run a daily transactional log backup during non-office hours.
F. Run a transaction log backup every three hours during business hours.
G. Run a differential backup every three hours during business hours.
H. Run a full backup every three hours during business hours.
I. Run a hybrid backup every three hours during business hours.
J. Run a incremental backup every three hours during business hours.
K. Only one action is required.
Answer: C,G
Explanation:
A large percentage of the database is changed daily. It is therefore better to use differential
backups during the office hours compared to the standard transactional backups.

QUESTION NO: 51
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains a database named ABC_Tester that is used by
the ABC.coms 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 ABC_Tester uses.
What action can you take to comply with this scenario?
A. You should consider making use of Transaction Logs to grant login access to the developers.
B. You should consider converting the database roles of the developers to a fixed database role.
C. You should consider giving suitable server-level rights to the default SQL Server grant login
access to the developers.
D. You should consider giving suitable server-level rights to the whole SQL Server to grant login
access to the developers.
Answer: D
Explanation:

BrainDumps.com

44

Microsoft 70-432 Exam

QUESTION NO: 52
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_DB1.
You have configured SQL Server log shipping for ABC_DB1 to occur every hour on the hour. You
then receive instructions to create a scheduled task to run a full backup of ABC_DB1 after
business hours.
Which of the following is TRUE with regards to this scenario?
A. You should configure the use of the Simple recovery model.
B. You should configure the use of the Bulk-Logged recovery model.
C. You should configure the use of the Full recovery model.
D. You should configure the use of Half recovery model.
Answer: C
Explanation:

QUESTION NO: 53
You work as a SQL Server 2008 database administrator at ABC.com. One morning you have
received numerous complaints from the users at ABC.com that a database application is running
very sluggish. You need to check the disk, CPU, and memory utilization; information and still
consider the network.
What should you do?
A. You should consider checking the event viewer.
B. You should consider checking the appropriate dynamic management views (DMVs).
C. You should consider checking the SQL performance monitor.
D. You should consider running the SQL Server Profiler.
Answer: B
Explanation:

QUESTION NO: 54
BrainDumps.com

45

Microsoft 70-432 Exam


You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance.
ABC.com has a database, named ABCSales, which has a primary filegroup that includes the OnLine Transaction Processing (OLTP) data. ABCSales also has another filegroup, named
ABCSalesHistory, which hosts antiquated records for the database. These two filegroups are
located on separate drives, while the transaction log for ABCSales is located on a different drive
altogether.
ABC.coms business hours are from 8 Am to 5 PM. You have configured an archiving solution that
allows for the constant relocation of information from the primary filegroup to ABCSalesHistory.
You have also configured a backup solution that backs up the primary filegroup every 2 hours,
starting at 9 AM and ending at 5 PM. The backup solution includes a daily backup of the
ABCSalesHistory filegroup at 5 PM, and an hourly backup of the transaction log.
When the drive that hosts the ABCSalesHistory filegroup becomes corrupt during the day, you are
instructed to perform a restore procedure that allows for as little records as possible to be lost. The
speed of the restore procedure should also be as fast as possible.
You start by manually backing up the transaction log.
Which two of the following actions should you take NEXT? (Choose two.)
A. You should consider restoring a differential backup of the ABCSales database.
B. You should consider restoring the previous days backup of ABCSalesHistory.
C. You should consider restoring a full backup of the ABCSales database.
D. You should consider restoring the transaction log backups that occurred subsequent to the
previous days backup of ABCSalesHistory.
Answer: B,D
Explanation:

QUESTION NO: 55
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance that contains a large database named ABC_DB1 that is only updated during working
hours. You have received instructions to create a backup and recovery plan that will ensure that
no data that is older than 1 hour is lost.
How should you configure your backup and recovery plan? (Choose all that apply)

BrainDumps.com

46

Microsoft 70-432 Exam


A. You should run a full database backup every Saturday evening.
B. You should run a full database backup each day after working hours.
C. You should run a differential backup each day after working hours.
D. You should run a differential backup every hour during working hours.
E. You should run an incremental backup each day after working hours.
F. You should run an incremental backup every hour during working hours.
G. You should run a transaction log backup every hour during working hours.
Answer: B,D
Explanation:

QUESTION NO: 56
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2005
instance that host a database named Products. You want to monitor query response times on the
Products database.
How would you accomplish this task?
A. You should make use of the SQL performance monitor.
B. You should make use of SQL Server Profiler templates with start and end times of the queries.
C. You should make use of startup parameters with trace flags and restarting the SQL instance.
D. You should capture the SQL:BatchCompleted event classes in Windows System Monitor.
Answer: B
Explanation:

QUESTION NO: 57
You work as a SQL Server 2008 database administrator at ABC.com. ABC.com is using a SQL
instance that has a stored procedure which is used create a report. One day, a ABC.com user
named Mia Hamm complains that the data returned by the report lacks consistency. During the
investigation you notice that this is the results of phantom reads. You need to make sure that the
report resultsare consistent. Other database users at ABC.com must not be affected by your
solution.
How would you accomplish this task?
A. You should consider creating an index on the columns used queried the stored procedure.
B. You should consider having the stored procedure run in the Snapshot isolation mode.
C. You should consider rewrite the stored procedure to use the columns suggested by the SQL
Server Profiler.
BrainDumps.com

47

Microsoft 70-432 Exam


D. You should consider changing the stored procedure to utilize the Read Uncommitted level.
Answer: B
Explanation:

QUESTION NO: 58
You work as a SQL Server 2008 database administrator at ABC.com. ABC.com is using a SQL
instance that contains a database named ABC_Prod. Recently ABC_Prod has frequently become
deadlocked. You have received instructions from management to have the database log
information when it becomes deadlocked.
How would you configure the ABC_Prod database? (Choose TWO)
A. You should consider running the SQL Profiler.
B. You should consider configuring startup parameters using trace flags.
C. You should consider configuring SQL Server Auditing.
D. You should consider using the Transactions Log.
E. You should stop and restart the SQL instance.
Answer: B,E
Explanation:

QUESTION NO: 59
You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance.
You have been instructed to gather information about current users, sessions, and processes for
the instance.
Which of the following actions should you take?
A. You should consider making use of sp_monitor.
B. You should consider making use of sp_who.
C. You should consider making use of sp_articleview.
D. You should consider making use of sp_prepare.
Answer: B
Explanation:

BrainDumps.com

48

Microsoft 70-432 Exam

QUESTION NO: 60
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance hosts quite a few applications. ABC users report that one
of the applications has stopped working.
An application developer named Mia Hamm has been assigned to troubleshoot the application.
You need to provide Mia Hamm with only the permissions required for her to perform this task.
What steps should you take?
A. You should assign the required database-level permissions to Mia Hamm's SQL Server login.
B. You should assign the required server-level permissions to Mia Hamm's SQL Server login.
C. You should assign the required object-level permissions to Mia Hamm's SQL Server login.
D. You should makeMia Hamm's SQL Server login a member of the db_owner role.
Answer: B
Explanation:

QUESTION NO: 61
You work as a database administrator at ABC.com. ABC.com is using SQL Server 2008.
ABC.com has laboratory for analyzing new products. The results of the analysis are stored on a
SQL Server 2008 server named ABC_LAB that is in the laboratory. You have received instructions
ensure thatdata on ABC_LAB is replicated to the production SQL Server 2008 servers outside the
laboratoryso that the data can be used for reporting.
How would you accomplish this task? (Each correct answer forms part of the solution. Choose
TWO.)
A. You should consider using a separate transactional publication on ABC_LAB.
B. You should consider using a separate snapshot publication on ABC_LAB.
C. You should consider developing a merge subscription on each production SQL Server 2008
servers outside the laboratory.
D. You should consider using a push subscription on ABC_LAB.
E. You should consider using a pull subscription on each production SQL Server 2008 servers
outside the laboratory.
Answer: A,D

BrainDumps.com

49

Microsoft 70-432 Exam


Explanation:

QUESTION NO: 62
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. The SQL Server 2008 instance contains a database named ABC_DB.You add a stored
procedure named RecTable to the database using the following code (NOTE: Line numbers are
included for reference only):
01 CREATE PROCEDURE Prods.RecTable
02
03 AS
04
05 IF OBJECT_ID('Prods.ManuTeam') IS NOT NULL
06 DROP TABLE Prods.ManuTeam;
07
08 CREATE TABLE Prods.ManuTeam(
09ManuIdint PRIMARY KEY CLUSTERED,
10TeamSizesmallint,
11 TeamLeadernvarchar(150);
12 );
13
14 GO
15
However, when a ABC.com usernamed Mia Hamm tests the RecTable stored procedure she
receive an error stating CREATE TABLE permission denied in ABC_DB.
How would you rectify this problem without giving Mia Hamm more permissions than she
requires?
A. You should make Mia Hamm's SQL Server login a member of the db_owner role.
B. You should consider assigning the CREATE TABLE permission to Mia Hamm's SQL Server
BrainDumps.com

50

Microsoft 70-432 Exam


login.
C. You should alter the stored procedure to include the code WITH EXECUTE AS 'dbo' at line 02.
D. You should consider changing line 01 toCREATE PROCEDURE dbo.RecTable.
Answer: C
Explanation:

QUESTION NO: 63
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_DB1.
The ABC.com management would like the database security to be configured in such a way that
the log files exclusively contain data regarding successful and unsuccessful logon attempts.
You have decided to make use of the sp_configureTransact-SQL statement.
Which of the following actions should you take?
A. You should consider enabling the common criteria complianceoption.
B. You should consider enabling the c2 audit mode option.
C. You should consider enabling the ad hoc distributed queries option.
D. You should consider enabling the clr enabled option.
Answer: A
Explanation:

QUESTION NO: 64
You work as a SQL Server 2008 database administrator at ABC.com. ABC.com is using a SQL
Server 2008 Analysis Services (SSAS) instance.
You have received instruction to deploy a data mining structure that has the Clustering mining
model. You have been instructed to make sure that cluster membership is assigned by minimizing
the differences among items in a cluster while maximizing the distance between clusters. Your
solution should also allow for the entire data set to be loaded in one clustering pass.
Which of the following actions should you take?
A. You should consider configuring the Clustering Algorithm to make use of the Scalable K-Means
BrainDumps.com

51

Microsoft 70-432 Exam


method.
B. You should consider configuring the Clustering Algorithm to make use of the Non-scalable KMeans method.
C. You should consider configuring the Clustering Algorithm to make use of the Non-scalable EM
method.
D. You should consider configuring the Clustering Algorithm to make use of the Scalable EM
method.
Answer: B
Explanation:

QUESTION NO: 65
You work as a database administrator at ABC.com. ABC.com makes use of SQL Server 2008 R2.
ABC.com has a database that contains a table, named ABC_Item, which has numerous columns
including Name, ItemLine, ListPrice, Class, and Style. There is a standard query for the ABC_Item
table that searches for information based on these columns. There is also another standard query
specifying the Name column for the ORDER BY clause.
While in the process of reducing storage for the indexes, you are informed that the most common
searched to ABC_Item should be retained. To achieve this, you want to configure an index for the
Name column.
Which of the following actions should you take?
A. You should consider making use of a non-clustered index.
B. You should consider making use of a clustered index.
C. You should consider making use of a filtered index.
D. You should consider making use of an XML index.
Answer: B
Explanation:

QUESTION NO: 66
You work as a SQL Server 2008 database administrator at ABC.com. ABC.com has an instance
with an On-Line Analytical Processing (OLAP) database and a dimension table named ABC_TST.
ABC_TST is updated continuously. You want to reduce storage space used by the ABC_TST
table by compressing any redundant data in the table.
How would you accomplish this?
BrainDumps.com

52

Microsoft 70-432 Exam


A. You should consider using Page compression.
B. You should consider using NTFS file system compression.
C. You should consider using Transaction compression.
D. You should consider using Dimension compression.
Answer: A
Explanation:

QUESTION NO: 67
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
R2instance that contains a database named ABC_DB1.
ABC_DB1 contains a table named ABC_Prod that has a clustered primary key called
ABC_ProdID. ABC_DB1 also contains a solitary XML column, called ABC_ProdXml, which stores
XML data. ABC_ProdXmlis configured with an XML index.
After creating a new column called ABC_ProdNamein the Production table, you are instructed to
make sure that ABC_ProdNameis added to the primary key.
To achieve this, you have to alter the primary key.
Which of the following actions should you take prior to altering the primary key?
A. You should consider configuring a non-clustered index.
B. You should consider dropping the XML index.
C. You should consider restoring the XML index.
D. You should consider configuring the ABC_Prod table to make use of an XML index.
Answer: B
Explanation:

QUESTION NO: 68
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_DB1.
The ABC_DB1 database contains a SalesHistory table that has two table partitions. All information
in the SalesHistory table is located in the one partition, while the other partition has no information.

BrainDumps.com

53

Microsoft 70-432 Exam


You then create a process to transfer information from the partition, which includes information for
the oldest month of the Sales table, to the proper partition of the SalesHistory table.
You have received instructions to ensure that the process is capable of running at double capacity
at the end of each month.
Which of the following actions should you take?
A. You should consider changing the configuration of the Event Logs.
B. You should consider changing the configuration of the Transaction Logs.
C. You should consider changing the configuration of the Trace Logs.
D. You should consider configuring the use of Database snapshots.
Answer: B
Explanation:

QUESTION NO: 69
You work as a database administrator at ABC.com. ABC.com has a database named ABC_DB.
ABC_DB has a table named ABC_Prod that has over 100,000 rows. Several indexes that have
been created on the ABC_Prod tableare fragmented.
How would you deframent the indexes without causing too much unavailability of the table?
A. You should change the indexes to use the Full index option.
B. You should change the indexes to use the Page index option.
C. You should change the indexes to use the Online option.
D. You should change the indexes to use the Offline option.
E. You should change the indexes to use the Clustered index option.
Answer: C
Explanation:

QUESTION NO: 70
You work as a database administrator at ABC.com. You want to know how many users are
connected to a SQL Server 2008 instance.
What steps should you take?

BrainDumps.com

54

Microsoft 70-432 Exam


A. You should track SQLServer:General Statistics in Performance Monitor.
B. You should track SQLServer:User Settable in Performance Monitor.
C. You should track SQLServer:BufferNodein Performance Monitor.
D. You should track SQLServer:SQL Statistics in Performance Monitor.
E. You should track SQLServer:Resource Pool Statistics in Performance Monitor.
F. You should track SQLServer:Databases in Performance Monitor.
Answer: A
Explanation:

QUESTION NO: 71
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that includes an acquiring database and a selling database.
After setting the Resource Governor up to reduce the maximum CPU search time permitted for the
applications, you notice that some of the reports of the acquiring application does not execute
successfully.
You need to ensure that the Resource Governor settings are suitably altered to permit more CPU
time for the acquiring application.
Which of the following actions should you take?
A. You should consider making changes to the resource pool that is utilized by the acquiring
application.
B. You should consider making changes to the workload group that is utilized by the acquiring
application.
C. You should consider making changes to the workload group that is utilized by the selling
application.
D. You should consider making changes to the resource pool that is utilized by the selling
application.
Answer: B
Explanation:

QUESTION NO: 72
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
You been instructed to query the sys.dm_exec_query_stats view.
BrainDumps.com

55

Microsoft 70-432 Exam


Which of the following options describes a reason for querying this view? (Choose all that apply.)
A. To establish which common language runtime (CLR) queries are running extensively.
B. To establish the total number of time-out errors since server startup.
C. To establish the amount of queries waiting for grants to be satisfied.
D. To establish the amount of active queries that have their grants satisfied.
Answer: A
Explanation:

QUESTION NO: 73
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_Prod.
The transaction log for ABC_Prod runs from 7 AM to 4 PM at 1 hour intervals. You have
configured a snapshot of the database to be taken daily at 6 AM.
A ABC.com user, named Mia Hamm, starts her day everyday by removing all ABC_Prod data that
was entered into the ExistingSpeaker table the previous day. Numerous other changes have since
been made to ABC_Prod.
You have received instructions to run a full back up on ABC_Prod despite all these problems.
Which of the following actions should you take?
A. You should consider restoring the previous days backup before running the full backup
B. You should consider restoring the required data from the first transaction log for the day.
C. You should consider running the system restore procedure.
D. You should consider moving the deleted data from this mornings database snapshot to the
ExistingSpeaker table via the SELECT subquery in the INSERT statement.
Answer: D
Explanation:

QUESTION NO: 74
You work as a database administrator at ABC.com. ABC.com is using a remote instance of SQL
Server 2008 R2.

BrainDumps.com

56

Microsoft 70-432 Exam


Subsequent to receiving complaints that applications are running sluggishly, you decide to make
use of the Database Engine Tuning Advisor to examine a workload of the remote SQL Server
2008 R2 instance on a local SQL Server 2008 R2 instance.
Which of the following actions should you take?
A. You should consider running the dtexec.exe utility on the remote SQL Server 2008 R2 instance.
B. You should consider running the dtexec.exe utility on the remote SQL Server 2008 R2 instance.
C. You should consider capturing the workload to a trace file on the local SQL Server 2008 R2
instance by making use of the SQL Server Profiler.
D. You should consider capturing the workload to a trace file on the remote SQL Server 2008 R2
instance by making use of the SQL Server Profiler.
Answer: C
Explanation:

QUESTION NO: 75
You work as a database administrator at ABC.com. ABC.com is making use of a SQL Server 2008
R2 instance.
You have been given the responsibility of administering a management data warehouse that will
store performance information. You want to configure a data collector that has the ability to collect
performance information regularly on a defined schedule, and upload the collect performance
information on a separate schedule.
Which of the following actions should you take?
A. You should consider configuring the Event log.
B. You should consider configuring the Trace log.
C. You should consider developing a cached data collection.
D. You should consider developing a scheduled non-cached data collection set.
Answer: C
Explanation:

QUESTION NO: 76
You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance.

BrainDumps.com

57

Microsoft 70-432 Exam


The SQL Server 2008 R2 instance contains a database named ABC_DB. ABC_DB stores its data
file and transaction log file on a storage drive.
When it is reported that the storage drive is reaching capacity, you are instructed to relocate the
data file and transaction log file to a different storage drive.
Which of the following actions should you take?
A. You should consider making use of the sp_attach_db Transact-SQL statement.
B. You should consider making use of the CREATE DATABASE Transact-SQL statement.
C. You should consider making use of the sp_detach_db Transact-SQL statement.
D. You should consider making use of the ALTER DATABASE Transact-SQL statement.
Answer: D
Explanation:

QUESTION NO: 77
You work as a SQL Server 2008 database administrator at ABC.com. ABC.com is currently using
only the default SQL instance on their database server. You plan to implement several named
instances on the database server.
Which of the following actions should you take to ensure that you can access the named
instances?
A. You should consider starting IIS Admin Service.
B. You should consider starting the WebClient service.
C. You should consider starting the SQL Server Browser service.
D. You should consider starting the SQL Server Reporting Service.
E. You should consider starting the SQL Server service.
Answer: C
Explanation:

QUESTION NO: 78
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
instance. You want to check when last DBCC CHECKDB was run on a database.
What actions should you take?
BrainDumps.com

58

Microsoft 70-432 Exam


A. You should open the TRANSACTION LOG file.
B. You should open the ERRORLOG log file.
C. You should open the SYSTEMLOG log file.
D. You should open the EVENT VIEWER.
Answer: B
Explanation:

QUESTION NO: 79
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008
database server with a default instance. During routine maintenance you notice that a query
against a database is taking long to complete.
How would you check to see if the query is being blocked?
A. You should consider using the Performance Monitor.
B. You should consider using the Process Monitor utility.
C. You should consider using the Job Activity Monitor utility.
D. You should consider using the Activity Monitor utility.
Answer: D
Explanation:

QUESTION NO: 80
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance.
You have previously configured a weekly full backup, and a daily differential backup for the
database. You want to that the most recent data is available, even if the database server fails
during the work day. You also want to make sure that data loss is kept to a minimum.
Which of the following actions should you take?
A. You should consider configuring the use of the simple recovery model.
B. You should consider configuring the use of Database snapshots.
C. You should consider frequent backups of the event log.
D. You should consider configuring the use of transaction log backups that runs frequently.
Answer: D
Explanation: Run a transaction log backup to safe-keep the recent transactions.
BrainDumps.com

59

Microsoft 70-432 Exam

QUESTION NO: 81
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_DB1.
ABC.com also contains an application that makes use of the SELECT command to initiate the
process of populating various tables simultaneously. This application also makes use of
ABC_DB1.
When you receive several complaints from ABC.com's users that the application is performing
very sluggish, you decide to keep an eye on the status of the SQL Server 2008 R2 instance. You
want to make sure that application performance is not influenced by your actions.
Which of the following actions should you take?
A. You should consider making use of the Process Monitor Tool.
B. You should consider making use of the Web Service.
C. You should consider making use of the event viewer.
D. You should consider making use of the Dynamic Management Views tool.
Answer: D
Explanation:

QUESTION NO: 82
You work as a database administrator at ABC.com. ABC.com is making use of SQL Server 2008
R2.
You have just installed SQL Server Management Studio (SSMS) on one of ABC.coms
workstations. You have not, however, included the Business Intelligence Development Studio
(BIDS) in the installation.
You are then instructed to design a transactional package that has the ability to accommodate
using in excess of 8 tables, and is hosted by the msdb database of a server that is located in a
different location.
Which of the following actions should you take?

BrainDumps.com

60

Microsoft 70-432 Exam


A. You should consider making use of the dtexec utility.
B. You should consider making use of the bulk copy program.
C. You should consider making use of the dta utility.
D. You should consider making use of the SQL Server Import and Export Wizard to create the
package.
Answer: D
Explanation:

QUESTION NO: 83
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance for a Server Agent job.
During routine monitoring, you notice that the Server Agent job is not running as it should be.
Upon further analysis of the job history data, you find that it is unfinished and condensed.
You have to make sure that job data is accessible in its entirety.
Which of the following actions should you take?
A. You should consider having trace logging enabled.
B. You should consider configuring the job step options to allow job steps to be sent to an output
file.
C. You should consider having event logging enabled.
D. You should consider running the perfmon.exe command
Answer: B
Explanation:

QUESTION NO: 84
You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance.
The SQL Server 2008 instance includes a database named ABC_DB, which also contains spatial
data types. You have received instructions to run a database consistency check on ABC_DB. The
process should allow for the inclusion of the spatial indexes, while also reducing the impact on the
database synchronization.
You are planning to make use of the DBCC CHECKDB Transact-SQL statement.
BrainDumps.com

61

Microsoft 70-432 Exam


Which of the following arguments should be included in the Transact-SQL statement?
A. NOINDEX
B. EXTENDED_LOGICAL_CHECKS
C. ESTIMATEONLY
D. DATA_PURITY
Answer: B
Explanation:

QUESTION NO: 85
You work as a database administrator at ABC.com. ABC.com is making us of a SQL Server 2008
R2 instance, which includes a database that hosts transaction data for ABC.coms Web-based
order system.
The full recovery model is used on the database. The Web-based order system is utilized 24/7.
However, there are not many orders placed between 11 PM and 5 AM.
You have been instructed to devise a backup strategy that allows for the backup process to
complete in the least amount of time, while keeping the acceptable data loss to 60 minutes.
You have configured a full backup to run at 11 PM on a daily basis.
Which of the following actions should you take NEXT?
A. You should consider configuring an incremental backup to execute every 60 minutes.
B. You should consider configuring a snapshot backup to execute every 60 minutes.
C. You should consider configuring a differential backup to execute every 60 minutes.
D. You should consider configuring a transaction log backup to execute every 60 minutes.
Answer: C
Explanation:

QUESTION NO: 86
You work as a database administrator at ABC.com. ABC.com has recently upgraded from SQL
Server 2000 to SQL Server 2008 R2.
A database, named ABCClients, was detached prior to the upgrade. ABCClients is made up of 12
BrainDumps.com

62

Microsoft 70-432 Exam


data files. You have been instructed to make sure that ABCClients is usable on the SQL Server
2008 R2 instance.
Which of the following actions should you take?
A. You should consider making use of the sp_attach_db Transact-SQL statement.
B. You should consider making use of the CREATE DATABASE Transact-SQL statement.
C. You should consider making use of the sp_detach_db Transact-SQL statement.
D. You should consider making use of the ALTER DATABASE Transact-SQL statement.
Answer: A
Explanation:

QUESTION NO: 87
You work as a database administrator at ABC.com. You are working on a SQL Server 2008 R2
database called TestDB.
You have recently restored TestDB via a RESTORE Transact-SQL statement that includes the
CONTINUE_AFTER_ERROR, CHECKSUM, and RECOVERY arguments. You then noticed that
errors exist in the SQL Server logs for certain page restores.
You have received instructions to solve the issues as soon as possible.
Which of the following actions should you take?
A. You should consider making use of a DBCC CHECKDB Transact-SQL statement that includes
the REPAIR_REBUILD and DATA_PURITY arguments.
B. You should consider making use of a DBCC CHECKDB Transact-SQL statement that includes
the REPAIR_FAST and TABLOCK arguments.
C. You should consider making use of a DBCC CHECKDB Transact-SQL statement that includes
the REPAIR_ALLOW_DATA_LOSS and DATA_PURITY arguments.
D. You should consider making use of a DBCC CHECKDB Transact-SQL statement that includes
the REPAIR_ALLOW_DATA_LOSS and TABLOCK arguments.
Answer: D
Explanation:

QUESTION NO: 88

BrainDumps.com

63

Microsoft 70-432 Exam


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance. The SQL Server 2008 instance contains a database, named ABC_Prod, which is
configured in single-user mode. You have configured a backup strategy for ABC_Prod as
described below:
ABC_Prod is backed up to a file, called ABC_Prod.bak, which is performed at 9 PM every day.
The transaction log is backed up to a file, called ABC_Prod_HHMM.trn, which is executed at 20
minute intervals starting at 09:20 AM.
You receive a report from a ABC.com user, named Mia Hamm, that certain information was
removed by a search which was executed at 09:40 AM.
You are then instructed to ensure that you recover ABC_Prod to its previous status.
Which of the following actions should you take? (Choose all that apply.)
A. You should consider restoring the ABC_Prod.bak file using the RESTORE DATABASE
Transact-SQL statement with the NORECOVERY argument.
B. You should consider restoring the ABC_Prod.bak file using the RESTORE DATABASE
Transact-SQL statement with the RECOVERY argument.
C. You should consider restoring the relevant ABC_Prod_HHMM.trn file using the RESTORE
DATABASE Transact-SQL statement with the NORECOVERY argument.
D. You should consider restoring the relevant ABC_Prod_HHMM.trn file using the RESTORE
DATABASE Transact-SQL statement with the RECOVERY argument.
Answer: A,C
Explanation:

QUESTION NO: 89
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_Prod. The ABC_Prod database uses a full
recovery model.
To adapt to business requirements, ABC.com now need to make use of a process which changes
20,000 records from the Sales table every day at 10 PM.
You have received instruction to devise a solution that allows any changes to the records to be
changed back while remaining online.
Which of the following actions should you take?
BrainDumps.com

64

Microsoft 70-432 Exam


A. You should consider making use of Database Recovery.
B. You should consider making use of stored procedures.
C. You should consider changing to the simple recovery model.
D. You should consider making use of Database snapshots.
Answer: D
Explanation:

QUESTION NO: 90
You work as a database administrator at ABC.com.ABC.com makes use of SQL Server 2008 R2.
ABC.com has three database servers, named ABC-SR13, ABC-SR14, and ABC-SR15, which are
each running a different instance of SQL Server 2008. You have configured a database mirroring
session in high-safety mode between ABC-SR13 and ABC-SR14 for an important ABC.com
database. ABC-SR13 is presently configured as the principal server, while ABC-SR14 is
configured as the mirror server. ABC-SR15 is configured as the witness server.
You have been instructed to implement a patch on ABC-SR13 and ABC-SR14 that necessitates
the rebooting of the servers. You are informed that the implementation of the patch should be
done as quickly as possible, and prevent failover for the duration of the process. Furthermore, the
implementation should allow for the database to be active on the server on which the patch has
not been implemented as yet.
You start by stopping the mirroring session.
Which of the following actions should you take NEXT?
A. You should consider implementing the patch on ABC-SR13.
B. You should consider implementing the patch on ABC-SR14.
C. You should consider implementing the patch on ABC-SR15.
D. You should consider implementing the patch on a domain controller.
Answer: B
Explanation:

QUESTION NO: 91

BrainDumps.com

65

Microsoft 70-432 Exam


You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2.
ABC.com has two servers, named ABC-SR13 and ABC-SR14, which has SQL Server 2008 R2
installed. Both of these servers hosts a copy of a database, named ABCProducts. You have
configured transactional replication for ABCProducts between ABC-SR13 and ABC-SR14 with a
latency of 1 minute. You have also configure a backup strategy for ABCProducts as follows:
A daily full backup after business hours.
Transaction log backups every 30 minutes during business hours.
When ABCProducts on ABC-SR14 fails and cannot fix it, you verify that the ABCProducts
database located on ABC-SR13 is operating as normal.
You are then instructed to restore the ABCProducts database on ABC-SR14 with the least
possible data loss, in the shortest amount of time. The process should also have the least effect
on users of ABC-SR13 and ABC-SR14.
Which of the following actions should you take?
A. You should consider running a differential database backup of ABCProducts on ABC-SR13,
and restoring it on ABC-SR14.
B. You should consider running an incremental database backup of ABCProducts on ABC-SR13,
and restoring it on ABC-SR14.
C. You should consider running a snapshot database backup of ABCProducts on ABC-SR13, and
restoring it on ABC-SR14.
D. You should consider running a full database backup of ABCProducts on ABC-SR13, and
restoring it on ABC-SR14.
Answer: D
Explanation:

QUESTION NO: 92
You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance.
You have been informed that a database designer, named Andy Reid, requires the necessary
permissions to view the definitions of all database objects in a database. You are also informed
that you will be assigning the same permissions to other designers in the near future.

BrainDumps.com

66

Microsoft 70-432 Exam


You want to make sure that the entire process requires as little Transact-SQL statements as
possible.
Which of the following actions should you take?
A. You should consider making use of the CREATE USER Transact-SQL statement.
B. You should consider making use of the WORKLOAD GROUP Transact-SQL statement.
C. You should consider making use of the CREATE ROLE Transact-SQL statement.
D. You should consider making use of the APPLICATION ROLE Transact-SQL statement.
Answer: C
Explanation:

QUESTION NO: 93
You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance.
ABC.com has introduced a new security to allow members of a Windows group, called ABC_Prod,
to build new links to the SQL Server instance. The ABC_Prod group should only be able to build
these links from 10 AM to 10 PM. The new policy will be hosted by a table, called
RestrictedTester.
You are then informed that the implementation of the security policy should also allow for other
ABC.com users to access the instance at any time.
You realize that to achieve this, you have to create a logon trigger that prevents the ABC_Prod
group from accessing the instance outside of the allotted hours.
Which of the following options are TRUE with regards to logon triggers? (Choose all that apply.)

A. If authentication fails, logon triggers do not fire.


B. Logon triggers fire whether authentication fails, or not.
C. Logon triggers can be used to track login activity, restrict logins to SQL Server, or limit the
number of sessions for a specific login.
D. Logon triggers can be used to track login activity, restrict logins to SQL Server, but not to limit
the number of sessions for a specific login.
Answer: A,C
Explanation:

BrainDumps.com

67

Microsoft 70-432 Exam


QUESTION NO: 94
You work as a database administrator at ABC.com.ABC.com makes use of SQL Server 2008 R2.
ABC.com has a SQL Server 2008 R2 instance that includes a database, named ABC_DB, which
hosts the ProductItems table.
You have been instructed to implement a Replication topology to ensure that the ProductItems
table is replicated to the SQL Server instances running on mobile workstations. Even though the
ProductItems table is constantly refreshed, the ProductItems table should only be refreshed when
a mobile user connects to the ABC.com network.
Your solution should allow for the Replication topology to run in conjunction with the Subscription
type, while keeping the amount of bandwidth consumed to a minimum.
Which of the following options should you include in your strategy? (Choose all that apply.)
A. A Merge Replication topology.
B. A Transactional Replication topology.
C. An Active Directory Replication topology.
D. A Pull Subscription.
E. A Push Subscription.
Answer: A,D
Explanation:

QUESTION NO: 95
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
The database allows for the processing of predefined and informal queries. There is, however, a
suspicion that some queries will consume too much of the available resources. You want to
identify the queries that consume the majority of the resources.
Which of the following actions should you take?
A. You should consider making use of the sys.dm_exec_sessions dynamic management view
(DMV).
B. You should consider making use SQL Server Profiler templates.
C. You should consider making use of the sys.dm_exec_requests dynamic management view
(DMV).
BrainDumps.com

68

Microsoft 70-432 Exam


D. You should consider making use of the sys.dm_exec_query_stats dynamic management view
(DMV).
Answer: D
Explanation:

QUESTION NO: 96
You work as a database administrator at ABC.com.ABC.com makes use of SQL Server 2008 R2.
ABC.com has a SQL Server 2008 R2 cluster made up of physical servers and a virtual server. You
have been instructed to make sure that between the physical servers and the virtual server is
encrypted.
Which of the following actions should you take?
A. You should consider having the necessary certificate installed on all nodes.
B. You should consider having the necessary certificate installed on a web server.
C. You should consider having the necessary certificate stored in a shared folder.
D. You should consider having the necessary certificate installed on a domain controller.
Answer: A
Explanation:

QUESTION NO: 97
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_Sales. The database contains a Sales table.
You have developed a Merge Replication topology and a Publication that is configured to keep
data for 25 days. This configuration allows for the Sales table to be replicated to remote SQL
Server instances.
You have received a report from a ABC.com user, named Mia Hamm, regarding ABC_Sales not
including the latest information. Mia Hamm has informed you that she has been on holiday for
more than 25 days.
You are required to make sure that Mia Hamm has the latest information in her database as soon
as possible. Your solution should also allow for further modifications to the database information to
be replicated properly.
BrainDumps.com

69

Microsoft 70-432 Exam


Which of the following actions should you take? (Choose all that apply.)
A. You should consider developing a new Merge Replication topology
B. You should consider resetting the publication.
C. You should consider creating a new snapshot at once.
D. You should consider creating a new incremental backup.
Answer: B,C
Explanation:

QUESTION NO: 98
You work as a database administrator at ABC.com.ABC.com contains a server, named ABCDB01, which has SQL Server 2008 R2 installed and includes multiple instances of SQL Server
2008 R2.
These multiple instances of SQL Server2008 R2 should be able to link up to the dedicated
administrative link as part of ABC.coms disaster recovery strategy. During testing you are able to
hook up to the link on ABC-DB01s default instance, but you are unable to hook up to the
dedicated link on the other two instances.
You have received the following instructions:
Make sure that the instances are executing.
Make sure that the client applications can approach the instances.
Prevent other administrators from hooking up to any dedicated links on ABC-DB01.
Ensure that you are able to hook up to the dedicated link on all of the instances.
Which of the following actions should you take?
A. You should consider making use of the SQL Server Web service and configuring it to activate
automatically.
B. You should consider making use of the Distributed Transaction Coordinator service and
configuring it to activate automatically.
C. You should consider making use of the SQL Server Reporting service and configuring it to
activate automatically.
D. You should consider making use of the SQL Server Browser service and configuring it to
activate automatically.
Answer: D

BrainDumps.com

70

Microsoft 70-432 Exam


Explanation:

QUESTION NO: 99
You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
The SQL Server 2008 R2 instance contains a database, named ABC_Prod, which are log shipped
to a remote SQL Server 2008 R2 server. Subsequent to rebooting the primary SQL Server
instance, you notice that the log shipping is no longer functioning.
You have been tasked with finding the reason for the log shipping not functioning.
Which of the following actions should you take?
A. You should make sure that the SQL Server Agent has been started on the main server.
B. You should consider making use of the EXTENDED_LOGICAL_CHECKS option to run a
DBCC INDEXDEFRAG statement on ABC_Prod.
C. You should make sure that the SQL Server Surface Area Configuration has been started on the
main server.
D. You should make sure that the SQL Server Browser service has been started on the main
server.
Answer: A
Explanation:

QUESTION NO: 100


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
Subsequent to installing an important cluster, which necessitates continuous accessibility, on a
pair of cluster-ready nodes, you are instructed to make sure that the disruption of the service is
reduced.
Which of the following actions should you take?
A. You should consider configuring failover with the Prevent automatic failback option.
B. You should consider configuring failover with the Prevent manual failback option.
C. You should consider configuring failover with the Allow automatic failback option.
D. You should consider configuring failover with the Prevent failback during business hours option.
BrainDumps.com

71

Microsoft 70-432 Exam


Answer: A
Explanation:

QUESTION NO: 101


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2 to
administrate and maintain its database.
You have received instruction from management to create a strategy that makes use of the data
collector is utilized to collect performance information. Your strategy should also allow for 15 day
old information to be removed, and also reduce the amount of effort required to administer the
performance information.
Which of the following actions should you take?
A. You should consider creating a single SQL Server 2008 R2 Analysis Services (SSAS) package
process to reserve and remove performance information.
B. You should consider setting a management data warehouse process on every instance to
reserve and remove performance information in one database for all the instances.
C. You should consider creating a single SQL Service Integration Services (SSIS) package
process to reserve and remove performance information.
D. You should consider creating a single SQL Server 2008 R2 Reporting Services (SSRS).
Answer: B
Explanation:

QUESTION NO: 102


You work as a database administrator at ABC.com.ABC.com makes use of multiple SQL Server
2008 R2 instances. One of the SQL Server 2008 R2 instances includes a database named
ABC_DB.
You have been instructed to devise a data collection solution that makes use of the data collector
to gather performance information of all the instances. Your solution should allow for the gathered
performance information to be reserved in ABC_DB. Your solution should also allow for function
data to be gathered and loaded in the management data warehouse every 12 hours.
Which of the following actions should you take?
A. You should consider configuring the Event log.
B. You should consider configuring the Trace log.
BrainDumps.com

72

Microsoft 70-432 Exam


C. You should consider developing an on-demand cached data collection set.
D. You should consider developing a scheduled non-cached data collection set.
Answer: D
Explanation:

QUESTION NO: 103


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
The SQL Server 2008 R2 instance includes a database named ABC_DB that makes use of the
bulk-logging recovery model. You have employed a WAN connection for log shipping ABC_DB.
You have also configured ABC_DBs indexes to be reproduced by a scheduled job that results in
the log backups growing in size.
You have been instructed to make sure that the log backups employed by log shipping is reduced
in size.
Which of the following actions should you take?
A. You should consider making use of Database snapshots.
B. You should consider making use of the half recovery mode on ABC_DB.
C. You should consider making use of stored procedures.
D. You should consider having the log file backups compressed.
Answer: D
Explanation:

QUESTION NO: 104


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance that contains a database, named ABCBooks.
ABCBooks includes the BookTitle, EANNumber, SellingPrice and IssueDate columns. A clustered
index is configured for the BookTitle column and a non-clustered index, which includes the
EANNumber and SellingPrice columns, is configured for the IssueDate column.
A Transact-SQL query, which includes a query hint, searches the ABCBooks table for BookTitle,
EANNumber, SellingPrice, and IssueDate data. During monitoring you notice that the querys
performance is slow. You then run the sys.dm_db_index_physical_stats dynamic management
BrainDumps.com

73

Microsoft 70-432 Exam


function (DMF) and find that the avg_fragmentation_in_percent is in excess of 25%.
You have been instructed to find a solution to improve the querys performance.
Which of the following actions should you take?
A. You should consider having the table hint inserted.
B. You should consider having the query hint removed from the query.
C. You should consider having the primary key modified.
D. You should consider having a filtered index created.
Answer: B
Explanation:

QUESTION NO: 105


You work as a database administrator at ABC.com.ABC.com makes use of a SQL Server 2008 R2
instance.
ABC.com contains quite a few databases that are utilized by applications. You are planning to
make use of the Resource Governor to cut the result of searches. These searches are run via
SQL Server Management Studio.
You have been instructed to make sure that the CPU utilization for searches done by the SQL
Server Management Studio should not be more than 40 %. You also have to make sure that in the
event of the applications requiring all of the CPU resources, they are permitted to do so when
necessary.
Which of the following actions should you take FIRST?
A. You should consider developing a new resource pool.
B. You should consider setting up the MAX_CPU_PERCENT selection to 40.
C. You should consider assigning the resource pool to the workload group.
D. You should consider setting up the MAX_CPU_PERCENT selection to 100.
E. You should consider assigning the resource pool to the administrators group.
Answer: A
Explanation:

QUESTION NO: 106

BrainDumps.com

74

Microsoft 70-432 Exam


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
After receiving a complaint from a ABC.com user regarding the sluggish execution of the
applications on the server, you decide not to make use of the table scans to obtain additional data
as a result of the poor execution.
You have to gather the necessary data in another way.
Which of the following actions should you take?
A. You should consider making use of the SQL Server:Memory Manager Object utility via the
Windows System Monitor.
B. You should consider making use of the SQLServer:Disk Manager utility via the Windows
System Monitor.
C. You should consider making use of the SQL Server:Database Mirroring Object utility via the
Windows System Monitor.
D. You should consider making use of the SQLServer:Access Methods utility via the Windows
System Monitor.
Answer: D
Explanation:

QUESTION NO: 107


You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance.
ABC.com includes a database that is used by an application that is integral to daily operations.
You are then informed by a ABC.com user that the server is not running as it should be.
You need to make use of the Database Engine Tuning Advisor to enhance the applications
execution, while preventing other users from being affected by server performance.
You start by setting up a test server, named ABCTEST-SR01 that has the same hardware setting
as the server with the performance issue.
Which of the following actions should you take NEXT? (Choose all that apply.)
A. You should consider running the dtexec.exe utility on ABCTEST-SR01.
B. You should consider running the bcp.exe utility on ABCTEST-SR01.
BrainDumps.com

75

Microsoft 70-432 Exam


C. You should consider running the dta.exe utility on ABCTEST-SR01.
D. You should consider running the sqlmaint.exe utility on ABCTEST-SR01.
Answer: C
Explanation:

QUESTION NO: 108


You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance to manage and maintain its databases.
The SQL Server 2008 instance includes a database that has a table, named ABC_Tbl. You then
configure ABC_Tbl to include a Geography data type column, named ABC_Colmn.
You have been instructed to devise a solution that makes allowance for ABC_Colmn to include a
spatial index.
Which of the following actions should you take?
A. You should consider configuring ABC_Colmn with a primary key.
B. You should consider configuring ABC_Tbl with a primary key.
C. You should consider configuring ABC_Tbl with a clustered index.
D. You should consider configuring ABC_Colmn with a clustered index.
Answer: B
Explanation:

QUESTION NO: 109


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABC_Prod.
You have been instructed to join two tables on a column called ABC_Common. You have to
ensure that the values in the columns being joined are compared using a comparison operator.
Which of the following actions should you take?
A. You should consider making use of a full outer join
B. You should consider making use of an right outer join
C. You should consider making use of a cross join
BrainDumps.com

76

Microsoft 70-432 Exam


D. You should consider making use of an inner join.
Answer: D
Explanation:

QUESTION NO: 110


You work as a database administrator at ABC.com.ABC.com is using a SQL Server 2008 R2
instance.
The SQL Server 2008 R2 instance includes a database that has a table, named ABC_Tbl, which is
partitioned on the ProID column. The partitioning characteristics are as follows:
Partition 1 includes integer values between 5 and 30,000.
Partition 2 includes integer values in excess of 30,000.
Due to the growth in business operations, ABC.com 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 in excess of 60,000.
You decide to make use of an ALTER PARTITION FUNCTION Transact-SQL statement.
Which of the following is TRUE with regards to this Transact-SQL statement? (Choose all that
apply.)
A. It can only be used for splitting one partition into two, or merging two partitions into one.
B. It adds a filegroup to a partition scheme or alters the designation of the NEXT USED filegroup
for the partition scheme.
C. Filegroups that are affected by ALTER PARITITION FUNCTION does not have to be online.
D. ALTER PARTITION FUNCTION continues to process, even if there is a disabled clustered
index on any tables that use the partition function.
Answer: A
Explanation:

QUESTION NO: 111


You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
BrainDumps.com

77

Microsoft 70-432 Exam


R2 instance.
You have previously configured a SQL Server 2008 R2 cluster. You then disconnect the network
cable(s) from the active node, as well as delete the shared array from the active node.
Which of the following describes a reason for doing this?
A. To induce an automatic failover.
B. To induce a manual failover.
C. To improve cluster performance.
D. To improve encryption.
Answer: B
Explanation:

QUESTION NO: 112


You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance.
You monitor the transaction log of the instance on a daily basis. On this particular day you are
presented with information regarding torn page errors in the database.
You have been instructed to rectify these errors as soon as possible.
Which of the following actions should you take? (Choose two.)
A. You should consider restoring only the torn pages from the most recent full database backup.
B. You should consider restoring the full database from the most recent full database backup.
C. You should consider restoring the most recent snapshot backups.
D. You should consider restoring the transaction logs that was created since the full backup.
Answer: A,D
Explanation:

QUESTION NO: 113


You work as a database administrator at ABC.com. ABC.com has recently upgraded to SQL
Server 2008 R2.

BrainDumps.com

78

Microsoft 70-432 Exam


You have been instructed to have an existing SQL Server 6.0 database, named ABCSales,
upgraded to an instance of SQL Server 2008 R2. You have to make sure that any questionable
pages in ABCSales can be identified at an early stage.
Which of the following actions should you take?
A. You should consider configuring ABCSales to make use of the checksum page verify option.
B. You should consider running the SQL Server Profiler on ABCSales.
C. You should consider having the simple recovery model is configured for ABCSales.
D. You should consider configuring ABCSales to make use of the torn page detection page verify
option.
Answer: A
Explanation:

QUESTION NO: 114


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that contains a database named ABCSales.
Minimal changes to the information in ABCSales take place on a daily basis. You have been
instructed to devise a solution that fully logs all transactions and keeps the transaction log records
until after they are backed up. The solution should also allow for ABCSales to be restored to the
point of failure.
Which of the following actions should you take?
A. You should consider having the full recovery model configured for ABCSales.
B. You should consider having the simple recovery model is configured for ABCSales.
C. You should consider running the SQL Server Profiler on ABCSales.
D. You should consider configuring ABCSales to make use of the checksum page verify option.
Answer: A
Explanation:

QUESTION NO: 115


You work as a database administrator at ABC.com.ABC.com is making use of a SQL Server 2008
R2 instance that contains a database named ABC_Prod1.
You have been instructed to devise a strategy that produces a read-only duplication of
BrainDumps.com

79

Microsoft 70-432 Exam


ABC_Prod1 at the start of each business day. This duplication will be used as a reporting tool.
Your strategy should also have a minimal effect on ABC_Prod1.
Which of the following actions should you take?
A. You should consider configuring the use of the simple recovery model.
B. You should consider frequent backups of the event log.
C. You should consider making use of the database snapshots.
D. You should consider configuring the use of transaction log backups that runs frequently.
Answer: C
Explanation:

QUESTION NO: 116


You work as a database administrator at ABC.com.ABC.com is making use SQL Server 2008 R2
in their environment.
ABC.com has a server, named ABC-SR07, which runs an instance of SQL Server 2008 R2 and
has multiple applications installed.
You have configured the SQL Server Agent service to make use of the ABC-SR07/ACCOUNT.
You then configured a job that must be written to a database server. You now need to make sure
that only the SQL Server Agent service has read and write permissions to the database server.
Which of the following actions should you take?
A. You should consider configuring the SQL Server Agent service to make use of a global
Administrator account.
B. You should consider configuring the SQL Server Agent service to make use of a proxy account.
C. You should consider configuring the SQL Server Agent service to make use of a Local Service
account.
D. You should consider configuring the SQL Server Agent service to make use of a remote
System account.
Answer: C
Explanation:

QUESTION NO: 117


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
BrainDumps.com

80

Microsoft 70-432 Exam


instance that contains a database named ABCSales.
Minimal changes to the information in ABCSales take place on a daily basis. You have been
instructed to devise a solution that minimizes administrative overhead for the transaction log of
ABCSales.
Which of the following actions should you take?
A. You should consider making having the full recovery model configured for ABCSales.
B. You should consider having the simple recovery model is configured for ABCSales.
C. You should consider running the SQL Server Profiler on ABCSales.
D. You should consider configuring ABCSales to make use of the checksum page verify option.
Answer: B
Explanation:

QUESTION NO: 118


You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance.
You have been instructed to make sure that all stored procedures that are defined by ABC.coms
users make use of the prefix usp_. You are also instructed to make sure that administrators are
prevented from creating stored procedures that do not make use of the prefix usp_.
Which of the following actions should you take? (Choose all that apply.)
A. You should consider generating a policy that targets the name of the stored procedure, which is
evaluated on change.
B. You should consider generating a condition that targets the name of the stored procedure,
which is evaluated on change.
C. You should consider assigning minimum permissions to all administrators.
D. You should consider creating a trigger.
Answer: A
Explanation:

QUESTION NO: 119


You work as a database administrator at ABC.com. You are responsible for managing a SQL
Server 2008 R2 instance.
BrainDumps.com

81

Microsoft 70-432 Exam


ABC.com has an Internet Information Services (IIS) application that should be able to log on to the
SQL Server Analysis Services (SSAS) instance anonymously.
Which of the following actions should you take?
A. You should consider having the Security\RequireClientAuthentication server configuration
property disabled.
B. You should consider having the Security\RequireClientAuthentication server configuration
property enabled.
C. You should consider configuring the Security\RequireServerAuthenticationserver configuration
property with the default value.
D. You should consider configuring the Security\RequireClientAuthentication server configuration
property with the default value.
Answer: A
Explanation:

QUESTION NO: 120


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance that includes a database named ABCSales.
Minimal changes to the information in ABCSales take place on a daily basis. You have been
instructed to devise a solution that produces for a read-only copy of the database. Furthermore,
the solution has to run every morning and should consume as little disk resources as possible.
Which of the following actions should you take?
A. You should consider configuring the use of database snapshots.
B. You should consider configuring the use of transaction log backups.
C. You should consider configuring the use of differential backups.
D. You should consider configuring the use of incremental backups.
Answer: A
Explanation:

QUESTION NO: 121


You work as a database administrator at ABC.com. ABC.com makes use of SQL Server 2000
instance.

BrainDumps.com

82

Microsoft 70-432 Exam


A current specific job is configured to retrieve a file remotely from a shared network folder via a
CMDExec step. The use of the LocalSystem account has been configured for the SQL Server
Agent service.
You receive an instruction to upgrade the current SQL Server instance to SQL Server 2008 R2.
Subsequent to the upgrade, you notice that the job step is unable to finish its process.
It is imperative that this issue be rectified.
Which of the following actions should you take?
A. You should consider reconfiguring the job step to make use of a remote System account.
B. You should consider reconfiguring the job step to make use of a Local Service account.
C. You should consider reconfiguring the job step to make use of a proxy account.
D. You should consider reconfiguring the job step to make use of a Domain account.
Answer: C
Explanation:

QUESTION NO: 122


You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance.
You have previously devised a maintenance strategy that allows for the reconstruction of indexes,
as well as database integrity verification. The strategy is also configured to generate reports in the
form of a text file.
You have now been instructed to configure the strategy to forward e-mails to ABC.com operators
whenever the strategy is unsuccessfully implemented.
Which of the following actions should you take?
A. You should consider altering the Event log.
B. You should consider altering the SQL Active Directory Helper.
C. You should consider altering the SQL Server Agent job.
D. You should consider altering the SQL Server Browser.
Answer: C
Explanation:

BrainDumps.com

83

Microsoft 70-432 Exam


QUESTION NO: 123
You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2.
A database is relocated from one instance of SQL Server 2008 R2 to a different instance. A
ABC.com user previously accessed the database using specific credentials, and would like to
make use of those same credentials to access the database.
Which of the following actions should you take?
A. You should consider making use of the ALTER USER Transact-SQL statement that includes
the WITH LOGIN argument.
B. You should consider making use of ALTER DATABASE Transact-SQL statement that includes
the WITH LOGIN argument.
C. You should consider making use of the CREATE LOGIN Transact-SQL statement.
D. You should consider making use of the CREATE USER Transact-SQL statement.
Answer: A
Explanation:

QUESTION NO: 124


You work as a database administrator at ABC.com.ABC.com makes use of SQL Server 2008 R2.
ABC.com has three database servers, named ABC-SR13, ABC-SR14, and ABC-SR15, which are
each running a different instance of SQL Server 2008. You have configured a database mirroring
session in high-safety mode between ABC-SR13 and ABC-SR14 for an important ABC.com
database. ABC-SR13 is presently configured as the principal server, while ABC-SR14 is
configured as the mirror server. ABC-SR15 is configured as the witness server.
Which of the following is TRUE with regards to database mirroring? (Choose all that apply.)
A. You are able to mirror any database.
B. Mirroring of the master, msdb, tempdb, or model databases is not supported.
C. Database mirroring is not supported by the simple and bulk-logged recovery models.
D. The full, simple, and bulk-logged recovery models support database mirroring.
Answer: B,C
Explanation:

BrainDumps.com

84

Microsoft 70-432 Exam


QUESTION NO: 125
You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance.
You have been instructed to make sure that all ABC.coms users, including managers, receive
daily reports via Database Mail. You are then informed that your solution should allow for
managers to receive the report as soon as possible.
Which of the following actions should you take?
A. You should consider configuring two separate Database Mail profiles for users and managers.
B. You should configure a Database Mail profile for users, and personally send each manager the
report.
C. You should consider configuring two separate Database Mail accounts for users and managers.
D. You should consider configuring a single Database Mail profile, and sending the reports as high
priority.
Answer: B
Explanation:
Database Mail allows you to create multiple profiles within a SQL Server instance. Optionally, you
can choose the profile that Database Mail uses when you send a message.
By using different profiles you can prioritize among the messages that are being sent.

QUESTION NO: 126


You work as a database administrator at ABC.com. ABC.com is using a SQL Server 2008 R2
instance. The SQL Server 2008 R2 instance contains a database named ABC_DB.
You have employed the SQL Server service to configure the FILESTREAM data container in the
ABC_DB database.
Which of the following options are TRUE with regards to FILESTREAM data? (Choose all that
apply.)
A. FILESTREAM data is not encrypted even though you have enabled transparent data
encryption.
B. FILESTREAM data is only encrypted when you have transparent data encryption enabled.
C. FILESTREAM data must be stored in FILESTREAM filegroups contains file system directories
instead of the files themselves.
D. FILESTREAM data must be stored in a stored procedure.
BrainDumps.com

85

Microsoft 70-432 Exam


Answer: A,C
Explanation:

QUESTION NO: 127


You work as a database administrator at ABC.com. ABC.com is making use of SQL Server 2008
R2.
ABC.com has a server running an instance of SQL Server 2008 R2, which hosts a database
named ABC_Clients.
When ABC_Clients encounter numerous deadlock issues, you configure the instances startup
parameters with the necessary trace flags and reboot the instance.
Which of the following is TRUE regarding this configuration?
A. It allows for the capturing of deadlock data in the SQL Server error log.
B. It allows for the capturing of deadlock data in the SQL Server event log.
C. It allows for the capturing of deadlock data in the SQL Server trace log.
D. It allows for the capturing of deadlock data in the SQL Server transaction log.
Answer: A
Explanation:

QUESTION NO: 128


You work as a database administrator at ABC.com. ABC.com makes use of a SQL Server 2008
R2 instance that includes an On-Line Analytical Processing (OLAP) database.
The OLAP database hosts a dimension table, named ABCClients, which has hourly information
updates configured. As a result, ABCClients has a large quantity of information that is no longer
used.
You have been instructed to make sure that the amount of space used by the ABCClients table is
reduced with as little administrative effort as possible.
Which of the following actions should you take?

BrainDumps.com

86

Microsoft 70-432 Exam


A. You should consider manually deleting the information that is no longer used.
B. You should consider making use of page compression.
C. You should consider making use of the Disk Cleanup Wizard.
D. You should consider making use of folder compression.
Answer: B
Explanation:

QUESTION NO: 129


You work as a database administrator at ABC.com. ABC.com is planning to migrate a SQL Server
2000 application to SQL Server 2008 R2.
After the migration, you want to keep an eye on the performance of the SQL Server 2008 R2
instance. You then configure a SQL server-side trace that captures the Deprecation
Announcement and Deprecation Final Support event classes.
Which two of the following best describes these two event classes respectively? (Choose two.)
A. The Deprecation Final Support event class reveals that a feature will be removed in the next
important release of SQL Server.
B. The Deprecation Announcement event class reveals that a feature will be removed in the next
important release of SQL Server.
C. The Deprecation Announcement event class reveals that a feature will be removed in an
upcoming edition of SQL Server.
D. The Deprecation Final Support event class reveals that a feature will be removed in an
upcoming edition of SQL Server.
Answer: A,C
Explanation:

BrainDumps.com

87

You might also like