Comulative Update package 3 for SQL Server 2008
Just to announced that we have now available the comulative update package 3 for SQL Server 2008!
This Update package...
2009-01-27
1,472 reads
Just to announced that we have now available the comulative update package 3 for SQL Server 2008!
This Update package...
2009-01-27
1,472 reads
I've mentioned before that Jeff Duntemann is one of my favorite bloggers, and I thought I'd show why I enjoy...
2009-01-26
1,618 reads
For those who were in my session on SSIS Scripting at SQL Saturday Tampa last weekend, I have posted the...
2009-01-26
1,365 reads
I had to go to the UK recently and took my Kindle along. I put some thought into my Kindle...
2009-01-26
1,555 reads
SQLSaturday #10 was held January 24, 2008 in Tampa at the Kforce Building. Attendance was about 175, down slightly from...
2009-01-25
1,313 reads
I’m sitting in the Tampa airport waiting for a flight back home from SQL Saturday 10 in Tampa. There was...
2009-01-25
1,681 reads
Anyone attending TechEd 2009 can submit a Birds of a Feather (BOF) session proposal. These sessions are open discussion topics...
2009-01-23
1,444 reads
The book is actually Big Brown: The Untold Story of UPS and it was written by a retired UPSer that...
2009-01-23
992 reads
I have been admonished in the past for the use of this code which makes as many
substitutions as you like...
2009-01-23
1,173 reads
Another story from a previous job. I joined the company in August, in October they started prepping for Halloween - it...
2009-01-22
947 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers