You Must Trust Your DBAs
This is a follow-on post to You Must Trust Someone. My point in that post was to establish that being...
2009-02-20
1,949 reads
This is a follow-on post to You Must Trust Someone. My point in that post was to establish that being...
2009-02-20
1,949 reads
I have been tagged by Tom LaRock to write about “what was your first computer and what were some of...
2009-02-19
427 reads
Announced in the past week or so, Microsoft has released an update to Codezone that expands the focus beyond just...
2009-02-19
727 reads
Denver SQL Server User Group:
A “Biking Buddy” Adventure Works hospitality report. Always have something in common to talk about with...
2009-02-19
806 reads
I haven’t reported on how my resolutions are going yet this year, but after speaking at the Boulder User’s Group...
2009-02-19
948 reads
As some of you may know, I am writing a new book called High Performance Index Maintenance. As an experiment...
2009-02-19
810 reads
Last night I went to the February Boulder SQL Server User’s Group meeting up in Broomfield, CO to deliver my...
2009-02-18
794 reads
Question: Why does Database Mirroring Monitor report that my mirror is disconnected?
This question was sent to a discussion list via...
2009-02-18
1,625 reads
MySpace has been the Premier SQL Server site, and probably the largest SQL Server site, on the Internet. It’s a...
2009-02-18
820 reads
You can read the previous posts here. To finish up (I think), I want to share a networking technique I...
2009-02-18
712 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