From Sunil's blog to identify the top 10 queries generating most IO. SELECT TOP 10 (total_logical_reads/execution_count) AS avg_logical_reads, (total_logical_writes/execution_count) AS avg_logical_writes, (total_physical_reads/execution_count) AS avg_phys_reads, execution_count, statement_start_offset as…
Here's a TSQL script to get cumulative IO by database since last restart. WITH Agg_IO_Stats AS ( SELECT DB_NAME(database_id) AS database_name, CAST(SUM(num_of_bytes_read + num_of_bytes_written) / 1048576 / 1024.…
Here's a query I found that helps show database IO consumption. SELECT DB_NAME(DB_ID('DATABASENAME')) AS [Database Name] , mf.physical_name , io_stall_read_ms , num_of_reads , CAST(io_stall_read_ms / (1.0 + num_of_reads)…
What is it? I created a small tool to help facilitate setting the default user to automatically logon to a system. Requirements Administrator Privileges .NET 2.0 or greater…
I come across systems all the time that are loaded down with toolbar after toolbar after toolbar. Not only is this slowing the browsing experience down, but there…
Problems installing Adobe Reader or Acrobat? Could be because an unsuccessful uninstall attempt, and interrupted installation/uninstallation, etc. Who knows! I came across a tool that worked in cleaning…
Google has a Flu Trends project where you can see influenza trends across the world estimated by search queries. Here's an example from my state, Pennsylvania: Flu Information Get more…
I don't know how many times a day/week I do this to troubleshoot various issues with email systems. Good command in general to remember and use. It's really…
This is a quick howto on adding an email address to the whitelist or Safe Senders list in Hotmail at http://www.hotmail.com/. 1) On the right side of the…