2004-07-30
2,321 reads
2004-07-30
2,321 reads
2004-07-29
2,451 reads
2004-07-28
2,413 reads
2004-07-27
3,309 reads
2004-07-26
2,061 reads
The highly anticipated Beta 2 of SQL Server 2005 aka Yukon, was released today (Monday, July 26).
2004-07-26
7,686 reads
2004-07-23
2,454 reads
2004-07-22
2,298 reads
2004-07-21
1,980 reads
2004-07-20
2,135 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