Learning Sharepoint, SSIS and SSAS
Steve Jones outlines some ways that you might look to get additional training that can help move your career along.
2010-11-15
3,710 reads
Steve Jones outlines some ways that you might look to get additional training that can help move your career along.
2010-11-15
3,710 reads
We have to provide security for our data, and to some extent that means verifying who has access. SQL Server has limited means for doing this other than relying on the OS, but Steve Jones has some ideas on how to make this more secure.
2010-11-15
140 reads
This past week saw the next version of SQL Server, code named Denali, released as a public CTP. Steve Jones comments on the new version.
2010-11-15
331 reads
This is a great sign. I see if every time I go to Brother’s BBQ in Denver and it never...
2010-11-12
771 reads
This Friday Steve Jones talks about database design and specifically asks how you prefer to design triggers.
2010-11-12
901 reads
You can get a look into how SQLServerCentral handles the load of it's database servers with a new tool, and release of reports.
2010-11-11
356 reads
The SQL Rally pre-conference sessions were announced today, and congratulations to the winners. They are:
Business Intelligence Workshop - Patrick LeBlanc, Devin...
2010-11-11
862 reads
Could we ever have computers automating our cars and handling the driving for us? Steve Jones doesn't think so, despite some ongoing projects.
2010-11-10
123 reads
I haven’t ever worried about this, but I had the need recently to check. I was looking a SQL Sentry’s...
2010-11-10
1,868 reads
I was in Best Buy, actually returning a couple iPads the other day. I had gotten a few for a...
2010-11-09
1,519 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