What’s Going On Here? I’m currently reading up on Performance Counters in .NET, and have been taking notes on the topic, so I can refer back later. These are a series of links and facts that I found helped me understand the topic. Most of the information was available on … Continue reading
Tag Archives: Performance
Performance realted posts
Fast Row Counting in SQL Server
I love it when I discover something like this… I’m querying a table in SQL Server that has over 200 million rows. I’m just wanting the row count. So, naturally, I tried the following: select count(*) from TABLE_NAME The query took one minute when it was run initially. And select … Continue reading