2011-01-14
2,072 reads
2011-01-14
2,072 reads
Today we have an editorial from Sept 25, 2005 being republished as Steve is on vacation. This one talks about the need to expect failure in our systems and code for it.
2011-01-13
77 reads
Steve Jones likes the cloud, but doesn't necessarily trust it. After a recent Hotmail outage, he outlines a potential issue that he sees with cloud computing.
2011-01-12
179 reads
2011-01-12
2,704 reads
The handiest thing that I’ve used lately for a computer is the Ctrl button and the scroll wheel on my...
2011-01-11
969 reads
Today Steve Jones talks about NOSQL and why it might be important for SQL Server DBAs to understand more about it and be able to talk about when it is appropriate to use.
2011-01-11
706 reads
The SQL community is inspiring, and there are a lot of people that work hard to contribute to it. With...
2011-01-10
1,033 reads
I decided that I really like the WordPress platform, and more importantly, that I need to consolidate all the work...
2011-01-08
813 reads
Not done yet, but I have been slowly patching and installing software over the last few evenings, stuck at my...
2011-01-07
663 reads
I toyed with the idea of using the SSD for my main drive, but I’d really like to get the...
2011-01-07
1,062 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...
Hey all. I understand if this gets taken down due to the subject matter...
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?
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