2021-04-14
58 reads
2021-04-14
58 reads
Using metadata to drive software is very useful, which means that having clean data and lots of metadata can help create better software.
2021-03-30
70 reads
One of the interesting things about modern software is how updates are handled.
2021-03-29
78 reads
2021-03-25
150 reads
User interface is a part of software development that many technical people pay little attention to during the process of building something. However, it can be a problem for your customers.
2021-02-25
100 reads
Building better software requires some experimentation, but also some learning. Building better software as an organization requires even more.
2021-02-04
311 reads
Cutting edge technology might vary for many people, and Steve wonders what you think.
2021-01-29
105 reads
Today Steve wonders who should be responsible for software bugs, something of which we have no shortage of in our industry.
2021-01-11
104 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
227 reads
Today Steve looks at legacy systems and the challenges they pose as we try to adapt them to new requirements.
2020-12-05
205 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...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
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
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