SQLSaturday #49 in Orlando!
We just put the site up, starting a little earlier than last year, and over the course of this week...
2010-04-21
497 reads
We just put the site up, starting a little earlier than last year, and over the course of this week...
2010-04-21
497 reads
Most of us have some general rules we live by, and I’ve often thought it would be a lot easier...
2010-04-21
725 reads
Found Ninite while browsing a list of efficiency tools on PCWorld.com. It’s a one stop super installer, you run through...
2010-04-20
626 reads
I hear that registration is over 350 so far, with seats still available – but register soon! I’m driving up with...
2010-04-19
507 reads
I’ve had this on my list to write about for a while, just didn’t have a great example until this...
2010-04-19
498 reads
First, some background. If you’ve been to the Summit you know that we have an opening night reception, lots of...
2010-04-16
1,117 reads
A few weeks back I was in Chicago for three days for work. I’ve been through the airport a couple...
2010-04-16
952 reads
SQLSaturday #38 is coming up on May 8th, 2010, back at the same location as in previous years at the...
2010-04-15
490 reads
I’ve been waiting on this for a while, and missed the announcement that it was available, happened to see that...
2010-04-15
543 reads
Decided to scrap the pizza this month after one too many late deliveries from Pizza Hut, went with sandwich platters...
2010-04-14
487 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