zoukankan      html  css  js  c++  java
  • 444.Counters of SQL Server 2005

    1. Basic knowleadge about SQL Server Performance Counter
    Category Counter Bottlenecks
    Memory Memory: Pages/sec measures te number of pages per second that are paged out from RAM to Virtual memory on the hard disk. High
    Memory: Available Bytes measures the amount of free physical memory on a server.<5Mb
    SQL Server: Buffer Manager: Buffer Cache Hit Ratio indicates how often SQL Server accesses the buffer rather than the hard disk to get data. <90%
    Physical Disk : Disk Read/sec High
    Physical Disk : Disk Write/sec High
    Disk Physical Disk: % Disk Time Messure the pressure on a physical hard disk array. >55%
    Physical Disk: Avg. Disk Queue Length if it exceed 2 for each individual disk drive in an array. >10Min
    Physical Disk: % Free Space <15%, should alert the administrator
      Logical Disk: % Free Space <15%, should alert the administrator
    Processor Processor: % Processor Time >80% for continuous periods of 10Min
    Processor: Processor Queue Length >2 per CPU for continuous periods of 10Min
    Network Network Interface: Bytes Received/sec shows the rate at which bytes are received over each network adapter.
    Network Interface: Bytes Sent/sec shows the rate at which bytes are sent over each network adapter.
    Netwok Interface: Bytes/sec total level of network traffic both to and from a server.
    Netwok Interface: Output Queue Length shows the length of the output packet queue in packets. >2
    User Connections SQL Server: Genereal Statistics: User Connections shows the number of user connections, not the number of users currently connected to Server
    2. Practise

    There is one vitrul PC (Windows 2003 Entperise. T7500 2.2G, 256MB RAM), which hosts a SQL Server 2005.
    When the SQL Server is idle, whose performance is dicated as the following figure

    When i execute the following T-SQL, whose performance is shown here:

    Then, we look up anohter case, what can you infor from it?

  • 相关阅读:
    bzoj 1031: [JSOI2007]字符加密Cipher 後綴數組模板題
    hdu3949 XOR xor高斯消元
    The xor-longest Path
    Contest20140906 反思
    Contest20140906 ProblemC 菲波拉契数制 DP
    Contest20140906 ProblemA dp+线段树优化
    bzoj 1257: [CQOI2007]余数之和sum 数学 && 枚举
    tyvj P1716
    BZOJ 1012 [JSOI2008]最大数maxnumber【线段树】
    Bzoj1083 1083: [SCOI2005]繁忙的都市【MST】
  • 原文地址:https://www.cnblogs.com/yang_sy/p/1449069.html
Copyright © 2011-2022 走看看