Speaking Ideas - Plan to End
Over the years I’ve seen probably hundreds of technical presentations. I’ve seen good ones, bad ones, on all sorts of...
2010-10-06
332 reads
Over the years I’ve seen probably hundreds of technical presentations. I’ve seen good ones, bad ones, on all sorts of...
2010-10-06
332 reads
I found a comparison of MongoDB and SQL Server recently, from a C# MVP and a person that works with...
2010-10-05
1,616 reads
Another weekend, another new city, another SQL Saturday. This was my first trip to Kansas City, and it was a...
2010-10-04
1,604 reads
I’m off to Kansas City today for SQL Saturday #53 and looking forward to a great speaker’s dinner tonight at...
2010-10-01
343 reads
I love to read. Like my friend, Paul Randal (blog, @PaulRandal), I read a lot of books every year, usually...
2010-10-01
354 reads
This past weekend was the first SQL Saturday in Colorado, and it went very well. I think everyone enjoyed it,...
2010-10-01
1,391 reads
The keynote for SQL Saturday #52 in Denver, that didn’t go as smoothly as I’d like due to technical difficulties,...
2010-09-30
1,520 reads
Today Steve Jones reminds us that the small disasters are likely to occur, and that you need to be sure that you're planning for them, and practicing for the recovery that will be needed.
2010-09-30
150 reads
If one index helps speed up queries, than more indexes should help more, right? They do, but they also come...
2010-09-29
4,788 reads
It’s getting close to the time for the SQLServerCentral party events this fall, and time to start gathering up SWAG...
2010-09-29
1,818 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