Friend of Redgate 2020
Last week I was excited to receive an email from Redgate notifying me that I have been renewed for another year as a Friend of Redgate. Our shop has...
2020-02-18
19 reads
Last week I was excited to receive an email from Redgate notifying me that I have been renewed for another year as a Friend of Redgate. Our shop has...
2020-02-18
19 reads
Hello, it’s amazing to me how fast the past couple of years have gone by as I’ve served on the PASS Board. It has been a journey that has...
2019-11-02
18 reads
This month Alex Yates (B|T) is hosting T-SQL Tuesday which is a monthly blog party started by Adam Machanic (B|T) and co-ordinated by Steve Jones (B|T) The challenge that...
2019-10-08
80 reads
The crew at Redgate has deemed me worthy enough to be in their Friend of Redgate program for another year....
2019-02-12
103 reads
SQL Saturday Louisville is less than a week away!! A lot of hard work has gone into putting on this...
2018-07-16
172 reads
What needs to change? The challenge to explore is are there things in your current day to day that needs...
2018-04-26
511 reads
I’ve been wanting to share a little bit about Matt’s story for a while now and this past week I...
2018-03-29
888 reads
I recently went to our local pharmacy to pick up some prescriptions. There was one for my boy and one...
2017-12-19
328 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 intrigued by this month’s T-SQL Tuesday topic presented by Ewald Cress (b|t) “Folks Who Have Made a Difference”....
2017-11-14
333 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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