PASS Summit 2013 - Highlight Q&A - Where Will You Be?
PASS SQL Summit time, 2013is in full blown progress. Fantastic keynotes and presentations taking place all day long! For those...
2013-10-16
1,441 reads
PASS SQL Summit time, 2013is in full blown progress. Fantastic keynotes and presentations taking place all day long! For those...
2013-10-16
1,441 reads
Today, October 15, 2013: PASS SUMMIT DAY1
It’s October, and it’s PASS SQL Summit time, 2013! PASS Summit is the world's largest,...
2013-10-15
1,241 reads
So, is this your first time attending PASS Summit? Confused, shy, overwhelmed, and don’t know what to do first? Or...
2013-10-15
1,037 reads
Where does he get all those wonderful toys? In the line made famous by Jack Nicholson’s Joker in the original...
2013-10-08
1,525 reads
Warning, this is just a non-technical anecdotal blog of a silly time-warp incident that happened to me yesterday. Thought it...
2013-09-23
874 reads
Mount Olympus: Stratosphere: It was inevitable that two innovative technologies would merge to create a world of potential in the...
2013-09-17
1,546 reads
Next Meeting: Tue, Sep 17 2013
Take note, the New Jersey SQL Server User Group, led by John Dempsey, will be...
2013-09-11
881 reads
And so, the countdown begins for the super spectacular,
extraordinarily exceptional, amazingly awesome, fabulously fantastic confab
that is known as SQLSaturday
#235 in...
2013-08-11
860 reads
Last time, in Part
I of my page-split mini-series, we began speaking about page
splits, defining what they are, how they occur,...
2013-07-26
13,634 reads
TODAY, JULY 25: the NYC SQL Server User Group is honored to have a visiting SQL Server MVP all the...
2013-07-25
1,229 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