Will People Use This?
The cost of making a trip differently in the US, in terms of time, effort, and driving habits, is small....
2010-05-18
921 reads
The cost of making a trip differently in the US, in terms of time, effort, and driving habits, is small....
2010-05-18
921 reads
With a SQL-meme going through the SQL Server community this week, Steve Jones comments on the various suggestions and offers a way to get your voice heard.
2010-05-17
288 reads
From Barnes and Noble. You can get them on a Nook, Blackberry, iPhone/Ipad, or PC. They are offering a few...
2010-05-17
952 reads
Steve Jones talks about encrypting stored procedures and why it's a bad idea. And that it's a feature that should be removed from SQL Server.
2010-05-17
173 reads
There has been quite a debate going on at SQLServerCentral about a DBA journeyman certification. There are a couple good...
2010-05-17
963 reads
Kathi Kellenburger, fellow MVP and friend, pinged me recently for an interview for the Professional Development Virtual Chapter. This is...
2010-05-14
1,623 reads
This Friday's poll asks what changes the community might like to see at SQLServerCentral.
2010-05-14
102 reads
I was getting tired of pre-formatting code in LiveWriter. I love that software, but a couple of the technical things...
2010-05-13
928 reads
This is a test of the plug in “Paste From Visual Studio”. I had this code sitting in SSMS and...
2010-05-13
806 reads
There’s still time to register for the 24 Hours of PASS, a series of 24 one-hour sessions being presented on...
2010-05-12
740 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