2016-12-12
96 reads
2016-12-12
96 reads
Measuring the performance of systems isn't always just CPU, RAM, and Disk IO. Today Steve Jones looks at business based metrics.
2016-12-09
107 reads
It seems that everyone has a different idea on how to interview people. Today Steve Jones looks at the technique of having someone improve some code in real time.
2016-12-08
106 reads
I have seen three common responses to database messes. My favorite is nuclear.
2016-12-06
264 reads
Should we be considering our Work/Training Balance as part of our careers?
2021-06-23 (first published: 2016-12-05)
236 reads
2016-12-05
99 reads
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
105 reads
Learning more about your craft can translate into more earnings, but it won't be easy.
2016-12-01
110 reads
There are always people that ask workers to deceive, defraud, or mislead customers. This is true for software developers as well.
2016-11-30
105 reads
Today Steve Jones looks at the CREATE OR ALTER syntax, added in SQL Server 2016 SP1.
2016-11-29
168 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