Eliminating Hassles
It is easy for me to fall into the trap of the “who” versus the “what”. If we are not...
2017-11-30 (first published: 2017-11-20)
1,291 reads
It is easy for me to fall into the trap of the “who” versus the “what”. If we are not...
2017-11-30 (first published: 2017-11-20)
1,291 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got an error message to say “The host cannot be...
2017-11-30
8 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
647 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
211 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
224 reads
In my previous posts about writing your first Pester Test and looping through instances I described how you can start...
2017-11-30
684 reads
I read Satya Nadella’s Hit Refresh recently, and it was a very enjoyable book. He’s had an interesting journey and...
2017-11-30
674 reads
On 12/13 I’m presenting two, back to back, sessions on SQL Server on Linux online. So you can attend from...
2017-11-30
485 reads
On 12/13 I’m presenting two, back to back, sessions on SQL Server on Linux online. So you can attend from anywhere!
Let’s go through both!
First, on 12/13 at 1PM Central,...
2017-11-30
9 reads
By Steve Bolton
…………Since this series on using SQL Server to implement the whole gamut of information metrics is wide-ranging in...
2017-11-30
721 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