Build a Career Radar
A technology radar can help you assess what's important and where to focus your effort. Companies use these, and Steve Jones says you should as well.
2018-02-23
85 reads
A technology radar can help you assess what's important and where to focus your effort. Companies use these, and Steve Jones says you should as well.
2018-02-23
85 reads
We can't always explain how AI systems work. Steve Jones wonders if this is a loophole in the GDPR legislation.
2018-02-22
144 reads
The need for data imports, exports, and transformations seems to be growing.
2018-02-21
166 reads
2018-02-20
64 reads
The origins of PASS have shaped its culture for years. Are you doing the same in your organization?
2018-02-19
78 reads
Extended Events is a much more complex system and profiler, and the use of templates can reduce the complexity
2018-02-16
45 reads
Perseverance and continued effort, even when you lack knowledge or skill is extremely valuable for a technology professional.
2018-02-15
119 reads
Today Steve Jones asks about how your relationship is at work.
2018-02-14
87 reads
2018-02-13
51 reads
Sometimes a database can seem to be as willful as a colt. Taming it requires an iron nerve, and unflinching eye contact. Occasionally though, you need to know when to jump the fence and regroup.
2018-02-12
75 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