Is the old stuff worth learning?
Often we are encouraged to learn the latest things, but sometimes the old stuff is worth knowing too.
2017-12-26
87 reads
Often we are encouraged to learn the latest things, but sometimes the old stuff is worth knowing too.
2017-12-26
87 reads
2017-12-25
35 reads
Many technical people use Virtual Machines to build their own lab or test environment. Today Steve Jones asks how you've built your setup.
2017-12-22 (first published: 2014-02-14)
244 reads
Does your organization have policies around data security? Perhaps they should, or perhaps you should ask for some to be created and education available for users.
2017-12-21 (first published: 2014-04-07)
153 reads
2017-12-19 (first published: 2014-03-18)
495 reads
2017-12-18
62 reads
Fill out the 2017 salary survey to help us all understand where our compensation might lie relative to others.
2017-12-18
15 reads
2017-12-15
167 reads
2017-12-13
66 reads
If you could look back on your career, is there some advice you wish you had? Is there something you'd tell people considering your job as a career? Let us know this Friday.
2017-12-12 (first published: 2014-04-18)
699 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