2026-04-17
87 reads
2026-04-17
87 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 gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
i have huge table with lot of data and is also wide. i took...
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