zoukankan      html  css  js  c++  java
  • 在SQL Server中统计SQL语句的执行时间

       1:  SET STATISTICS io ON
       2:  SET STATISTICS time ON
       3:  go
       4:   
       5:  --这里写你的SQL语句
       6:   
       7:  go
       8:  SET STATISTICS profile OFF
       9:  SET STATISTICS io OFF
      10:  SET STATISTICS time OFF
  • 相关阅读:
    CSS
    网络通信
    模块与包
    python异常处理
    python基础考试一整理
    面向对象最后进阶
    面向对象-反射和__getattr__系列
    property、staticmethod和classmethod
    多态和封装
    scala构造器实战
  • 原文地址:https://www.cnblogs.com/chaosimple/p/2814084.html
Copyright © 2011-2022 走看看