Announcing SQLSaturday #46 in Raleigh
SQLSaturday #46 will be held in Raleigh, NC on September 18, 2010, under the direction of Brett Tomson and team...
2010-04-13
487 reads
SQLSaturday #46 will be held in Raleigh, NC on September 18, 2010, under the direction of Brett Tomson and team...
2010-04-13
487 reads
This month for my second submission into T-SQL Tuesday, I decided to go with something that provides some insight into...
2010-04-13
1,149 reads
This actually came as a response to a tweet from Mike Walsh (Twitter | Blog). But here is the barebones checklist I...
2010-04-13
588 reads
Our next meeting is today, April 9, 2010, from 6-8 pm. Our featured speaker is Joe Webb and he’ll be...
2010-04-13
243 reads
The minutes from the March 2010 Board meeting were released last week and I hope you’ll review them carefully. Viewing...
2010-04-13
467 reads
Ok, continuing from my post last night about the ‘Run as Administrator’ bug in SSMS, here’s the other half of...
2010-04-13
804 reads
Tomorrow, Wednesday April 14th, is the next SNESSUG meeting. We’re going to get a great presentation from Scott Abrants on...
2010-04-13
740 reads
Just set up SQLSaturday #47 in Phoenix for July 17, 2010 at Devry. Call for speakers is open, good to...
2010-04-13
749 reads
My T-SQL Tuesday post for April is based on Aaron Nelson’s subject of reporting. If you’re unsure of what T-SQL...
2010-04-13
1,454 reads
Aaron Nelson (@SqlVariant) is hosting this month’s T-SQL Tuesday (#tsql2sday) and his topic is reporting.
One of the frustrations I have...
2010-04-13
1,811 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