Project Phoenix: May we have the July awards please ...
The first two developers and projects have been selected –and there were some tough choices. However, those projects not selected...
2010-08-04
646 reads
The first two developers and projects have been selected –and there were some tough choices. However, those projects not selected...
2010-08-04
646 reads
[This is part three in a series of posts about how to effectively transition to your new role after being...
2010-08-04
798 reads
Well SQL Saturday here in South Florida was QUITE an event this past weekend. We had over 400+ attendees and...
2010-08-04
180 reads
During the configuration of one of the SSRS instances I have stumbled upon a problem with SSRS Subscription. Subscriptions were...
2010-08-04
1,013 reads
SSWUG, or the SQL Server Worldwide Users’ Group, is one of the largest and most respected SQL Server communities on...
2010-08-04
309 reads
Hey There Gang!
For those of you who are not familiar with SSWUG I don’t know what to say. SSWUG or...
2010-08-04
196 reads
SQL Server 2008 introduced native backup compression and data compression as features that were only available in the Enterprise Edition...
2010-08-04
3,824 reads
Hey folks, we have some very exciting SQL Lunch speakers on the docket coming up. Check out Devin Knight(Blog)|(Twitter) and...
2010-08-04
189 reads
We received over 100 submissions for our 99designs contest to design the SQLRally logo. The SQLRally planning team, with help...
2010-08-04
797 reads
PerformancePoint is a great tool for monitoring and analyzing the performance of your business at a high level but also...
2010-08-03
1,251 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