SQLSaturday #59 - Speaker Interview #5 with Karen Lopez
SQLSaturday #59 - Speaker Interview #5 with Karen Lopez, (aka datachick)
Let’s trek up North to the great city of Toronto, Canada,...
2010-10-18
1,930 reads
SQLSaturday #59 - Speaker Interview #5 with Karen Lopez, (aka datachick)
Let’s trek up North to the great city of Toronto, Canada,...
2010-10-18
1,930 reads
SQLSaturday #59 Speaker Interview Series #4 – with Janakiraman Sattainathan
So far, we went Way out West, NYC local, we were waiting...
2010-10-15
797 reads
SQLSaturday #59 Speaker Interviews Series #3 - Kevin S. Goff
You can catch all the speaker interviews on this upcoming event, on...
2010-10-14
908 reads
SQLSaturday#59 Speaker Interview Series #2
Yesterday, on the PearlKnows Blog, I kicked off the SQLSaturday#59 Speaker Interview Series, with a bit...
2010-10-13
814 reads
Source Event Home Page: http://www.sqlsaturday.com/59/eventhome.aspx
Written & Distributed by: Robert Pearl
You may have heard that we’re planning an event in NYC, called...
2010-10-12
934 reads
SQLSaturday#59 - Interview with Robert Pearl (1st in series) - Say what?
As we get the countdown under way, I caught up...
2010-10-12
1,219 reads
I just wanted to update everyone on our event happening in NYC, November 20, 2010. We have just six weeks...
2010-10-11
547 reads
I have a question for all you DBA’s and SQL Professionals out there. It’s an exciting new contest that is...
2010-09-27
1,333 reads
Hi, ALL: Just want to bring you some updates and news on SQLSaturday#59 @MS HQ in NYC on Nov 20, 2010. ...
2010-09-22
642 reads
Today we have a guest editorial from Robert Pearl that talks about the SQL Server community, and how you can get involved.
2010-09-16
140 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