2017-09-27
211 reads
2017-09-27
211 reads
A bug in SQL Server needs patching right away if you use TDE. Some data security issues concern Steve as well.
2017-09-25
49 reads
Does it make sense for a DBA to be a job that moves from project to project? Steve Jones has some thoughts.
2017-09-25
100 reads
Lots of work is going into making software more helpful. This week Steve Jones wonders what you want from these assistants.
2017-09-22
68 reads
Today Steve Jones talks about the tipping point of cloud computing.
2017-09-21
61 reads
While thinking about interviews, Steve Jones shares a story of a job situation he encountered.
2017-09-20
134 reads
2017-09-19
71 reads
What's your favorite productivity tool when writing SQL? Phil Factor has has flirted with most of them, from templates and snippets to a programmer's clipboard and back again.
2017-09-18
121 reads
2017-09-18
72 reads
Microsoft changed some things in SQL Server 2017 in response to community requests. Steve Jones is asking for more.
2017-09-15
57 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers