Where’s My 2GB?
While I was testing some things the other day my desktop was running slow. I mean so slow that typing...
2009-05-11
804 reads
While I was testing some things the other day my desktop was running slow. I mean so slow that typing...
2009-05-11
804 reads
Last year I wrote about signing up for Clear, a registered traveler program. I've flown enough to make it useful...
2009-05-10
583 reads
One of the charming people who helped me register at Teched told me where we, who had registered, could get...
2009-05-10
1,706 reads
I spent a fascinating hour at the Teched Shop this afternoon. I was trying to get a feel for where...
2009-05-10
1,278 reads
I'm on the Prius mailing list since I bought a Prius and Toyota hopes that I'm
Happy with my Prius Willing...
2009-05-08
588 reads
At the end of August 2009 will organize the Software Freedom Kosova 2009, the big event for the Open Source...
2009-05-08
441 reads
Fiction review this week. I recently read Patriot Acts by Greg Rucka, the continuation of the story that started in...
2009-05-07
279 reads
I'm just finishing up SQL Server 2008 Query Performance Tuning Distilled by Grant Fritchey and Sajal Dam and overall I've...
2009-05-07
487 reads
While perusing some of the threads on SQLServerCentral.com one of the questions that hit me was regarding the use of...
2009-05-07
3,346 reads
Star Trek is coming back to theaters soon, and I’ve been watching Season 1 of Star Trek: TNG while running.
It...
2009-05-07
349 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