监控SQL SERVER性能:快速版

SELECT 

        @@total_read AS 'Total Read'
        @@total_write AS 'Total Write'
        @@total_errors AS 'Total Error',
        @@io_busy AS 'IO Processing Time (ms)',
        @@cpu_busy AS 'CPU Processing Time (ms)',
        @@idle AS 'Idle Time (ms)'

如图:

监控SQL SERVER性能:快速版

Author:Petter Liu    http://wintersun.cnblogs.com

相关文章:

  • 2022-12-23
  • 2021-09-24
  • 2021-11-20
  • 2021-06-15
  • 2022-12-23
  • 2022-03-10
猜你喜欢
  • 2021-11-20
  • 2021-11-27
  • 2021-06-01
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-25
相关资源
相似解决方案