首页 > Microsoft > MCITP > 70-444

Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005:70-444

科目编号:70-444

科目名称:Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005

描述:
70-444 考试是 Microsoft 公司的 Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005 认证考试官方代号,kaoccna 的 70-444 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-444 考试,为 Microsoft Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005认证做最后冲刺,又苦于没有绝对权威的考试真题模拟

    mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-444 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-444 考题大师的全部费用,绝对保证您的利益不受到任何的损失。

70-444
  • 科目: 70-444
  • 原价: ¥ 806.00
  • 现价: ¥ 644.00

kaoccna 的优势

70-444 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-444 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-444 最新题库下载,完全覆盖 mcsepass 考试原题。

部分考题展示

 
 
Exam : Microsoft 70-444
Title : Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005


1. You are the database administrator for your company. The company uses a database that contains a table named Sales. The CREATE statement for the Sales table is shown in the exhibit. (Click the Exhibit button.)
The Sales table is very write-intensive and is commonly used in queries. Both of the indexes on the Sales table become fragmented within the first two hours of being rebuilt. Both leaf and intermediate level pages split frequently. There is sufficient disk space available to fully optimize the indexes.
You need to optimize the nonclustered index on the Sales_Amount column of the Sales table.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Set the FILLFACTOR option to 70 when rebuilding the index.
B. Set the FILLFACTOR option to 100 when rebuilding the index.
C. Set the PAD_INDEX option to OFF when building the index.
D. Set the PAD_INDEX option to ON when building the index.
Answer: A AND D

2. You are the database administrator for your company. You manage a SQL Server 2005 database named Sales. You are given a SQL Server Profiler sample workload with queries to the Sales database on a typical day.
You need to evaluate the effectiveness of current indexing and identify changes that would be appropriate.
What should you do first?
A. Use the Index Tuning Wizard with the sample workload.
B. Use SQL Server Profiler to run the sample workload.
C. Create a query with the five stored procedures that are used the most frequently. Then click the Analyze Query in Database Engine Tuning Advisor button.
D. Use the Database Engine Tuning Advisor (DTA) with the sample workload.
Answer: D

3. You are the database administrator for your company. You create a new stored procedure. You run the stored procedure and discover an error.
You want to gather and process any error information that is generated while running the procedure. Error logging must use the minimal amount of resources while providing the needed functionality.
You need to know what caused the error. You also need to include the appropriate error functions in the new stored procedure.
What should you do?
A. Use the @@error function.
B. Use TRY...CATCH blocks.
C. Set the XACT_ABORT command to off.
D. Use a GOTO statement.
Answer: B

4. You are a database administrator for your company. You receive alerts reporting that several transactions on your SQL Server 2005 database have terminated due to a deadlock error.
You need to find out the causes of the deadlocks.
What should you do?
A. Use System Monitor to trace the Application instance of the Number of Deadlocks/sec counter in the SQL Locks object.
B. Use the sys.dm_tran_locks dynamic management view (DMV).
C. Run the Database Engine Tuning Advisor (DTA) and implement the recommendations.
D. Run SQL Server Profiler and create a trace with the Deadlock graph event group, and extract deadlock events.
Answer: D

5. You are a database administrator for your company The company uses a SQL Server 2005 database that contains a table named Production.Product. There are more than 40 columns in the table. The most common queries are shown in the following Transact-SQL statements. --QUERY 1
SELECT [Name], [ProductLine], [ListPrice], [Class], [Style]
FROM [Production].[Product]
WHERE [ProductLine] = 'T'
--QUERY 2
SELECT * FROM [Production].[Product]
ORDER BY [Name]
You need to choose the best indexes to support the most common queries to the Production.Product table while minimizing the space required for the indexes.
Which two indexes should you use? (Each correct answer presents part of the solution. Choosetwo.)
A. Create a clustered index on the Name column.
B. Create a nonclustered index on the Name column.
C. Create a nonclustered index on the ProductLine column and include the ListPrice, Class and Style columns.
D. Create a clustered index on the ProductLine, ListPrice, Class and Style columns.
E. Create a nonclustered index on the ProductLine, ListPrice columns.
Answer: C AND A

6. You are the database administrator for a SQL Server 2005 computer named SQL1. A user reports that his query has been running for a very long time and is still running.
You access the sys.dm_tran_locks dynamic management view (DMV). The relevant results are shown in the following table.
You need to find the user name of the user with the blocking connection.
What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A. Execute sp_who 55.
B. Execute sp_who 56.
C. Use the Activity Monitor in Microsoft SQL Management Studio and locate process 55.
D. Use the Activity Monitor in Microsoft SQL Management Studio and locate process 56.
E. Select from the sys.syslockinfo compatibility view and locate spid 55.
F. Select from the sys.syslockinfo compatibility view and locate spid 56.
Answer: B AND D

7. You are a database administrator for your company. You notice that the following Transact-SQL query is performing very slowly.
SELECT VideoTitle, UpcNum, RetailPrice, ReleaseDate
FROM Srvideo.VideoTitle WITH (INDEX(0))
WHERE ReleaseDate BETWEEN '20050401' AND '20050510'??
There is a clustered index on the VideoTitle column. There is a nonclustered index on the ReleaseDate column that includes the UpcNum and RetailPrice columns. When you query the sys.dm_db_index_physical_stats dynamic management function (DMF) or the VideoTitle table, the avg_fragmentation_in_percent is 10 percent.
The graphical execution plan for the slow query is shown in the exhibit.
You need to ensure that the query performs quickly.
What should you do?
A. Re-create the index on only the ReleaseDate column.
B. Remove the query hint from the query.
C. Change the query hint to force the optimizer to force a clustered index seek or a scan.
D. Rebuild all indexes on the VideoTitle table.
Answer: B

8. You are the administrator of a SQL Server 2005 computer named SQL1. Users regularly report that they receive error messages stating that the transaction log is full. When they get this message, their data changes fail. You notice that disk space on SQL1 is limited.
You need to configure SQL1 to automatically prevent users' data changes from failing due to full transaction logs.
What should you do?
A. Configure event notification at the server level for the LOG_FILE_AUTO_GROW event. Configure the Service Broker to automatically notify database administrators of the event.
B. Configure event notification at the database level for the LOG_FILE_AUTO_GROW event.
Configure the Service Broker to automatically notify database administrators of the event.
C. Double the maximum size of all of the transaction logs. Set the transaction logs to automatically grow by 30 percent.
D. Create SQL Server performance condition alerts to run a job that backs up the transaction log and sends an e-mail message to database administrators by using Database Mail when the transaction log exceeds the counter.
Answer: D

9. You are the database administrator of a SQL Server 2005 computer named SQL1. The following query is run frequently.
SELECT E. EmployeeID, C. FirstName + ' ' + C. LastName AS FullName
, E. Title, E. VacationHours, E. SickLeaveHours, A. AddressLine1, A. AddressLine2,
A. City, A. PostalCode, S.[Name] AS State
FROM HumanResources.Employee AS E
INNER JOIN HumanResources.EmployeeAddress AS EA
ON E. EmployeeID = EA. EmployeeID
INNER JOIN Person.Address AS A
ON A. AddressID = EA. AddressID
INNER JOIN Person.Contact AS C
ON C. ContactID = E. ContactID
INNER JOIN Person.StateProvince AS S
ON S.StateProvinceID = A. StateProvinceID
ORDER BY C. LastName
All tables referenced in the query are read-intensive with very few inserts and updates. You cannot change existing objects in the database. You can add new objects to the database.
You need to optimize the performance of the query.
What should you do?
A. Create a view that contains all of the columns that are used in the query.
B. Create a partitioned table that contains all of the columns that are used in the query.
C. Create an indexed view that contains all of the columns that are used in the query.
D. Alter the current indexes by setting the FILLFACTOR option to 50.
Answer: C

10. You are the database administrator for your company. You have a single processor in your SQL Server 2005 computer. You run System Monitor and discover that your total processor utilization is averaging 95 percent.
You need to use System Monitor to find out which application or service is causing the problem.
What should you do?
A. Add the _total instance for Processor: % Processor Time.
B. Add the _total instance for Processor: % Privileged Time.
C. Add each instance for Processor: % Privileged Time.
D. Add the _total instance for Process: % Processor Time.
E. Add each instance for Process: % Processor Time.
Answer: E

11. You are the administrator of a SQL Server 2005 computer named SQL All databases on SQL1 have been created with the default auto file growth properties on one RAID 10 volume. All transaction logs on SQL1 have been created without file growth enabled on a second RAID 10 volume.
You need to ensure that you are notified when the databases are approaching disk capacity.
You also need to prevent errors caused when any transaction log runs out of space.
Which two actions should you perform? (Each correct answer presents part of the solution.Choose two.)
A. Create a performance alert on the SQLServer:SQL Errors:Errors/sec counter.
Have the alert notify you of the problem.
B. Create a performance alert on the SQLServer:Databases:Data File(s) Size (KB) counter.
Have the alert notify you of the problem.
C. Create a performance alert on the LogicalDisk:% Free Space counter.
Have the alert notify you of the problem.
D. Create a SQL Server performance condition alert on the SQLServer:Databases:PercentLogUsed counter on each transaction log.
Define a response to automatically backup the transaction log and notify you about the problem.
E. Create SQL Server performance condition alerts on the SQLServer:Databases:Data File(s) Size (KB) counter for each database.
Define a response to add 100 MB to the existing data file size and notify you about the problem.
F. Create SQL Server performance condition alerts on the SQLServer:Databases:Log Growths counter for each database.Define a response to automatically backup the transaction log and notify you about the problem.
Answer: D AND C

12. You are a database administrator for your company. You run SQL Server Profiler by using the SP:Recompile event class. You notice a large number of recompiles occurring.
You need to identify the possible cause of the large number of recompiles.
What is the most likely cause of the problem?
A. Ad hoc batches are not being retrieved from the procedure cache.
B. The sp_executesql batches are not being retrieved from the procedure cache.
C. A database administrator executed UPDATE STATISTICS statements on all tables that are referenced by the most common stored procedures.
D. A database administrator created one new stored procedure.
Answer: C

13. You are the administrator of a SQL Server 2005 computer. The performance of the server has degraded to a great extent over time. You are troubleshooting the indexing environment.
You rebuild the clustered indexes that are used the most frequently. You want to optimize the most frequently accessed nonclustered index. You access the sys.dm_db_index_usage_stats dynamic management view (DMV). The results are shown in the following table.
Max degree of parallelism 0
Cost threshold for parallelism 20
Affinity mask 1
AWE enabled 1
You need to identify which nonclustered index is being used the most frequently when the entire index is not read.
Which object_id and index_id combination should you use?
A. Use the object_id 869578136 and the index_id 1.
B. Use the object_id 309576141 and the index_id 1.
C. Use the object_id 2066106401 and the index_id 1.
D. Use the object_id 2066106401 and the index_id 2.
E. Use the object_id 869578136 and the index_id 5.
Answer: E

14. You are the administrator of a SQL Server 2005 computer named SQL1. SQL1 has recently been upgraded from two to eight processors. The SQL1 configuration is summarized in the following table.
You need to optimize SQL1 so that longer running queries can run parallel plans.
What should you do?
A. Change the max degree of parallelism to 1.
B. Change the cost threshold for parallelism to 0.
C. Change the affinity mask to 0.
D. Change the AWE enabled setting to 0.
Answer: C

联系我们
联系手机:13861768475
MSN:saleintest@hotmail.com
QQ留言 QQ留言

首页 |代考流程 | 常见问题 | 证书查询 | 认证资讯 | 联系我们 | 站点导航 1 2 3 4 | 站点地图

Any charges made through this site will appear as CertBible Tech LTD. All trademarks are the property of their respective owners.

Copyright©2006-2011 mcsepass Limited. All Rights Reserved