SQL Server Consulting–New for 2013
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
It is Monday today but its no ordinary Monday. Today is New Years Eve, its the end of December and...
2012-12-31
1,799 reads
I’m not working too hard today, so this is just a short post to wish all my readers a very...
2012-12-31
1,566 reads
This is a guest post by David Postlethwaite.
I’ve been wondering how to do this for years. At SQL Bits and...
2012-12-28
1,047 reads
If you blog and call yourself a blogger then you probably have a pretty full RSS reader. Mine has been...
2012-12-28
937 reads
Microsoft today announced the latest round of SQL Server Cumulative Updates
SQL Server 2012 CU 5 – You can get more information...
2012-12-28
826 reads
This is a very short post on Christmas Eve to wish all my readers a very Merry Christmas!
I’m going to...
2012-12-24
796 reads
As we approach a new year many of you will be looking at your SQL Server Training needs for 2013....
2012-12-19
767 reads
As we approach the end of 2012 – The release year for SQL Server 2012 many of you as we approach...
2012-12-17
954 reads
For those that read my blog regularly you will know that I over the last couple of years I have...
2012-12-13
1,030 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