January 2, 2010 at 12:18 pm
I want to know for given day How much Read request/ Write request on each drives in the SQL Server. The report should help to place dbf, log files distributed across the all drives evenly, What tool is available for this; or any idea how to get the report. Pls help thanks in advance for any helps.
January 2, 2010 at 1:41 pm
You can use PerfMon tool which comes with Windows to capture such information.
Here is a best practices guide from MS that might help. Storage Top 10 Best Practices.
Check this tool out as well from MS that can help provide disk IO capacity. SQLIO Disk Subsystem Benchmark Tool
January 3, 2010 at 2:35 pm
If you are looking to spread around your data and log files for multiple databases then you will want to drill down further and get read and write figures for the individual database files, in order to see which are the busiest. For this you can use sys.dm_io_virtual_file_stats or fn_virtualfilestats
---------------------------------------------------------------------
January 3, 2010 at 6:36 pm
thanks you guys, very useful information
January 5, 2010 at 12:46 pm
PAL comes with a handy set of perfmon templates and will interpret the data into a rather useful report
January 6, 2010 at 12:53 am
Mark, Good information. Thanks
January 6, 2010 at 7:08 am
thanks for PAL;
January 6, 2010 at 7:20 am
Nothing beats getting it straight from the horses mouth...A good blog posting on a DMV query for gathering I/O Stats from SQL Server 2005
http://glennberrysqlperformance.spaces.live.com/Blog/cns!45041418ECCAA960!2991.entry
Disclaimer: Make sure you understand what the query is doing before running it on production server.
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
January 7, 2010 at 8:42 pm
thanks melton, great help and queries
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply