Solving Real Problems
Today we have a guest editorial where Grant talks about being effective and practical in your world.
2020-09-17
171 reads
Today we have a guest editorial where Grant talks about being effective and practical in your world.
2020-09-17
171 reads
Today Steve gives a reason why your organization might consider improving its data governance.
2020-09-16
82 reads
2020-09-15
201 reads
2020-09-14
176 reads
This month's T-SQL Tuesday had lots of posts that look at automation from the DBA perspective, rather than the software developer.
2020-09-12
352 reads
Today Steve wonders if companies ought to support remote work better with other benefits.
2020-09-11
208 reads
2020-09-10
118 reads
Data sizes are always growing. Stats on world data are astounding, as are the stats many of us experience in our lives. Plenty of us have moved from MB management to GBs, and I see plenty of people dealing with TB storage at home. Most of that data is likely from images and video, but […]
2020-09-09
160 reads
Today Steve talks about limiting security issues for administrators.
2020-09-08
190 reads
2020-09-07
73 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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