HealthySQL 2.0 for SQLSaturday#268
Over the last year, I was presenting and touring the SQL Saturday circuit with my HealthySQL 2.0 presentation. HealthySQL is...
2014-02-24
1,189 reads
Over the last year, I was presenting and touring the SQL Saturday circuit with my HealthySQL 2.0 presentation. HealthySQL is...
2014-02-24
1,189 reads
I’m not much of a
betting man, but if I had to bet that I would participate in this month’s T-SQL
Tuesday...
2014-02-11
2,008 reads
If your local to the NY/NJ area, please see tomorrow night's agenda for SQL Server 2014 In-Memory OLTP feature! Microsoft...
2014-01-20
1,009 reads
Holiday Greetings to all you DBA's and SQL Server professionals! This blog goes out to all of you who are on-call...
2013-12-24
945 reads
December 7,
2013 – A day that shall live in infamy….. Ok, not that famous December 7 – in 1941,
when the attack on...
2013-12-10
1,020 reads
As
I was waiting for the next TSQL
Tuesday topic to be announced, we all know that when SQL Server performance is
slow,...
2013-12-10
1,602 reads
Today, October 31, 2013 is Halloween, and in the spirit of the holiday of ghosts, goblins, vampires, werewolves, witches and...
2013-10-31
1,983 reads
Day 3 at PASS Summit 2013, and the conference wraps up today strong with BOF (Birds of a Feather) lunch,...
2013-10-18
1,201 reads
PASS Summit Continues….
If you have been following my blog, in the myriad of PASS Summit 2013 related blogs, you’ve been...
2013-10-17
995 reads
Today, October 16, 2013: PASS DAY2
PASS Summit Day 1……complete……..Great learning, check! Awesome sessions and nuclear networking! You can read my...
2013-10-16
1,127 reads
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...
By Steve Jones
One of the popular features of Redgate Monitor has been the ability to add...
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