2014-04-16
661 reads
2014-04-16
661 reads
At my Filestream/Filetable talk yesterday at SQL Intersection, someone asked me about programmatically adding a file to a Filetable. Easy...
2014-04-23 (first published: 2014-04-16)
3,643 reads
Kevin Kline is speaking at MagicPASS tonight – on two topics! If you’re in the Orlando area I hope you’ll try...
2014-04-16
534 reads
Microsoft just announced a new mechanism for managing your Azure resources, Automation. You can check out the documentation on it...
2014-04-24 (first published: 2014-04-16)
1,786 reads
As of right now, my United account has no flights booked. My Hilton Honors account has no hotel rooms reserved....
2014-04-16
626 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
410 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
603 reads
We can create a database simply by typing in the command createdatabase DB1
We don’t have to provide any other...
2014-04-25 (first published: 2014-04-16)
2,374 reads
I wrote a guide about using Git and GitHub for "Windows people".
This is the guide I wish was available when...
2014-04-22 (first published: 2014-04-16)
1,687 reads
Q 1 What Is CLR?
CLR is a runtime environment. Code that we develop with language compiler that targets the runtime...
2014-04-16
1,565 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