The Tapestry
When I run on the treadmill, I have a TV and DVD player down there and have been watching Star...
2010-11-05
484 reads
When I run on the treadmill, I have a TV and DVD player down there and have been watching Star...
2010-11-05
484 reads
Facebook has implemented a new security feature that Steve Jones thinks might work well for SQL Server as well.
2010-11-04
269 reads
When I was doing performance monitoring of servers, I typically struggled with a good way to get the data. In...
2010-11-04
795 reads
If you haven’t looked at Policy Based Management (PBM), and you manage multiple instances, you ought to really look at...
2010-11-03
971 reads
These are some notes and thoughts from sessions and my time at SQL Server Connections/DevConnections in Nov 2010.
Denny Cherry gives...
2010-11-03
1,602 reads
Steve Jones talks about the workplace of the future, and a prediction from the Gartner Group that it will include swarms.
2010-11-03
145 reads
Kim Tripp is a great speaker, with a wealth of knowledge. This session was talking about some of the issues...
2010-11-03
727 reads
It’s once again time for T-SQL Tuesday, the brainchild of Adam Machanic (Blog|Twitter). It’s a monthly blog party, designed to...
2010-11-02
3,017 reads
My pre-conference session for the SQL Rally conference in the spring is called “Finding Your Dream Job”. Chris Shaw ( LinkedIn...
2010-11-01
657 reads
Steve Jones has a day off before SQL Server Connections and brings us a blooper reel for Halloween.
2010-11-01
105 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