• 网络学院
  • IT资讯
  • 操作系统
  • 网络技术
  • 软件应用
  • 办公软件
  • 编程技术
  • 网站架设
  • 数据库类
  • 平面设计
  • 多媒体类
  • 游戏资讯
  • 教学论文
  • 认证考试
MCSE模拟试题:SQLServer考题
  站点:
  • 首 页
  • 最新软件
  • 文章教程
  • 国内软件
  • 国外软件
  • 绿色软件
  • 源码下载
  • 字体下载
MCSE模拟试题:SQLServer考题
软件发布 MCSE模拟试题:SQLServer考题
网络软件 系统工具 应用软件 联络聊天 图形图像 多媒体类 行业软件 游戏娱乐 编程开发 安全相关 教育教学 数码软件 绿软下载
热门软件: QQ 瑞星 pplive e话通 木马克星 千千静听 office2000 五笔字根 Photoshop 视频分割
返回文章教程首页 >> 认证考试 >> 微软认证 >> MCSE模拟题 >> MCSE模拟试题:SQLServer考题

MCSE模拟试题:SQLServer考题

添加时间: 2007-4-8 1:44:18  作者: 微软认证参考  阅读次数:51   来源: http://www.d9soft.com

       

   Your company’s S QL Server 7 . 0 dat abase i s backed dail y at m i dn i ght. One morni ng you load a large amount of data by using a nonlogged transaction. You then disable the selectinto/bulkcopy ption. What is the easiest way to restore the validity of the transaction logbackup sequence?
    A. Create a database backup.

    B. Truncate the transaction log.

    C. Backup the transaction log.

    D. Create a differential database backup.

    Answer: D

    You want to improve the performance of a SQL Server 7.0 database by distributing input/output operations across multiple physical disks. You know which tables and indexesare queried most frequently, and you want to place each of them on a separate disk. How canyou place each of the most frequently queried tables and indexes on its own separate disk?Answer: One each disk, create a filegroup consisting of a single file and place each table andindex in its own filegroup.You are planning to use SQL Server Profiler to debug and optimize queries and applicationsin SQL Server 7.0. You want to be able to use SQL Server query-processing tools analyze thedata captured by Profiler. Where should you save the event data that will be captured by the Profiler trace?

    A. In a text file

    B. In a Windows NT Application log

    C. In the trace definition file.

    D. In a SQL Server table

    Answer: D

    Notice: If you want to use SQL Server query processing tools to analyze the captured data, thenyou should save the event data to a table.You must perform multiple identical installations of SQL Server 7.0 in remote branches ofyour company that are not connected to the central office. The network administrators in thebranches have not been trained to install SQL Server 7.0. How can you facilitate theinstallations so that most of the work will be done automatically?Answer: Run SQL Server Setup interactively to install SQL Server on a computer in the centraloffice. During installation, assign the MSSQLServer and SQLServerAgent services to the localsystem user account Send the iss file to the branches.Your Company is using Sql Server 7.0 store corporate business data on a Windows NT Server computer. To assess disk space requirements and to optimize disk space usage you want to know how often new data is record in database, what tool will provide you with information about the frequency of write operations:

    Answer: Windows NT Performance Monitor

    You are the SQL Server 7.0 administrator for your company. You want to identify all errors in the SALES database, but repair only the allocation errors, Which two of the following statements should you issue to identify all errors and repair only all allocation errors?(Choose TWO Answers)

    Answer:

    DBCCCHECKDB(‘sal es?& DBCC CHECKALLOC ?`sales’REPAIR_ALLOW_DATA_LOSS ?/P>

    You provide technical support to companies that use SQL Server 7.0. A customer reportsthat there is a problem, and you are asked to investigate it. You want to capture a trace inSQL server Profiler. What are the minimum permissions that you must have at thecustomer’s S QL Server co mput er t o be ab l e t o creat e and capt ure a Profil er traceAnswer: You must have the EXEC permission for the Profiler extended stored procedures.You are running a web site, you want accounting who is accessing specific tables. Whichshould you use performance monitor to monitor?

    A. Connect event, execution plan event, service control event, SQL username, NT user name.

    B. Attention event, exec prepared sql event, sql username, NT user name

    C. Connect event, disconnect event, existingconnection event, NT user name

    D. Object: opened event, sql user name, NT user name.

    Answer: D

    The departmental server has Full Text search implemented on its SQL server database. Currently both the Full Text database and the database files reside on the same logical drive. You do not want the Full Text indexing to use more than 25% of the available drive space because you want to allow space for dynamic expansion of the data files. You want to be able to remotely monitor the amount of space in use by the catalogs. How should you remotely monitor the space usage with a minimum number of additional administrative steps?

    A. Use the windows NT Performance Monitor to connect to the Server and to monitor the size of the Microsoft Search catalog

    B. Create a scheduled job to regularly monitor the size of the Full Text indexes and send the result to your E-MAIL address

    C. Create a batch file to monitor the size of Full Text indexes and send the result to you viaNetwork Message. Use the Windows NT Scheduler Service to schedule the batch file to run

regularly

    D. Create a batch file to monitor the size of the Full Text indexes and send the result to you via Network Message. Create a scheduled job to run the batch file regularly.

    Answer: A

    You are a SQL Server 7.0 system administrator for you company. To provide users with Full Text search capabilities, you create a Full Text catalog and enable Full Text indexing for specific tables in a database. From your Windows NT Workstation computer, you want to remotely monitor the size of the Full Text catalog on Windows NT server computer that is running SQL Server. Which of the following tools is the most convenient to use for monitor the Full Text catalog?

    A. Performance Monitor

    B. Query Analyzer

    C. The SP_MONITOR system stored procedure

    D. SQL Server Profiler.

    Answer: A

    Notice: To obtain real-time information about the size of a specific full-text catalog, you can continuously monitor the appropriate instance of the Microsoft search Indexer Catalogs You load a lot data into your database, then you find that the space for log is almost full, how can you do to ensure the restore: (Choose all that apply)

    A. Make a full backup

    B. Make a differential backup

    C. Backup the transaction log with the default options

    D. Backup the transaction log with truncate only

    Answer: A, D

    The engine manufacturing application records data about all the engines that are manufactured at your plant, the database contains approximately 500 Million records and is approximately 50GB in size. The database increases by 1000 records per day. You want to accomplish the following goals:

    1. Minimize the time required to recover the database

    2. Provide the ability to recover the database to a specific time

    3. Minimize the number of transaction logs that need to be during recovery

    4. Minimize the time required to backup the database

    You take the following actions:1. Schedule a full database backup of the entire database to occur every Sunday at AM 1:00    2. Schedule transaction log backup to occur every day at P.M Which result or results do these action produce? ( Choose all that apply )

    A. The time required to recover the database is minimized

    B. The database can be recovered to a specific time.

    C. The number of transaction logs that need to be applied during recovery is minimized

    D. The time required to backup the database is minimized

    Answer: B, D

    You check the free space on a log file and run a BACKUP LOG WITH NO_LOG on a database that is a publisher for transactional replication. You check the free space after running this command and note that free space has not changed. What is the most likely reason that free space has not changed?

    A. The distributor database is full

    B. Log reader agent has stopped

    Answer: B

    You have 2 tables, T1 & T2, GI should be able to update T1, G2 should be only able to select from T1 and third group G3 able to select and update on T2. The question is how manyapplication roles do you need?

    Answer: 3

    Sales representatives use portable computers. They need to implement replication scenario so that the sales representatives can enter the orders. You want to minimize network traffic:

    A. Transactional

    B. Snapshot with Pull

    C. Snapshot With push

    D. Merge

    Answer: B

 

上下文章:

 

上一篇文章: MCSE模拟试题:NetworkingEssentials 下一篇文章: MCSE模拟试题:IE4.0考题

相关文章:

  • 用3ds max模拟香烟烟丝飘动的效果
  • EA公布《模拟人生3》海量游戏截图
  • 兽一周囧闻:魔兽考题,猎人=劣人
  • 教你如何用PS滤镜巧妙模拟做出下雪效果
  • Tomcat+SQLServer连接池配置

相关软件:

  • 计算机等级考试训练模拟软件(三级数据库技术) V1.01
  • 历年高考化学试题库 V6.4 贺岁版
  • 中、高考英语试题库 V6.4 贺岁版
  • 全国计算机等级考试二级VFP上机考试模拟 V1.0
  • 交通法规模拟考试系统 V2006.2
  • 模拟Vista透明窗体 V1.6 绿色版

 

快速导航

  • 网络学院
  • 精品汇聚
  • 字体下载
  • 教程下载
  • ASP源码
  • PHP源码
  • Net源码
  • JSP 源码

微软认证分类导航

  • MCSE模拟题
  • MCSE真题
  • MCSE指导
  • MCSE介绍
  • MCSE动态

本类经典文章推荐

  • 70-210试题(一)
  • MCSE习题——NT Server(4)
  • MCSE习题——NT Server(5)
  • MCSE习题——NT Server(6)
  • MCSE习题——NT Server(7)
  • MCSE习题——NT Server(8)
  • 微软认证模拟试题:IE4.0考题(3)
  • 中国IT认证实验室微软认证考试在线...
  • 70-210试题(三)
  • 微软认证模拟试题:IE4.0考题(1)

MCSE模拟题阅读排行

  • MCSE习题——NT Server(4)
  • 中国IT认证实验室微软认证考试在线...
  • 70-210试题(一)
  • MCSE习题——基础知识(1)
  • 微软认证考试:模拟题(workstatin...
  • 70-210试题(三)
  • 70-210试题(五)
  • 微软认证考试:基础知识篇(1)
  • 微软认证模拟试题:IE4.0考题(1)
  • MCSE模拟题(nt核心)

微软认证阅读总排行

  • MCSD简介
  • 微软考试成绩查询最新办法
  • 解决“不小心删除SAM文件”的方法
  • hacktool.Rootkit病毒的删除方法
  • 让WindowsXP也能快速锁定计算机(1)
  • 优化WinXP技巧4:一台电脑使用两台...
  • 尴尬!微软反盗版验证技术被自己攻...
  • 如何在WinXP中重新安装或修复IE6
  • 如何清除Windows系统托盘上的图标
  • 微软MSCE认证又出新招

广告位置

字母检索 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 回到顶部

关于我们 | 版权声明 | 免责条款 | 广告联系 | 软件发布 | 下载帮助 | 下载排行 | 网站地图 | 特别鸣谢 | 友情连接

copyright; 2005-2008 D9soft.com 第九软件网 版权所有