Business Intelligence Roles and Team Composition
On Business Intelligence projects of all sizes, the composition of the team is a crucial element for success. What is...
2014-06-17
472 reads
On Business Intelligence projects of all sizes, the composition of the team is a crucial element for success. What is...
2014-06-17
472 reads
The Kerberos Configuration Manager is a really handy tool that can make configuring Kerberos a much easier task, but it’s...
2014-06-17
3,108 reads
I’m on vacation this week, but enjoying some quiet time during the day to think a little, going back through...
2014-06-17
757 reads
I’ve been exploring how natively compiled procedures are portrayed within execution plans. There have been two previous posts on the...
2014-06-17
1,361 reads
I try to find good stories for editorials at SQLServerCentral and the one this week about Kitchen Duty seems to...
2014-06-17
587 reads
ITPROceed 2014 is now a thing of the past, but is has been an awesome – and free! – event. A very...
2014-06-17
438 reads
I'm thrilled to be joining many of my colleagues at Baton Rouge SharePoint Saturday this weekend at the Louisiana Technology...
2014-06-16
560 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan – you get a weekly email packed with all the...
2014-06-18 (first published: 2014-06-16)
2,990 reads
Notes from the trip:
Four hour drive between traffic and rain, about an hour longer than I would have liked. The...
2014-06-16
450 reads
I Gotta See the Code is a security question about viewing the code to a stored procedure. Two points if...
2014-06-16
570 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