Running to the PASS Summit
Well, not literally. I’m not going to run to Seattle from Denver, but I’ll be running at the Summit.
Last year...
2009-10-30
1,525 reads
Well, not literally. I’m not going to run to Seattle from Denver, but I’ll be running at the Summit.
Last year...
2009-10-30
1,525 reads
Who are the people in your SQL neighborhood?
Stuart Ainsworth (Blog, Twitter), Brent Ozar (Blog, Twitter), and some other really bright...
2009-10-30
1,445 reads
I have had the pleasure of being a vendor, and technical support for both hardware and software products. I know...
2009-10-30
1,508 reads
If you’re going to spend 3-5 days in Seattle at the PASS Summit it’s worth sampling the local food rather...
2009-10-29
1,749 reads
I have a sad story to tell you. Sit down and grab a tissue.
It was 10pm on a cool night...
2009-10-29
702 reads
I’ve been reading Aaron’s blog for a while, he’s prolific and consistently interesting – and definitely a technical focus. He’s been...
2009-10-29
679 reads
Was browsing on a break and found this, http://www.seattle.com/dining/. Of them I’ve been to Palomino (good) and Ruths Chris (good),...
2009-10-29
751 reads
Hooray! The PASS Summit is upon us (finally)! Here's what my plans look like for next week:
Monday
My week starts...
2009-10-29
654 reads
Ran across this, http://daypasswireless.com/, lets you rent an aircard plus service. Don’t know if it’s too late for those of...
2009-10-29
641 reads
Quite a few folks have commented about my previous post about missing the PASS Summit, whether publicly or in private....
2009-10-29
891 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