PASS Summit 2012-Wednesday Keynote Part 2
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
I have been exploring Windows 2012 over the past week or so. Things look a little different to previous versions...
2012-11-07
2,326 reads
Here In A Flash!
Its been a crazy last few years in the flash storage space. Things really started taking off...
2012-11-07 (first published: 2012-11-05)
2,732 reads
I’m scheduled to give “The Encryption Primer” at the Denver SQL Server Users Group on the November 15 meeting. It’s...
2012-11-07
890 reads
Hello Dear Reader! I'm sitting in the Keynote now writting up a summary of the event. More to come!
2012-11-07
584 reads
There are still some places available for Learning Tree’s SQL Server 2012 Skills Upgrade course this November. The class is...
2012-11-07
998 reads
This post is a live recap of the keynote at the PASS Summit 2012 conference.
Bill Graziano opens Summit 2012 with...
2012-11-07
623 reads
If you're a DBA like me then you're probably pretty detail-oriented and like to keep things very organized. For example,...
2012-11-06
755 reads
Are you in Seattle yet? Still working on getting here? Tomorrow is the first day of regular sessions at this...
2012-11-06
711 reads
I thought I would write a quick blog on a problem I see frequently: You try to copy a large...
2012-11-06
1,003 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