Special Events at the PASS Community Summit
If you’ve ever been to a PASS Community Summit, you know that each day is packed with a ton of...
2009-10-29
466 reads
If you’ve ever been to a PASS Community Summit, you know that each day is packed with a ton of...
2009-10-29
466 reads
Welcome back to our last class this term on security in SQL Server here at SQL University. According to the syllabus,...
2009-10-29
2,671 reads
It is pretty important to make sure you set the Max Server memory setting for SQL Server 2005/2008 to something...
2009-10-29
253,646 reads
and B-I-N-G-O was his game-o.
Maybe not that funny, but I think that SQL Bingo will be a fun time. If...
2009-10-29
824 reads
Steve Jones had a good editorial earlier this week entitled, What Do We Want from PASS?. It didn’t generate as...
2009-10-29
930 reads
If you are a book author, Amazon.com now allows authors to promote their books with a new author’s page. The...
2009-10-28
610 reads
I know, I should have put more in the title. Crazy Egg is a web page traffic analysis tool that...
2009-10-28
564 reads
In the first installment of this discussion, I talked about the challenges facing database professionals and others with respect to...
2009-10-28
1,858 reads
One of the things that I've asked DBAs, and I see asked often, is how much does your data change?...
2009-10-28
2,484 reads
2009-10-28
576 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