2017-03-16
91 reads
2017-03-16
91 reads
Mistakes will still be made with a DevOps process, but the benefits outweigh the mistakes.
2017-03-15
81 reads
2017-03-14
124 reads
2017-03-13
202 reads
Phil Factor on the rewards of learning the zen-like skill of writing, reading and understanding IT documentation.
2017-03-13
60 reads
Today we have a guest editorial from Andy Warren that talks about auditing your organization.
2017-03-10
103 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
344 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,457 reads
2017-03-07
87 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
88 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