MVP Day 2
Yesterday was an interesting day up at Microsoft. The SQL Server track is split into two sessions, with 2 assigned...
2008-04-16
685 reads
Yesterday was an interesting day up at Microsoft. The SQL Server track is split into two sessions, with 2 assigned...
2008-04-16
685 reads
It was announced yesterday that Service Pack 3 for SQL Server 2005 is coming! I've been trying to get people...
2008-04-16
754 reads
One of the dangers of mentoring someone on your team is that you can easily be perceived as biased, and...
2008-04-16
464 reads
I'm sure that Monday was the most relaxed day that we will have this week. The conference did not start until...
2008-04-15
596 reads
I think sometimes a lot of what we call mentoring might be appropriately called coaching. Before you go trying to...
2008-04-15
479 reads
I am actually stunned. I knew that more bandwidth makes a difference, but having way more bandwidth is truly amazing.
My...
2008-04-14
747 reads
I arrived Sunday in Seattle from St. Louis for the MVP Global Summit. The shuttle from the airport was filled...
2008-04-14
417 reads
Just received word that Microsoft has posted 3 new courseware titles under the "What's New in SQL Server 2008" umbrella. ...
2008-04-14
1,404 reads
Actually it wasn't really an official day. I came to Seattle a day early to see the Mariner's play and...
2008-04-14
673 reads
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
511 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