美文网首页
sql语句执行效率监控

sql语句执行效率监控

作者: 落叶de故事 | 来源:发表于2018-03-07 16:04 被阅读0次

    监控代码:

    set statistics profile on 
    set statistics io on 
    set statistics time on 
    GO 
     /*SQL脚本开始*/
    SELECT * FROM [Table] 
     /*SQL脚本结束*/
    GO
    set statistics profile off 
    set statistics io off 
    set statistics time off
    GO
    

    执行效果:


    TIM截图20180307160201.png

    相关文章

      网友评论

          本文标题:sql语句执行效率监控

          本文链接:https://www.haomeiwen.com/subject/ninjfftx.html