As shown in the diagram, in-memory statistics are transferre

题目
单选题
As shown in the diagram, in-memory statistics are transferred to the disk at regular intervals. Which background process performs this activity?()
A

CKPT

B

SMON

C

MMON

D

DBWR

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

As shown in the diagram, in-memory statistics are transferred to the disk at regular intervals. Which background process performs this activity?()

A. CKPT

B. SMON

C. MMON

D. DBWR


参考答案:C

第2题:

请说明逻辑数据流图(LogicalData Flow Diagram)和物理数据流图(PhysicalData Flow Diagram)之间的主要差别。


正确答案:逻辑数据流图说明应该具有哪些加工而不关心这些加工是如何实现的:物理数据流图则要说明加工是如何实现的。
逻辑数据流图说明应该具有哪些加工,而不关心这些加工是如何实现的:物理数据流图则要说明加工是如何实现的。 解析:本题考查分层数据流图及相关的概念。
问题1是识别外部实体。根据题中说明,系统使用传感器监测各种意外情况,使用录像机和电视机输出TV信号,房主可通过控制面板配置系统、设置密码、启动和关闭系统,并设置传感器事件发生时应自动拨出的电话号码;当系统监测到传感器事件时,就激活警报,播出预置的电话号码。可见,系统的外部实体应有:传感器、报警器、控制面板、显示器(录像机、电视机)、电话线,从传感器读取传感器状态,向报警器发送告警类型,对照数据流图1-9(顶层数据流图)易得,外部实体A是传感器,外部实体B是报警器。
问题2是判断与数据存储“配置信息”相交互的加工,根据题述,配置信息包含如下数据:传感器①和类型、密码、预拨电话号码。数据流图1-10加工4的细化图中可看出加工4监控传感器用到了配置信息文件,当然也可从加工4的输出数据流“电话拨号”看出,加工4显然用到配置信息中的电话号码。加工3是进行密码处理的,显然需要用到配置信息中的密码。加工5是显示信息和状态,包括从加工2来的信息、从加工3来的检验ID信息及传感器数据,只需简单显示即可,不需要用到配置信息文件。故配置信息会影响数据流图1-10中的加工3“密码处理”、加工4“监控传感器”。
问题3是补充数据流图。数据流图1-11是数据流图1-10中加工4的细化图,根据子图与父图平衡原则,对照其输入输出数据流可得,缺少输入数据流“传感器状态”,缺少输出数据流“传感器数据”和“电话拨号”。输入数据流“传感器状态”的终点应为加工4.4读传感器,输出数据流“传感器数据”的起点应为加工4.1显示格式,输出数据流“电话拨号”的起点应为加工4.5拨号。
问题4是数据流图的一些相关概念。物理数据流图关注的是系统中的物理实体,以及一些具体的文档、报告和其他输入/输出硬拷贝。物理数据流用做系统构造和实现的技术性蓝图。逻辑数据流图强调参与者所做的事情,可以帮助设计者决定需要哪些系统资源,为了运行系统用户必须执行的活动,以及在系统安装之后如何保护和控制这些系统。逻辑数据流图说明应该具有哪些加工,而不关心这些加工是如何实现的;物理数据流图则要说明加工是如何实现的。

第3题:

● 在UML的动态建模机制中, (34) 描述了对象之间动态的交互关系,还描述了交互的对象之间的静态链接关系,即同时反映系统的动态和静态特征。

(34)

A. 状态图(State Diagram)

B. 序列图(Sequence Diagram)

C. 协作图(Collaboration Diagram)

D. 活动图(Activity Diagram)


正确答案:C




 

第4题:

Which routing protocols can be used within the enterprise network shown in the diagram?()

A.RIP v1

B.RIP v2

C.IGRP

D.OSPF

E.BGP

F.EIGRP


参考答案:B, D, F

第5题:

You are the administrator of SQL server 2000 computer. The server contains a database named MedicalRecords. Users access medical records by using the PatientID field. This field is the clustered primary key for the Patients table. When users try to access medical records, the database responds slowly. You examine the database options as shown in the exhibit.

You want to accelerate query response time and minimize administrative overhead. How should you reconfigure the database?

A.Create a SQL Server Agent job to execute the UPDATE STATISTICS statement, and schedule the job to run weekly.

B.Select the Auto Update Statistics check box.

C.Run the database maintenance plan wizard, and accept the default settings.

D.Rebuild the primary key as a nonclustered primary key.

E.Clear the Auto Create Statistics check box.


正确答案:B
解析:Explanation:TheAutoUpdateStatisticsoptionisselectedbydefaultbutintheExhibitithasbeendisabled.Apparentlythestatisticsareout-of-dateandthequeriesarerunningslowly.TheAutoUpdateStatisticsoptionshouldbeenabledtoincreaseperformanceandminimizeadministrativeoverhead.Note:SQLServerkeepsstatisticsaboutthedistributionofthekeyvaluesineachindexandusesthesestatisticstodeterminewhichindexwouldbethebestindextouseforaparticularqueryprocess.Asthedatainacolumnchanges,indexandcolumnstatisticscanbecomeout-of-date.Thiscanhinderthequeryoptimizer’sabilitytomakeoptimaldecisionsonhowtoprocessaquery.Asaresultqueryperformancewilldeteriorate.Whenstatisticsbecomeout-of-datetheycanbeupdatedautomaticallyiftheAutoUpdateStatisticscheckboxonthetablepropertydialogboxischecked.IncorrectAnswers:A:Itwouldrequiresomeadministrativeefforttosetupjobthatupdatethestatistics.JustselectingtheAutoUpdateStatisticscheckisabettersolution.C:TheDatabaseMaintenancePlanWizardcannotbeusedtorecreatethestatistics,whicharethemainproblematthemoment.Note:TheDatabaseMaintenancePlanWizardcanbeusedtosetupthecoremaintenancetasksnecessarytoensurethatadatabaseperformswell,isregularlybackedup,andischeckedforinconsistencies.TheDatabaseMaintenancePlanWizardcreatesaSQLServer2000jobthatperformsthesemaintenancetasksautomaticallyatscheduledintervalsandcanbeusedtoreorganizethedataonthedataandindexpagesbyrebuildingindexeswithanewfillfactor;compressdatafilesbyremovingemptydatabasepages;updateindexstatisticstoensurethequeryoptimizerhasup-todateinformationaboutthedistributionofdatavaluesinthetables;perform.internalconsistencychecksofthedataanddatapageswithinthedatabasetoensurethatasystemorsoftwareproblemhasnotdamageddata;backupthedatabaseandtransactionlogfiles;andtosetuplogshipping.D:Lookingattheexhibitweseethatthisisastatisticsproblem,notaindexproblem.Note:Anonclusteredindexissimilartoanindexinatextbook.Withthistypeofindex,thedataisstoredinoneplaceandtheindexinanother.Theseindexes,however,pointtothestoragelocationofthedata.Nonclusteredindexesshouldbeusedoncolumnsthatcontainalargenumberofdistinctvalues;forqueriesthatdonotreturnlargeresultsets;andforcolumnsthatarefrequentlyinvolvedinsearchconditionsofaquerythatreturnexactmatches.Aclusteredindex,ontheotherhand,determinesthephysicalorderofdatainatable.ThePRIMARYKEYindexautomaticallycreatesaclusteredindexasitisusedtoidentifyarowunlessanonclusteredindexisspecified.E:WhensettheAutoCreateStatisticscheckboxischecked,statisticsareautomaticallycreatedoncolumnsthatareusedinapredicate.AddingstatisticsimprovesqueryperformancebecausetheSQLServerqueryoptimizercanbetterdeterminehowtoevaluateaquery.Ifthestatisticsarenotused,SQLServerautomaticallydeletesthem.Whenthischeckboxiscleared,statisticsarenotautomaticallycreated.

第6题:

You executed the following commands:Which statement is correct regarding the above statistics collection on the SH.CUSTOMERS table in the above session?()

A. The statistics are stored in the pending statistics table in the data dictionary.

B. The statistics are treated as the current statistics by the optimizer for all sessions.

C. The statistics are treated as the current statistics by the optimizer for the current sessions only.

D. The statistics are temporary and used by the optimizer for all sessions until this session terminates.


参考答案:A

第7题:

在使用UML建模时,若需要描述跨多个用例的单个对象的行为,使用______是最为合适的。

A.协作图(collaboration Diagram)

B.序列图(Sequence Diagram)

C.活动图(Activity Diagram)

D.状态图(Statechart Diagram)


正确答案:D
解析:UML由五类九种图组成,需要充分理解每类图的使用场合、阶段,并要重点掌握依赖、泛化、关联三个关系在其中的沟通作用。第一类是用例图,从用户角度描述系统功能,并指出各功能的操作者。第二类是静态图,包括类图、对象图。其中类图描述系统中类的静态结构。对象图是类图的实例,几乎使用与类图完全相同的标识。它们的不同点在于对象图显示类的多个对象实例,而不是实际的类。第三类是行为图,包括状态图和活动图,描述系统的动态模型和组成对象间的交互关系。其中状态图描述类的对象所有可能的状态以及事件发生时状态的转移条件。而活动图描述满足用例要求所要进行的活动以及活动间的约束关系,有利于识别并行活动。第四类是交互图,包括顺序图和合作图,描述对象间的交互关系。其中顺序图显示对象之间的动态合作关系,它强调对象之间消息发送的顺序,同时显示对象之间的交互;合作图描述对象间的协作关系,合作图跟顺序图相似,显示对象间的动态合作关系。第五类是实现图,包括组件图和实施图。其中组件图描述代码部件的物理结构及各部件之间的依赖关系。实施图定义系统中软硬件的物理体系结构。它以实际的计算机和设备(用节点表示)以及它们之间的连接关系,也可显示连接的类型及部件之间的依赖性。由于单个对象在多个用例交付,状态不断在变化,故答案是D。

第8题:

在使用UML建模时,若需要描述跨越多个用例的单个对象的行为,使用______是最为合适的。

A.协作图(Collaboration diagram)

B.序列图(Sequence Diagram)

C.活动图(Activity Diagram)

D.状态图(Statechart Diagram)


正确答案:D
解析:状态图(Statechart Diagram)展现了一个状态机,它由状态、转换、事件和活动组成。状态图关注系统的动态视图,它对接口、类和协作的行为建模尤为重要,它强调对象行为的事件顺序。
  活动图(Activity Diagram)是一种特殊的状态图,它展现了在系统内从一个活动到另一个活动的流程。活动图专注于系统的动态视图。它对于系统的功能建模特别重要,并强调对象间的控制流程。活动图一般包括:活动状态和动作状态、转换和对象。当对一个系统的动态方面进行建模时,通常有两种使用活动图的方式:对工作流建模,对操作建模。
  交互图,顺序图(或称序列图)和协作图均被称为交互图,它们用于对系统的动态方面进行建模。一张交互图显示的是一个交互,有一组对象和它们之间的关系组成,包含它们之间可能传递的消息。顺序图是强调消息时间序列的交互图。协作图则是强调接收和发送消息的对象的结构组织的交互图。

第9题:

( )is used to model aggregates of information and the relationships these aggregates have to other.

A.Data flow diagram B.Entity relationship diagram C.Sequence diagram D.Structure diagram


正确答案:B

第10题:

The network shown in the diagram is experiencing connectivity problems. Which of the following will correct the problems (Choose two.)()。

A.Configure the gateway on Host A as 10.1.1.1

B.Configure the gateway on Host B as 10.1.2.254

C.Configure the IP address of Host A as 10.1.2.2

D.Configure the IP address of Host B as 10.1.2.2

E.Configure the masks on both hosts to be 255.255.255.224

F.Configure the masks on both hosts to be 255.255.255.240


参考答案:B, D

更多相关问题