Portland SQL Saturday / Code Camp 2010
Today was the Portland SQL Saturday and Code Camp at the University of Portland and
it was a great experience. I...
2010-05-23
424 reads
Today was the Portland SQL Saturday and Code Camp at the University of Portland and
it was a great experience. I...
2010-05-23
424 reads
I realized this morning that I will be participating in three SQL Events this week and I want to share...
2010-05-23
575 reads
Sorry guys, I’m off for a week in the sun – will return June 2nd with more SQL Server 2008 New...
2010-05-22
375 reads
There was a time when almost every Chapter leader were asking PASS to find a place where the leaders can...
2010-05-21
389 reads
I ordered a copy of Currencies That Buy Credibility ($14 @ Amazon) after a comment from author Tom Wanek on Twitter...
2010-05-21
543 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-21
395 reads
My oldest son graduates high school today. After a long journey, he’s the first of my wife’s and my three...
2010-05-21
694 reads
If you download the May 2010 minutes of the Board meeting (login required) you’ll see that we devoted an entire...
2010-05-21
588 reads
Recently I received a new opportunity via email. Steve Jones at SQLServerCentral sent me an email to see if I...
2010-05-21
650 reads
Today's script is one that I wrote based on the logic outlined in a post by Paul Randal. This script is written for SQL 2000 but, as Paul notes,...
2010-05-21
14 reads
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...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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 Removing TDE
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