Guilty of Over-Customising
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
2023-05-12 (first published: 2017-06-09)
326 reads
SQL Server is becoming more capable all the time, requiring fewer human resources for basic management.
2017-06-08
88 reads
2017-06-06
99 reads
I don’t doubt for a minute that on a certain level you’re sick to death of people talking about the Wanna Cry ransomware. However, bear with me, we need to go through it just a little more because it actually has some bearing on us as data professionals. OK, more than some bearing, it’s a […]
2017-06-05
190 reads
2017-06-05
80 reads
Today Steve Jones talks presentations, specifically the best way to share information on a projector.
2017-06-02
172 reads
Steve Jones asks software developers to consider the issues we may have with lax internal security.
2017-06-01
89 reads
Data storage is something all data professionals need to care about, and today Steve Jones talks about a research project from Microsoft.
2017-05-31
103 reads
2017-05-30
56 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