SQL Server 2016 RC0–Management Studio install option has disappeared
If you are trying to install SQL Server 2016 RC0 – which I’m sure you are all doing looking at the...
2016-03-16
727 reads
If you are trying to install SQL Server 2016 RC0 – which I’m sure you are all doing looking at the...
2016-03-16
727 reads
The following is a short guide for promoting a Windows Server 2012 Machine to be a domain controller. This assumes...
2016-03-15
541 reads
When I started working with SQL Server many years ago, SQL Server on Linux was a regular April fool’s day...
2016-03-08
519 reads
Just a short post for a Tuesday to let you that I will delivering Learning Tree’s 534 Developing SQL Queries...
2016-02-09
475 reads
There has been much talk recently in the SQL Server community about writing introductory level blog posts. Posts that a...
2016-02-08
884 reads
Its been a busy start to the year at gethynellis.com. I have been involved in a Big Data training courses...
2016-02-05
492 reads
New Year, new powerful SQL queries!
Start the New Year off with some great Transact-SQL training and join me for...
2015-12-07
442 reads
There has been some really useful blogs and articles posted over the last week or so, this is my top...
2015-09-22
520 reads
As this blog post is being published David will be delivering his “Putting his Head in the Cloud – Working with...
2015-09-19
555 reads
David Postlethwaite will be giving his SQL Azure “Putting your head in the clouds – Working with SQL Azure” at SQL...
2015-09-07
545 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