Call It a Day, or a Day Minus 2 Milliseconds
There's one report that I look at every day to assess how things are going on a project we launched...
2008-12-21
603 reads
There's one report that I look at every day to assess how things are going on a project we launched...
2008-12-21
603 reads
I was reading through the SQL Server 2005 SP3 release notes yesterday (sadly, it was enjoyable) and clicked through to...
2008-12-19
798 reads
I saw a question today on restoring a SQL Server 7 backup to SQL Server 2005, and I wasn't sure...
2008-12-19
665 reads
Last and not least this week, The Snowball: Warren Buffett and the Business of Life. This is an authorized biography...
2008-12-18
706 reads
My friend Jack has been blogging for almost a year now and is looking for feedback. If you're a blogger...
2008-12-18
596 reads
I was tagged by Gail Shaw to post two big mistakes made during my professional career. The only challenge here...
2008-12-18
830 reads
I missed the November Car update, but I was too busy with the PASS Summit to get one done.
However last...
2008-12-18
663 reads
I'm still finishing up two books that I'll mention today. Most non-technical books I read straight through, anything technical/learning based...
2008-12-17
540 reads
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
540 reads
In a previous blog post, I suggested that less than professional content, that you or others post on the Internet...
2008-12-17
1,163 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