2020-07-21
96 reads
2020-07-21
96 reads
Today Steve looks at one possible future of offices, which might be something we own.
2020-07-20
184 reads
There are plenty of experts that look to teach you about query tuning and the internals of query execution in SQL Server.
2020-07-18
183 reads
Today Steve thinks about what to do when planning for your digital assets after you pass.
2020-07-17
399 reads
When we need to delegate work to less privileged users, Steve has an idea.
2020-07-16
201 reads
2020-07-15
242 reads
2020-07-14
132 reads
Can you run a system better than cloud vendors? You should know and be able to prove it.
2020-07-13
153 reads
I always look forward to new T-SQL features and optimizer enhancements with every new version of SQL Server. Starting in 2017, Microsoft came up with a set of features called Intelligent Query Processing (IQP). These features work to improve performance without changing any code. If you’d like to learn more about these features, take a […]
2020-07-11
828 reads
Today Steve looks at an article the migrates a relational model to CosmosDB.
2020-07-10
711 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