作者:豆豆技术…
来源:豆豆技术应用
热度:
2007-5-20 18:58:18
3、监视 sql server 统计数字
使用系统过程:sp_monitor
说明:sp_monitor 显示sql server 的历史统计数字,下表是某系统的统计数字:
last_runcurrent_runseconds
---------------------------------------------------------------
may 13 2000 1:27pmmay 13 2000 3:01pm5678
cpu_busyio_busyidle
---------------------------------------------------------------
16(6)-0%0(0)-0%5727(5672)-99%
packets_receivedpackets_sentpacket_errors
---------------------------------------------------------------
21(17)100(97)0(0)
total_readtotal_writetotal_errorsconnections
--------------------------------------------------------
785(366)311(113)0(0)3(2)
上表依次给出该系统本次运行统计的上一次时间、本次时间、间隔秒数、cpu占用、io占用、收发包情况、系统读入写出情况等信息
四、保证系统数据安全,周期更改用户口令;
为保证系统数据的安全,系统管理员必须依据系统的实际情况,执行一系列的安全保障措施。其中,周期性的更改用户口令是比较常用且十分有效的措施。
更改用户口令是通过调用系统过程sp_password 来实现的。sp_password 的语法为:
sp_password caller_password,new_password [,loginame]
其中caller_password 是登录口令(老口令),new_password是新口令,loginame是登录名称。
我来说两句:
推荐文章
相关文章