Developer Time is More Valuable Than Ever
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2025-05-23 (first published: 2020-02-14)
384 reads
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2025-05-23 (first published: 2020-02-14)
384 reads
Steve finds a lot of people don't use version control and don't want to learn how to use it.
2025-05-21
177 reads
2025-05-19
127 reads
As someone who has had the honor of delivering keynotes at both Oracle and SQL Saturday data events, I’ve spent time with professionals on both sides of the database world. I’ve held the title of database administrator, developer, engineer and architect for structured, transactional giants and the analytics-heavy ecosystems of eight different database platforms, (not […]
2025-05-17
97 reads
Steve examines the idea that we might all have a data breach at some point.
2025-05-16
88 reads
Microsoft talks about evergreen SQL, where you never need to patch your database.
2025-05-14 (first published: 2019-07-24)
1,590 reads
I spend a significant amount of time working alone at my desk. I write articles, edit them, and share my opinions. However, I am constantly concerned about being wrong. How can I overcome this feeling? If this were a live session, I would eagerly listen to the answers to this question. Since it isn't, I […]
2025-05-10
100 reads
DevOps and databases aren't always considered compatible, but that is changing. DORA now has recommendations for database changes on their site.
2025-05-09
163 reads
Steve looks at a trial using Microsoft's Copilot and how helpful it was for workers.
2025-05-07
175 reads
People with certifications are seeing their pay rise faster than others. Steve has a few thoughts on this today.
2025-05-05
154 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