SQL Saturday DC Lessons Learned – Humility, Paying it Forward, and Dedication
This past weekend I attended SQL Saturday #233 in Washington DC. I presented a session this year titled “Backup and...
2013-12-09
560 reads
This past weekend I attended SQL Saturday #233 in Washington DC. I presented a session this year titled “Backup and...
2013-12-09
560 reads
Alright, I’ve got your attention. You’re probably thinking “who is this crazy guy that is using the word Love with...
2013-12-02
556 reads
It’s that time of the year again when SQL Saturday makes its way back to the Washington DC Area. Here...
2013-11-18
588 reads
The SQL Server Live! Conference in Orlando is between November 18-22, 2013. There is a discount code provided for those...
2013-10-28
713 reads
About a month ago I started a competition (hosted by the event organizers) to give away a free pass to...
2013-10-16
467 reads
For those of you that attended yesterday and are interested in the slides, you can download them here. Thanks! Topic:...
2013-10-11
741 reads
People are always concerned about Security when it comes to their data. I don’t blame them, I love keeping my...
2013-10-02
727 reads
If you’re in the DC/Baltimore area, or just feel like coming to DC to learn about SQL Server, please join...
2013-09-24
518 reads
Want a free pass to the SQL Server Live! conference in Orlando this year? Look no further, here is your...
2013-09-16
653 reads
The SQL Server Live! Conference in Orlando is between November 18-22, 2013. There is a discount code provided for those...
2013-08-07
655 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