70-431 MCITP Braindump
ExamSoon 70-431 Exams
Microsoft Microsoft SQL Server 2005 Implementation & Maintenance
O rder : 70-431 Exam
Practice Exam: 70-431
Exam Number/Code: 70-431
Exam Name: Microsoft SQL Server 2005 Implementation & Maintenance
Questions and Answers: 84 Q&As
Free 70-431 Braindumps
Exam : Microsoft 70-431
Title : Microsoft SQL Server 2005 Implementation & Maintenance
1. A support engineer reports that inserting new sales transactions in a SQL Server 2005 database results in an error.
You investigate the error. You discover that in one of the databases, a developer has accidentally deleted some data
in a table that is critical for transaction processing. The database uses the full recovery model. You need to restore
the table. You need to achieve this goal without affecting the availability of other data in the database. What should
you do?
A. Back up the current transaction log. Restore the database with a different name and stop at the point just before
the data loss. Copy the table back into the original database.
B. Back up the current transaction log. Restore the database to the point just before the data loss.
C. Restore the database from the existing backup files to a time just before the data loss.
D. Restore the database to the point of the last full backup.
Answer: A
2. Your company uses SQL Server 2005. You are implementing a series of views that are used in ad hoc queries. The
views are used to enforce your companys security policy of abstracting data. Some of these views perform slowly.
You create indexes on those views to increase performance, while still maintaining the companys security policy.
One of the views returns the current date as one of the columns. The view returns the current date by using the
GETDATE() function. This view does not allow you to create an index. You need to create an index on the view.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Remove all deterministic function calls from