2019-01-28
581 reads
2019-01-28
581 reads
Disaster recovery is one of those situations that we plan for and hope we never experience. Are you prepared?
2019-01-25
52 reads
2019-01-25
648 reads
The RDBMS works great for many situations, but is it ever fast enough to meet all your needs?
2019-01-24
103 reads
There is a myth that DDL statements can't be rolled back. This article tests and debunks the myth.
2019-01-24
6,676 reads
2019-01-24
935 reads
Azure SQL Data Warehouse gets some improvements, and Steve has a few comments.
2019-01-23
72 reads
One of the things that I think about DevOps is that it’s really hard to focus on the hard things...
2019-01-23
258 reads
2019-01-23
625 reads
2019-01-22
84 reads
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
i have huge table with lot of data and is also wide. i took...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers