Notes from PASS - Part 3
Today was interesting. I headed for breakfast and after a few stops to chat with friends, wound up sitting with...
2007-09-21
1,468 reads
Today was interesting. I headed for breakfast and after a few stops to chat with friends, wound up sitting with...
2007-09-21
1,468 reads
I haven't seen a lot of sessions at the 2007 Summit, but I did go through 4 or 5 across...
2007-09-21
1,396 reads
I was late, not getting up quick enough and then fighting traffic into the city. From there I did a...
2007-09-19
630 reads
Denver is a great location for a conference. The convention center is two blocks from the 16th street mall - must...
2007-09-19
530 reads
One of the points mentioned in the volunteer meeting on Tuesday was that it makes a lot of sense to...
2007-09-19
543 reads
After the PASS opening, which I dropped in long enough to get a beer, we had the SQLServerCentral.com party.
It seemed...
2007-09-19
604 reads
I attended the morning portion of the volunteer/chapter meeting today and got to put some names with faces for some...
2007-09-18
583 reads
Last week I taught 'Successful Technical Speaking' for the first time - it's a free four class I put together for...
2007-09-17
779 reads
I'm kind of stunned. I have asked 6 people to go to the PASS conference over the last 4 days...
2007-09-17
683 reads
I'm flying out tomorrow for the event and looking forward to it, nice break from the office/work routine, a chance...
2007-09-16
490 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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