Time for T-SQL Tuesday #70!
Here is your invitation for T-SQL Tuesday #70, and the topic is: Strategies for managing an enterprise We define “enterprise” in...
2015-09-01
856 reads
Here is your invitation for T-SQL Tuesday #70, and the topic is: Strategies for managing an enterprise We define “enterprise” in...
2015-09-01
856 reads
Attended SQL Server Geeks Annual Summit 2015 on last Wednesday (26/8) at Bangalore, India. Due to few urgent responsibilities at...
2015-08-31
1,280 reads
Let’s take a closer look at how we can speed up the system’s performance using the Buffer Pool Extension. For...
2015-08-31
2,021 reads
[read this post on Mr. Fox SQL blog] The PASS speakers were announced a quite a number of weeks ago now for PASS 2015 in October – and I felt pretty damn honored to...
2015-08-31
4 reads
[read this post on Mr. Fox SQL blog]
The PASS speakers were announced a quite a number of weeks ago now for PASS 2015 in...
2015-08-31
945 reads
The Problem Solver. Ever scoffed at personality types? Surely none of us are just one thing, but often we are...
2015-08-31
1,123 reads
Picture this if you could. You inherit a new database either through the change of a job, or finding a...
2015-08-31 (first published: 2015-08-19)
2,015 reads
GUYS,
I was just surfing internet to read more about GAM and SGAM. Accidently I read an awesome article about the...
2015-08-31
2,785 reads
GUYS,
I was just surfing internet to read more about GAM and SGAM. Accidently I read an awesome article about the...
2015-08-31
814 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-31
1,897 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