Twitter SQLBingo at the PASS Community Summit
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
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
If you’ve ever been to a PASS Community Summit, you know that each day is packed with a ton of...
2009-10-29
466 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers