Finding the Context
Will computers become better at finding context in situations and environments? Steve Jones comments.
2010-06-14
88 reads
Will computers become better at finding context in situations and environments? Steve Jones comments.
2010-06-14
88 reads
I had been hearing about Lil’ Buck and so when I finally caught up with Buck Woody (Blog | Twitter) at...
2010-06-14
805 reads
I gave the Modern Resume: Building Your Brand presentation last week at the SQL Saturday #22 - Pensacola event and had...
2010-06-14
657 reads
I got this flyer in the mail recently.
It was for a seminar by Edward Tufte, and it caught my eye...
2010-06-11
375 reads
I saw a post from Seth Phelabaum on SQLServerCentral reviewing his goals as of Q2. About 20 days premature, but...
2010-06-11
313 reads
I’ve done a good amount to raise my profile over the years. Not with that intention, but as I’ve tried...
2010-06-10
403 reads
I saw this link posted by Buck Woody (blog | Twitter) and I was a little stunned. This is a profile...
2010-06-10
465 reads
Steve Jones talks about the PASS Board of Directors election coming up this fall and hopes some of you will apply.
2010-06-10
64 reads
The MVP award is coveted by many people and there are constant questions about how to get it. Is it worth it? Steve Jones talks about that today.
2010-06-09
306 reads
This was my second year going to SQL Saturday in Pensacola and once again I enjoyed it. I stayed again...
2010-06-09
344 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