2026-04-17
81 reads
2026-04-17
81 reads
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
59 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
108 reads
2026-03-30
132 reads
2026-02-25
92 reads
As Steve uses AI more, it seems determinism isn't something you get out of many LLMs.
2026-02-23
115 reads
GenAI technology is going to change coding, but there is still a lot of work available for humans.
2026-01-26
95 reads
2026-01-21
93 reads
When I was at the Small Data 2025 conference, one of the speakers was talking about their work with AI technologies. This person uses it a lot in their day job, often to complete tasks that they would have struggled to work on in the past, mostly because of time constraints, but also a lack […]
2026-01-16
168 reads
Refactoring code is a common task in many software development teams. Steve asks if this is something common for database developers as well.
2025-12-12
283 reads
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
By Steve Jones
One of the popular features of Redgate Monitor has been the ability to add...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers