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?

  • 相关阅读:
    HDU 5313 bitset优化背包
    bzoj 2595 斯坦纳树
    COJ 1287 求匹配串在模式串中出现的次数
    HDU 5381 The sum of gcd
    POJ 1739
    HDU 3377 插头dp
    HDU 1693 二进制表示的简单插头dp
    HDU 5353
    URAL 1519 基础插头DP
    UVA 10294 等价类计数
  • 原文地址:https://www.cnblogs.com/yang_sy/p/1449069.html
Copyright © 2011-2022 走看看