2019-01-15
618 reads
2019-01-15
618 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-01-14
797 reads
2019-01-14
463 reads
Last year I set up a PiHole server on my RaspberryPi to help block some ads and malicious stuff (tracking,...
2019-01-11 (first published: 2019-01-03)
2,394 reads
Security is important, and Steve wonders if any of us have a list of things we do that improve security.
2019-01-11
82 reads
2019-01-11
1,022 reads
2019-01-10
108 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2019-01-10
280 reads
2019-01-10
925 reads
Failure is one of the ways we get better as software developers. Does that apply to DBAs?
2019-01-09
57 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
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...
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