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?

  • 相关阅读:
    Java中的权限修饰符
    return,break,continue三者的区别
    JS代码放在不同位置的区别
    创建画笔工具
    关于SPH的核函数求导过程
    c++多级指针与“多维”数组 摘自别人博客
    RAP开发入门-搭建RAP开发环境(一)
    06 media媒体查询
    resolution 像素密度
    手动配置viewport-04
  • 原文地址:https://www.cnblogs.com/yang_sy/p/1449069.html
Copyright © 2011-2022 走看看