A Week of Books - Part 1
I've been catching up on reading over the last month and I feel like taking a break from things technical/community/etc...
2008-12-15
657 reads
I've been catching up on reading over the last month and I feel like taking a break from things technical/community/etc...
2008-12-15
657 reads
I'm just finishing up Boards At Work which talks about how a good board of directors can make a big...
2008-12-15
570 reads
Just as I did last year I'm posting my evaluation scores for review. I co-presented with Steve Jones a session...
2008-12-15
805 reads
I was recently tagged by Tim Mitchell to give a response to Chris Shaw’s SQL Quiz Part 2 so here...
2008-12-15
817 reads
… has arrived: http://www.microsoft.com/downloads/details.aspx?FamilyID=ae7387c3-348c-4faa-8ae5-949fdfbe59c4&displaylang=en
It’s obviously hot off the presses because the “What’s New document” is 404.
2008-12-15
678 reads
I had another chance last week to answer an email follow up question from the session Brian and I gave...
2008-12-15
8,509 reads
Yesterday I spoke on 2008 T-SQL and Data Types at the St. Louis Day of .Net event. This was an...
2008-12-14
420 reads
I’ve been trying the social networking thing, with accounts on Twitter, Facebook, and LinkedIn. I guess I have one on...
2008-12-12
775 reads
I finally got tagged for the SQL Quiz, which I've been following. Michelle Ufford, aka SQLFool, tagged me following her...
2008-12-12
1,332 reads
Ah, if you're reading this aren't you the curious one! I ran across the link below a while back and...
2008-12-11
643 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 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