OFF-TOPIC: Surviving, Missing Folks, Glad I'm Home
I certainly wish circumstances were different and I would have been able to attend the PASS Summit this week. I...
2009-11-06
732 reads
I certainly wish circumstances were different and I would have been able to attend the PASS Summit this week. I...
2009-11-06
732 reads
The day started off with a mixed bag. First we had an honestly tearful farewell with Wayne Snyder saying goodbye to...
2009-11-06
1,530 reads
Looking forward to a great Tamp Code Camp tomorrow. My first code camp. I’ve had some great experiences at the...
2009-11-06
409 reads
Down on the docks in Seattle there's a shop of oddities and curiosities where one can find things like a...
2009-11-05
825 reads
Finally time for the sessions to begin after a day and a half in Seattle being overwhelmed by the people...
2009-11-05
732 reads
Mary-Jo Foley recently posted about some announcements about SQL Server 2008 R2 out of the PASS Summit. There will be...
2009-11-05
1,026 reads
Started the day at 6:30 at Top Pot with a meeting about SQLSaturday over coffee and it really ended up...
2009-11-05
1,123 reads
Microsoft sent Dr. David DeWitt to do the last keynote of the PASS Summit. He's a technical fellow in the...
2009-11-05
2,574 reads
Note might be sparse here as it's not a great keynote. There's a lack of excitement, and enthusiasm from the...
2009-11-05
1,082 reads
Bill, the Vice President of Marketing, opened the day with a few remarks about how to keep up with PASS. ...
2009-11-05
1,645 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