New Years Resolutions 2009 – Q1 Update
How am I doing on my New Year’s Resolutions for SQLServerCentral? I decided to make another update as Q1 has...
2009-04-03
676 reads
How am I doing on my New Year’s Resolutions for SQLServerCentral? I decided to make another update as Q1 has...
2009-04-03
676 reads
Steve Jones isn't usually the wild man of publishing, but on April 1st, a strangely
anarchic spirit breaks loose. Having...
2009-04-03
1,491 reads
I found How to Start a Conversation and Make Friends on the clearance rack at the local bookstore, but you...
2009-04-02
483 reads
Next Meeting - April 2, 2009
SPEAKER:Paul S. Waters
During Paul’s 16 years of working in IT, he has held a variety of...
2009-04-02
688 reads
If you have already submitted an abstract for the 2009 PASS Community Summit, or you are still thinking about it,...
2009-04-02
658 reads
If you’re available and are (or can be) in the Jacksonville FL area the first weekend of next month, check...
2009-04-02
755 reads
Just head from Greg Larsen yesterday that he just ran out of time to put things together. As I've mentioned...
2009-04-02
293 reads
I write an editorial about why I thought tape still had a place in backups. There were some interesting responses...
2009-04-02
794 reads
Further off topic than usual, but I ran across this as I browsed Springwise after a friend suggested it might...
2009-04-01
588 reads
He was awarded MVP status today, no joke, for his work in the community.
According to his blog, it’s not a...
2009-04-01
940 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