You have a Web server that runs Windows Server 2003 Service Pack 2 (SP2).You attempt to start the World Wide Publishing Service and receive the following error message.You need to identify which services must be started before you can start the World Wide Web Publishing Service. What should you do?()
A. From Event Viewer, view the application log.
B. From Windows Explorer, open the %systemroot%\system32\drivers\etc\services file.
C. From the Services snap-in, view the properties of the World Wide Web Publishing Service.
D. From the command prompt, run Net config server /srvcomment:”World Wide Web Publishing Service”.
查看答案
财政授权支付业务经办行必须严格按照财政部和中国人民银行的有关要求办理预算单位零余额账户的开立、变更和撤销。()
A. 正确
B. 错误
你是SQL SERVER 2005服务器中DB1数据库的管理员。你收到一个警告说,DB1的日志文件所在驱动器接近最大容量了。已知,虽然事务日志文件每5分钟进行一次备份,但磁盘空间占用还是在有规则的增长。因此,你认为可能是一个未提交的事务引起的;为了去查明原因,你需要去确定在DB1数据库中,最早开始的活动事务的开始时间及服务器进程ID,你应该如何做?()
A. 连接到DB1数据库,执行DBCC OPENTRAN命令,查看SPID和Start time行
B. 连接到master数据库,执行DBCC OPENTRA查看SPID和Start time行
C. 在SQL Server Management Studio,打开活动监视器,选择进程信息页。然后用数据库=DB1和打开的事务=yes为条件进行筛选,查看结果中的进程ID和上一批列
D. 打开查询窗口,连接到master数据库,执行如下SQL语句SELECT TOP 1 spid,last_batch FROM sys.sysprocesses WHERE dbid = db_id(’DB1’) AND open_tran > 0 ORDER BY last_batch