Getting started with SQL 2019 big data cluster in Azure
Installing and connecting to SQL 2019 big data cluster
2020-06-26 (first published: 2019-01-17)
3,269 reads
Installing and connecting to SQL 2019 big data cluster
2020-06-26 (first published: 2019-01-17)
3,269 reads
It is not only the data within the database that requires protection but any report generated using SQL Server needs to be protected before being mailed
2010-10-28
12,307 reads
In this article, learn about the risks of changing server collation as well as how to go about making this change.
2010-09-20
15,425 reads
Learn about how you might solve some issues running SSIS packages using Excel on a Windows 2008 x64 Machine.
2010-07-28
7,355 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...
Tlp Cs Bca 08218200233 Equity Tower, Ground Floor, Unit D & Lantai 8, Unit...
Phone Cs 08218200203 Jl. Kyai Maja No.77, RT.12/RW.3, Gunung, Kec. Kby. Baru, Kota Jakarta...
Comments posted to this topic are about the item Server-Level Table sizes
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