Autogrow bug – fixed with Denali
Recently I ran into a bug related to autogrow of the log file. Because this was the second time I...
2011-08-23
1,858 reads
Recently I ran into a bug related to autogrow of the log file. Because this was the second time I...
2011-08-23
1,858 reads
With SQL Server Denali there has been made some improvements to the OVER clause, which I wasn’t even aware of...
2011-08-16
1,443 reads
Ever since I was a web developer back in the days, server side paging has been an issues. Back then...
2011-08-09
1,724 reads
Are you tired of doing self joins, just to get the value of a column in the previus/subsequent row, or...
2011-08-02
1,705 reads
Recently I had to create a simple query to lookup a single row in a table containing ranges that do...
2011-07-26
618 reads
My colleagues and I often joke around with “If it takes less than a second, then it’s okay!”. The reason...
2011-07-19
1,454 reads
A few weeks back we wrote about a query to tell you which database is using up most CPU time....
2011-07-12
1,481 reads
All developers know, that it is very important to encapsulate code in classes and methods to be able to reuse...
2011-07-05
794 reads
We all know how easy it is to see how much CPU power is consumed by the SQL Server process,...
2011-06-28
1,652 reads
I have actually written about this subject earlier on my Danish blog (http://www.performanceduo.com/post/Index-Rebuild-progress.aspx), but last week when working on a...
2011-06-21
18,058 reads
By Steve Jones
I needed to test a striped backup, so I decided to ask the AI’s...
By gbargsley
In SQL Server environments where transactional replication runs alongside Always On Availability Groups (AGs),...
Disable the sa login in SQL Server (and sleep better)If you run SQL Server...
Comments posted to this topic are about the item Create an HTML Report on...
The SQLPS.exe file has gone AWOL on 2 of my 4 SQL servers, ie,...
Comments posted to this topic are about the item Be Wary of Data
You have a table [dbo].[orders] without a Clustered Index (Heap). The table does not have any other nonclustered indexes! You rund the following command in Read Committed Isolation Level:
SELECTo_orderdate, o_orderkey, o_custkey, o_storekey FROMdbo.orders WHEREo_orderkey = 3877;