[计算机类试卷]微软认证70-228模拟试卷8及答案与解析.doc
《[计算机类试卷]微软认证70-228模拟试卷8及答案与解析.doc》由会员分享,可在线阅读,更多相关《[计算机类试卷]微软认证70-228模拟试卷8及答案与解析.doc(14页珍藏版)》请在麦多课文档分享上搜索。
1、微软认证 70-228模拟试卷 8及答案与解析 1 You are the administrator of a SQL Server 2000 computer. The server contains a database named sales. Your company uses the database to store the sales departments responses to requests for price quotations. The database is configured as shown in the exhibit. Developers in y
2、our company create an application used for saving quotations. The application executes the following transact-SQL statement: UPDATE QuotationSummary SET CustomerName = Jean-Paul Deloria WHERE QuotationID = 12 When the application executes the statement, the developers receive the following error: Se
3、rver: Mrh4403, Level 16, Stats 1, Line 1 View or function QuotationSummary is not updateable because it contains aggregates: You want developers to be able to use this UPDATE statement without generating errors. What should you do? ( A) Create an INSTEAD OF trigger on the view to update the composit
4、e tables. ( B) Grant the developers UPDATE permissions on each base table. ( C) Add a cascading update trigger on each base table. ( D) Create a QuotationSummary table and populate the table with data from the base tables. 2 You are the administrator of SQL Server 2000 computer. The server contains
5、a database named Inventory. The database has a set of tables that track the location of parts. The tables are configured as shown in the Database Schema exhibit. You examine the indexes in the PartsLocations table. The indexes are configured as shown in the Indexes exhibit.You also examine the conti
6、guity of the PK_partsLocations index and receive the following results:DBCC SHOWCONTIG scanning PartsLocations table.Table: PartsLocations (1); index ID: 1, database ID: 6TABLE level scan performed.- Pages Scanned: 3000- Extents Scanned: 750- Extent Switches: 502- Avg. Pages per Extent: 4.0- Scan De
7、nsity Best Count:Actual Count.: 33.33% 1:3- Logical Scan Fragmentation.: 33.33%- Extent Scan Fragmentation: 33.33%- Avg. Bytes Free per Page.: 1166.0- Avg. Page Density (full).: 85.77%You need to improve the performance of the queries that join this table to the Parts table and the Locations table.
8、What should you do? ( A) Re-create the PK_PartsLocations index as a clustered index. ( B) Re-create the IX_PartsLocations_PartsID as a clustered index. ( C) Re-create the IX_PartsLocations_LocationId as a clustered index. ( D) Re-create the PK_PartsLocations index as a nonclustered index. 3 You are
9、the administrator of a SQL Server 2000 computer. The server contains a database that is heavily indexed and that company users query extensively. The database has grown and query response time has slowed. The database is stored in a single data file. You want to accelerate query response time. What
10、should you do? ( A) On a new hard disk, create a new filegroup. Drop the existing nonclustered indexes, and then re-create them on the new filegroup. ( B) On a new hard disk, add a new file to the PRIMARY filegroup. Drop the existing nonclustered indexes, and then re-create them on the PRIMARY fileg
11、roup. ( C) On the existing hard disk, create a new filegroup. Drop the existing nonclustered indexes, and then re-create them on the new filegroup. ( D) On the existing hard disk, add a new file to the primary filegroup. Drop the existing nonclustered indexes, and then re-create them on the PRIMARY
12、filegroup. 4 You are the administrator of SQL Server 2000 computer named FABSQL2K01. You create a Data Transformation Services package that contains definition for two transform data tasks.The tasks gets data from two text files named Customers and Sales. The DTS package is configured as shown in th
13、e exhibit.You do not want the DTS package to add any data to the server unless both transform data tasks complete successfully.You select the use transactions check box of DTS package and the Join transaction of present check box of both transform data tasks. You then select the fail package on step
14、 failure check box of both transform data tasks.You want to use the DTS package to import data from the text files to the server. You want to ensure that changes are committed if all imported data is successfully transformed. What should you do? ( A) Select the commit on successful completion check
15、box of the DTS package. ( B) Select the commit transaction on successful completion of this step check box of the customers transform data task. ( C) Select the commit transaction on successful completion of this step check box of the sales transform data task. ( D) Select the commit transaction on
16、successful completion of this step check box of both transform data tasks. 5 You are the administrator of a 12 SQL Server 2000 computers. These servers are located in company offices throughout the world. You configure a multiserver job on the server in your companys New York City office. You config
17、ure this server as a master server, and designate the remaining 11 servers as target servers. After the job completes successfully, you decide to set up a new SQL Server 2000 computer as the master server. The new server will be named JobMaster and the other 12 servers will be target servers. You ne
18、ed to make the New York City server a target server instead of a master server. What should you do? ( A) On the New York City server, defect all 11 target servers. On the JobMaster server, enlist the 12 servers as target servers. ( B) On the JobMaster server, enlist all other servers as target serve
19、rs. ( C) On the New York City server enlist the JobMaster server as a target server. Transfer the multiserver jobs from the New York City server to the JobMaster server. ( D) On the JobMaster server, enlist the New York City server as a target server. On the JobMaster server, enlist the other 11 ser
20、vers as target servers. On the JobMaster server, defect the New York City server. 6 You are the administrator of a new Microsoft Windows 2000 Server computer named CPSRV1.CPSRV1 is a member server in your companys Windows NT 4.0 domain, which is named CPDOMAIN. A separate Windows NT domain named CPU
21、SERS contains all of your companys user accounts. A trust relationship exists between the CPDOMAIN domain and the CPUSERS domain.You are installing SQL Server 2000 on CPSRV1.You specify a service account for each SQL Server service as shown in the following table: After the installation is complete,
22、 the MSSQLServer service and the SQLServerAgent service do not start. You need to configure the services to start without changing any security settings in either domain.What should you do? ( A) Configure the services to run under the local system account ( B) Add CPSRV1 to the CPUSERS domain ( C) A
23、dd CPUSERSsqlsvr and CPUSERSsqlagent to the local administrators group on CPSRV1 ( D) Add CPUSERSsqlsvr and CPUSERSsqlagent to the CPUSERSDomain Admins groups. ( E) Add CPUSERSsqlsvr and CPUSERSsqlagent to the CPUSERSDomain users groups. 7 Exhibit: BULK INSERT Ezonexam.dbo.employees FROM tkafricefub
24、ar512.txt WITH DATAFILETYPE = char, FIELD/TERMINATOR = t, ROWTERMINATOR = n, TABLOCK You work as database administrator at E. You handle one SQL Server 2000 computer. How should you improve the performance of the query in the exhibit above? A. Extend the BULK INSERT statement with the BATCHSIZE opti
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
2000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 计算机 试卷 微软 认证 70228 模拟 答案 解析 DOC
