It’s the monthly blog challenge known as T-SQL Tuesday! Edition 49 is being hosted by Robert Davis, and he wants us to wait around. No, that’s not right – he wants us to write about waiting. Yeah, that’s it. 
You’ve read a lot about wait statistics. You know your servers have wait statistics on them. You know your applications and queries are waiting on something. Before you panic, before you go changing maxdop or rewriting queries, remember one thing: every system is going to have waits recorded. It’s the nature of computing. The chance that every resource a query needs is available at the exact millisecond it needs it is nonexistent. It takes time to read data from storage to memory. It takes time to write data to storage. It takes time to send results across the network to the client.
As always, the most important thing you can do is have a baseline of wait statistics on your servers. What is normal for each server? One server may normally have high PAGEIOLATCH waits because the software does large reads; another may have high WRITELOG waits because the software uses cursors.
(Want to know more about when and how to collect wait statistics? Erin Stellato (blog | twitter) has a great article on SQLServerCentral.com.)
If the waits are high and performance is bad, you can work to solve the problem immediately. If the performance on the server is acceptable, with a baseline, monitor it so you can tell when there is something abnormal going on, and then can work to fix the problem.
You can try to spend all of your time eliminating waits, or eliminating what you think are “bad” waits, but you may be wasting your time. Focus on what is truly important, what is really a problem.

Jes Borland is a Premier Field Engineer - SQL Server for Microsoft, where she is a trusted technical adviser, deep technical support, and teacher for her customers. Her experience as a DBA, consultant, and 5-time Data Platform MVP allow her to help the business and the IT teams reach their goals. She has worked with SQL Server as a developer, report writer, DBA, and consultant. Her favorite topics are administration, automation, and performance. She frequently presents at user groups, SQL Saturdays, and other community events. She is also an avid runner and chef.