Who is Irresponsible?
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
47 reads
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
47 reads
2026-04-13
97 reads
Acting with confidence is great, but how do you decide when there are potential impacts and concerns about your actions? Steve has a few thoughts today.
2026-04-10
67 reads
Code reviews can be challenging in many places, and with AI, could be even more of an issue in the future.
2026-04-08
107 reads
2026-04-06 (first published: 2018-05-21)
410 reads
A company has both a server without a password and live data in test environments. Not a good situation.
2026-04-03 (first published: 2019-05-07)
464 reads
2026-04-01
171 reads
2026-03-30
129 reads
The headline says it all and Steve thinks this could be a problem in the digital world as well.
2026-03-28
67 reads
Too many people don't value their time appropriately, especially at work. If you don't, likely your boss doesn't either.
2026-03-27
90 reads
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...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
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