2019-02-15
581 reads
2019-02-15
581 reads
It’s a week to my webinar with Donovan Brown (bt, yg), leader of the League of Extraordinary Cloud DevOps Advocates,...
2019-02-14
228 reads
2019-02-14
71 reads
2019-02-14
775 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2019-02-13 (first published: 2019-01-24)
2,218 reads
Google was recently fined for GDPR violations. Steve wonders if their confusing documentation and tools are the problem.
2019-02-13
76 reads
2019-02-13
574 reads
Backblaze releases their new hard drive stats and there are some interesting items in the report.
2019-02-12
80 reads
2019-02-12
691 reads
A minor disaster for Steve reveals some cracks in his pre-DR planning.
2019-02-11
85 reads
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) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
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...
Comments posted to this topic are about the item Every Database Has Problems
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