The Challenges of Resetting Databases
The challenges of state in databases can impact our development efforts.
2020-08-31
97 reads
The challenges of state in databases can impact our development efforts.
2020-08-31
97 reads
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
203 reads
This week Steve wonders if you're want to tackle an exciting project for a day or a week.
2020-08-28
94 reads
Steve doesn't think microservices work with relational databases, but maybe you can convince him otherwise.
2020-08-27
273 reads
DevOps can help provide better security for your databases.
2020-08-26
84 reads
The ability to analyze lots of data on a workstation can be a way to test things without overloading server systems until you are sure your code works.
2020-08-25
132 reads
Steve looks at some of the software development trends from last year, and if they apply today.
2020-08-24
201 reads
One of the finest songs of the sixties had the following lines … "Sitting one day by myself, And I'm thinking, "What could be wrong?" When this funny little Hedgehog comes running up to me, And it starts up to sing me this song. Oh, you know all the words, and you sung all the […]
2020-08-22
370 reads
Today Steve asks about the people that might be critical in your organization.
2020-08-21
159 reads
The challenges of large scale administration can be complex, but the more we share, the more we help others learn and better manage systems.
2020-08-20
85 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...
I have mentioned this several times over several years. Can someone please help me...
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:...
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