2020-01-22 (first published: 2019-01-31)
414 reads
2020-01-22 (first published: 2019-01-31)
414 reads
Today, Grant Fritchey talks about the two paths to expertise for database professionals and why it’s hard to really know if someone is an expert.
2020-01-17
434 reads
Today Kendra discusses the advantages of using a command line interface for Git.
2020-01-16
447 reads
Grant discusses the need for password managers to help prevent security issues between different accounts.
2020-01-15
280 reads
Today Kendra talks about two of the online options used when working with indexes.
2020-01-14
367 reads
2020-01-13
274 reads
2020-01-11
301 reads
2020-01-10
320 reads
Cowboy coding can be a problem, and in a case Steve talks about, a temptation for someone to get more work.
2020-01-08
522 reads
Steve thinks one of the ways you can stand out with your resume or CV is by writing well and attracting the attention of hiring managers.
2020-01-07
180 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