程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 微軟認證最新考題70-029 SQL7.0實現

微軟認證最新考題70-029 SQL7.0實現

編輯:關於SqlServer

70-029 SQL7.0實現
1). Users report slow response times when they are modify data in  your application. Response times are Excellent when users are merely retrieving data. The search criteria used for modifying data are the same as the search criteria for retrIEving data.

All transactions are short and follow standard guidelines for coding transactions. You monitor blocking locks, it’s ok.

What is the most likely cause?
A. The transaction log is placed on an otherwise busy disk drive.
B. The transaction log is nearly full
C. The checkpoint process is set too short
D. The tempdb database is too small
E. The tempdb database is on the same physical disk drive as the
    database.
Answer: A

2). Database includes a table named experiments that is defined as follows:
CREATE TABLE experiments { experimentid char(32),
description text,
status integer,
results text}

You write the following:
SELECT* from experiments where contains(description,  'angina')
you are certain that there are matching rows, but you receive an empty result set when you run the query.

what should you do?(choose two)
A. ensure that there is a nonunique index on the description column of the experiments table.
B. ensure that there is a clustered index on the results column
    experiments table.
C. create a full-text catalog that includes the experiments table.
D. create a scheduled job to populate the full-text catalog.
Answer: C,D

3). Database includes  a  job_cost table that typically holds 100000 rows but can grow or shrink by as much as 75000 rows at a time. the job_cost table is maintained by a batch job that runs at night.
during the day, the job_cost table is frequently joined to other tables by many different queries. Users report that their initial queries are very slow, but then response time improves for subsequent querIEs.

How should you improve the response time of the initial querIEs?
A. run the sp_updatestats stored procedure as part of the nightly batch
   job.
B. run the sp_createstats stored procedure as part of the nightly batch 
  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved