Fast
I am actually stunned. I knew that more bandwidth makes a difference, but having way more bandwidth is truly amazing.
My...
2008-04-14
749 reads
I am actually stunned. I knew that more bandwidth makes a difference, but having way more bandwidth is truly amazing.
My...
2008-04-14
749 reads
I arrived Sunday in Seattle from St. Louis for the MVP Global Summit. The shuttle from the airport was filled...
2008-04-14
418 reads
Just received word that Microsoft has posted 3 new courseware titles under the "What's New in SQL Server 2008" umbrella. ...
2008-04-14
1,405 reads
Actually it wasn't really an official day. I came to Seattle a day early to see the Mariner's play and...
2008-04-14
673 reads
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
511 reads
Mentoring is something I think a lot of us wish for and that few of us find. Few businesses encourage...
2008-04-13
518 reads
Saw this in the MCP Flash today, if you register to be notified when the exams are live you get...
2008-04-11
319 reads
If you're looking for the Charlotte SQL Server User Group web page, the link on the PASS HQ site is...
2008-04-09
591 reads
If you haven't visited yet, MS Connect replaces the old sqlwish email alias and provides - in theory! - a better way...
2008-04-09
441 reads
Ok, I'm a bit of an ID10T at times.
I've talked about this for months, especially trying to push SP3 for...
2008-04-09
792 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers