ARMED - ARM resource dependency graph inside VSCode
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
42 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
42 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
39 reads
I think the title sums it up, I have published a new version of ARMED the arm helper extension for...
2017-12-08
19 reads
Tomorrow 12/09/2017 is SQL Saturday #694 in Providence, RI.
I will be presenting by SQL Server Health Check session first thing...
2017-12-08
360 reads
I have decided to write a series of blog posts about visual design concepts that can have a big impact...
2017-12-08 (first published: 2017-11-27)
2,409 reads
The slides and demo scripts from today’s GroupBy session are now available on our GitHub repository
https://github.com/SQLUndercover/UndercoverToolbox/tree/master/GroupBy
Many thanks again for watching,...
2017-12-08
349 reads
I got sent an interview by Mohammad Darab, a fellow SQL Server professional in Northern Virginia. I thought the questions...
2017-12-08
1,271 reads
Aunt Kathi. Grant Fritchey. Steve Jones. They’re part of five hours of training on SQL Server performance and DevOps with...
2017-12-08
477 reads
Redgate is once again hosting a live, virtual event for SQL in the City. We’re going to give you a...
2017-12-08
317 reads
SSMS 17.4 is out, and if you haven’t upgraded from SQL 204, 2012, 2008, etc., you should do so. You...
2017-12-08
1,156 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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