Removing the time element from a datetime
Killing Time – or removing the time element from a datetime
Over the course of time, we all collect scripts and routines...
2018-06-07
2,089 reads
Killing Time – or removing the time element from a datetime
Over the course of time, we all collect scripts and routines...
2018-06-07
2,089 reads
Next week, Redgate Software, will be putting on SQL in the City Streamed. These events are a great way to...
2018-06-07
274 reads
I’m excited to announce that I’ve been selected to present at the PASS Summit! This will be my fourth year speaking at the Summit, and it’s always a privilege....
2018-06-07
14 reads
I’m excited to announce that I’ve been selected to present at the PASS Summit! This will be my fourth year speaking at the Summit, and it’s always a privilege....
2018-06-07
10 reads
I’m excited to announce that I’ve been selected to present at the PASS Summit! This will be my fourth year...
2018-06-07
389 reads
I’m excited to announce that I’ve been selected to present at the PASS Summit! This will be my fourth year speaking at the Summit, and it’s always a privilege....
2018-06-07
16 reads
I’m excited to announce that I’ve been selected to present at the PASS Summit! This will be my fourth year speaking at the Summit, and it’s always a privilege....
2018-06-07
14 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan - you get a weekly email packed with all the...
2018-06-06 (first published: 2018-05-28)
2,211 reads
I really enjoy my job. I became a full-time production DBA about 14 months ago and it has been an overwhelmingly positive move. I work for a good company...
2018-06-06
14 reads
This is my favourite SSMS trick I’ve discovered recently, probably some time towards the end of last year.
Basically, when you...
2018-06-06
1,419 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
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