See You In Seattle For PASS 2009!
Last Friday I got the official notice that I've been selected to present a community session at the 2009 PASS...
2009-06-15
463 reads
Last Friday I got the official notice that I've been selected to present a community session at the 2009 PASS...
2009-06-15
463 reads
I was recently asked for advice about seeking a job, a request we all get from time to time. In...
2009-06-15
725 reads
I received my notification from the PASS Program Committee on Friday evening,
and found out that I will not be...
2009-06-15
598 reads
There’s a contest going on at PASS looking for answers to “Best Thing I Learned at PASS”. I don’t want...
2009-06-15
1,065 reads
Way back on May 19 I wrote about my search for a new laptop bag to replace my somewhat tattered...
2009-06-14
713 reads
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
761 reads
This past Tuesday, Brian Knight visited the St. Louis SQL Server User Group to present on SSIS. The day ended...
2009-06-14
559 reads
I read, a lot. I’ve been a prolific reader all my adult life.
I use to split my reading between...
2009-06-14
1,126 reads
Tim Benninghof tagged me with the question. "So You’re On A Deserted Island With WiFi and you’re still on the...
2009-06-13
451 reads
My first whitepaper for Microsoft, Understanding and Using PowerShell Support in SQL Server 2008 has been published. It was a...
2009-06-13
386 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