CUBE was introduced in SQL Server 2005. When you use the CUBE operator it generates a result set of every possible combination from your set of columns; much like a CUBE would be generated if you were using analysis services. the CUBE operator isn’t something I’ve had to use much so I’ll show you an example. […]
October 18, 2012
Recently, I needed to find out the schema of a resultset returned by a Stored Procedure so I could pass some failing SQL Unit Tests. I needed to know the columns, the column order and exact datatypes. Without access to a client to run the procedure I needed a way to do this with just […]
August 22, 2012
I’ve recently put together an article on using SQL Test/tSQLt, which you can find here. However, I wanted to briefly talk about the alternatives as I see them. Before any commercial testing tools were around we could just use a combination of manual scripts that called procedures and used temporary tables to hold data. It […]
August 22, 2012
Any software/web developer worth hiring would tell you that Test Driven Development is important. Although it takes time to do properly, It can increase productivity as features tend to be developed with a clearer understanding of the problem and make changing business requirements much easier to implement. Importantly, your code quality will improve and there […]
August 15, 2012
Reblogged from SQL Server Journey with SQL Authority: Just a day ago, I was reading the blog post of Michale J Swart. If you are a regular reader of this blog, I am sure you will be familiar with him. He is a very interesting blogger for sure. He recently wrote an article about Ten […]
April 20, 2011
Let’s say you have a table that is ordered by a column but also contains a sequence number used for overiding the order sequence. This table may look something like this Now, this initially is populated in sequence like so: You can see I deliberately left a gap for item ‘D’. If I was to […]
June 24, 2010
SQL Server 2008 Spatial data; Applying a buffer or radius on a geometry using metres.
November 27, 2009
BCP cannot be used to transfer spatial data from 32bit to 64bit instance.
February 4, 2009
Everyone loves a picture , right? Well, this is the updated map of views for SQL 2008. Enjoy. http://www.microsoft.com/downloads/details.aspx?FamilyID=531c53e7-8a2a-4375-8f2f-5d799aa67b5c&displaylang=en
September 16, 2008
A possible fix to slow performance in SQL 2008 integrated full text search.
December 28, 2012
0