Check out Straight to 8 Program
We seem to be busting at the seams lately with quality content from great providers. I wanted to recommend to...
2009-11-03
224 reads
We seem to be busting at the seams lately with quality content from great providers. I wanted to recommend to...
2009-11-03
224 reads
There are many different ways to manipulate dates when working with them in SSIS. Many great examples have been posted...
2009-11-03
573 reads
Up early again, started my day at the Convention Center for breakfast. Light breakfast, drinking water, never seem to drink...
2009-11-03
381 reads
This week, I’m blogging and tweeting from the PASS Community Summit in Seattle, Washington. The week of the Summit is...
2009-11-03
786 reads
In the spirit of my Who DID IT and RAN SQL Caper presentation.....
OK, I was hoping to get the creative juices...
2009-11-03
742 reads
Have you ever lost your project file for a SQL Server Analysis Services database? There is a great option to...
2009-11-03
1,052 reads
With the advent of SQL Server 2005 and 2008, mail in the database engine has changed dramatically. Previously you had...
2009-11-03
1,423 reads
Getting to Seattle
I started my travels to the PASS Summit at about 9:30 am (EST) on Sunday and arrived at...
2009-11-03
712 reads
Started the day with a long walk, then off to Top Pot doughnuts for coffee with Don Gabor, Jack Corbett,...
2009-11-03
378 reads
President of server tools at Microsoft, Bob Muglia, he overseas Windows Server, Systems Center, Hyper-V, and of course, SQL Server....
2009-11-03
733 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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