zoukankan      html  css  js  c++  java
  • Wait--使用sys.dm_io_virtual_file_stats来查看IO延迟

    /*============================================================================
      File:     VirtualFileStats.sql
    
      Summary:  sys.dm_io_virtual_file_stats
    
      Date:     March 2011
    
    ------------------------------------------------------------------------------
      Written by Paul S. Randal, SQLskills.com
    
      (c) 2011, SQLskills.com. All rights reserved.
    
      For more scripts and sample code, check out 
        http://www.SQLskills.com
    
      You may alter this code for your own *non-commercial* purposes. You may
      republish altered code as long as you include this copyright and give due
      credit, but you must obtain prior permission before blogging this code.
      
      THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF 
      ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED 
      TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
      PARTICULAR PURPOSE.
    ============================================================================*/
    
    -- Use this script, based on code from Jimmy May
    -- This is what I use on client systems
    SELECT 
        --virtual file latency
        ReadLatency =
            CASE WHEN num_of_reads = 0
                THEN 0 ELSE (io_stall_read_ms / num_of_reads) END,
        WriteLatency =
            CASE WHEN num_of_writes = 0 
                THEN 0 ELSE (io_stall_write_ms / num_of_writes) END,
        Latency =
            CASE WHEN (num_of_reads = 0 AND num_of_writes = 0)
                THEN 0 ELSE (io_stall / (num_of_reads + num_of_writes)) END,
      --avg bytes per IOP
        AvgBPerRead =
            CASE WHEN num_of_reads = 0 
                THEN 0 ELSE (num_of_bytes_read / num_of_reads) END,
        AvgBPerWrite =
            CASE WHEN io_stall_write_ms = 0 
                THEN 0 ELSE (num_of_bytes_written / num_of_writes) END,
        AvgBPerTransfer =
            CASE WHEN (num_of_reads = 0 AND num_of_writes = 0)
                THEN 0 ELSE
                    ((num_of_bytes_read + num_of_bytes_written) / 
                    (num_of_reads + num_of_writes)) END,
                 
        LEFT (mf.physical_name, 2) AS Drive,
        DB_NAME (vfs.database_id) AS DB,
        vfs.*,
        mf.physical_name
    FROM sys.dm_io_virtual_file_stats (NULL,NULL) AS vfs
    JOIN sys.master_files AS mf
        ON vfs.database_id = mf.database_id
        AND vfs.file_id = mf.file_id
    --WHERE vfs.file_id = 2 -- log files
    -- ORDER BY Latency DESC
    -- ORDER BY ReadLatency DESC
    ORDER BY WriteLatency DESC
  • 相关阅读:
    [hdu4585]离线,并查集
    [hdu4498]离散化,simpson求积分
    nginx防止跳转到内网解决
    docker 导入导出
    java rsa 解密报:javax.crypto.BadPaddingException: Decryption error
    algid parse error, not a sequence错误
    AttributeError: module 'Crypto.PublicKey.RSA' has no attribute 'import_key'
    No module named 'winrandom'。
    centos同步时间
    bean 属性排列顺序
  • 原文地址:https://www.cnblogs.com/davidhou/p/5116898.html
Copyright © 2011-2022 走看看