The 2011 SQL Saturday Schedule is Filling Up
I have been trying to figure out where to go in 2011 for SQL Saturdays, especially as Red Gate is...
2010-12-10
714 reads
I have been trying to figure out where to go in 2011 for SQL Saturdays, especially as Red Gate is...
2010-12-10
714 reads
Microsoft is working to certify vendors to build private clouds, which Steve Jones thinks is a great idea.
2010-12-09
173 reads
A look at what's happening with the SQLServerCentral servers based on the public information exposed by SQL Monitor.
2010-12-09
1,729 reads
Can you accurately determine the cost or benefit of a new, cool project up front? Steve Jones thinks not, but coming up with new projects can be a way to set yourself apart from others.
2010-12-08
115 reads
A repost from SQLServerCentral.
What would you like for Christmas?
Hint, hint, a little visual imagery of the kind of prize that...
2010-12-08
909 reads
Steve Jones found a very fascinating way that might keep elections more secure, verifiable, and also more open.
2010-12-07
107 reads
It’s time to wrap up T-SQL Tuesday for the year 2010 and I was invited to host his month’s blog...
2010-12-07
8,281 reads
I’m about to go down one laptop, which is good. I have had too many for some time. Right now...
2010-12-06
395 reads
I had my laptop connected to a projector recently, and for some reason a few windows got moved off screen,...
2010-12-06
565 reads
We are always looking for more speed from our computer systems, but are they getting faster? Steve Jones has a few comments on why this might not be the case.
2010-12-06
160 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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