我们对数据库进行优化后,比如索引加入了以后,到底有没有加快查询效率,起到正面作用呢?
通常,我们可以通过“MSSQLSERVER”里的事件探测器进行性能实时监控,如果需要对更具体的SQL语句进行更精确的分析,我们可以在查询分析器中通过以下代码来实现:
set @d=getdate()
--select id from t_Page where siteid=1 and Page_CHK=CHECKSUM('http://www.wapwat.com/reports/?sort=8')
select id from t_Client where siteid=1 and OS='Symbian' and Browser='NGBrowser' --120ms
--select id from t_RefPage where siteid=1 and RefPage='http://www.wapwat.com/reports/' --0ms
--select id from t_Keyword where siteid=1 and keyword='铃声' --2ms
--select id from t_Link where siteid=1 and Link='CDMA.X1' --0ms--select id from t_Region where siteid=1 and Region='另奇趣' --0~16ms
--select * from t_Client where siteid=3121 and chksum=1578080894
select [语句执行花费时间(毫秒)]=datediff(ms,@d,getdate())
以上加粗的语句就是关键语句,其它注释掉的语句就是需要监测的SQL语句,然后运行,就可以精确得出SQL语句操作需要的时间(毫秒).
用这个办法在索引建立前后分别测试,就可以看出索引是不是起到了明显的作用。