DBA MD
I just had the opportunity to spend some time with my four year old son at the doctor’s office. It...
2010-02-25
606 reads
I just had the opportunity to spend some time with my four year old son at the doctor’s office. It...
2010-02-25
606 reads
In case you don’t subscribe to the SQL Server Central daily newsletter, check out the editorial I wrote entitled “Dude,...
2010-02-25
600 reads
About a week ago I wrote Part 1, and got some interesting feedback (which I appreciate). Today I want to...
2010-02-25
864 reads
I’m driving down tomorrow for the sixth annual South Florida Code Camp. This will be my third time attending and...
2010-02-25
524 reads
I needed to upgrade the underlying IO subsystem of one of my IO intensive SQL Servers. After some discussion with...
2010-02-25
2,148 reads
If you are near Cambridge, England, I will be speaking at the Cambridge SQL Server Users Group on Wednesday, March...
2010-02-25
1,542 reads
The upcoming SQLBits 6, to be held Friday, April 16, 2010, will be held at the Church House Conference Centre...
2010-02-25
1,616 reads
SQL Server Training is out there in all sorts of formats, price points and quality. It's time to look at...
2010-02-25
922 reads
“It’s easier to be smart than good.”
I heard that quote in a recent sermon at church and it is one...
2010-02-25
761 reads
Introduction
Recently a coworker was doing some research with SQL 2008 Backup Compression on a very large database. During the testing...
2010-02-25
419 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