2020-12-04
391 reads
2020-12-04
391 reads
2020-09-25
457 reads
2020-09-14
176 reads
2020-08-28
683 reads
Steve continues his series on Git for DBAs by looking at code review and pull requests.
2022-04-11 (first published: 2020-08-06)
5,281 reads
2020-07-23
98 reads
This article will cover a basic set of code merges between different branches.
2022-04-11 (first published: 2020-07-23)
4,331 reads
In this article, learn how to work with your repo online at GitHub.
2022-04-11 (first published: 2020-07-14)
5,071 reads
Learn what a branch is in git and how you can create these, share them, and begin working with copies of your code.
2022-04-11 (first published: 2020-06-16)
7,798 reads
This is the second article in a series on the basics of using Git. The other articles in the series are: Basic Git for DBAs: Getting Started with Git Basic Git for DBAs: Sharing Files Through GitHub Basic Git for DBAs: the Basics of Branches Basic Git for DBAs: Making Changes in GitHub Basic Git […]
2022-04-11 (first published: 2020-06-09)
6,526 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