The Inefficiencies of Kubernetes
Kubernetes hasn't proved to be as useful to many companies as they expected.
2025-03-28
126 reads
Kubernetes hasn't proved to be as useful to many companies as they expected.
2025-03-28
126 reads
Steve has a few thoughts after the end of mainstream support for SQL Server 2019.
2025-03-26
960 reads
Should we build modern software as monoliths or microservices? Or something else? Steve has a few thoughts today.
2025-03-24
136 reads
I won't even try to hide it. I got a huge kick out of the penguin characters in the animated movie, Madagascar. For those who don't know, they're trying to escape the zoo, but are trying to hide that from anyone discovering it. So, they put up a front, "Smile and wave boys. Smile and […]
2025-03-22
86 reads
Code is vulnerable to supply chain attacks, which aren't something many of us think about.
2025-03-21
109 reads
We all know security is important, but we sometimes make the job harder when we don't handle data appropriately.
2025-03-19
168 reads
Phil Factor explains the enduring attachment of database developers to wildcards, despite their current deficiencies.
2025-03-17 (first published: 2018-12-17)
494 reads
It can be hard to change peoples' habits and get them to adopt new technology.
2025-03-15
100 reads
2025-03-14 (first published: 2018-11-02)
279 reads
2025-03-12 (first published: 2018-10-19)
1,035 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
Comments posted to this topic are about the item Creating JSON III
Comments posted to this topic are about the item Testing is Becoming More Important
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers