Pragmatic Works descends on SSWUG VConference
Hey There Gang,
I have been pumping the SSWUG VConference the last few weeks but the reason I'm so excited about...
2010-08-04
232 reads
Hey There Gang,
I have been pumping the SSWUG VConference the last few weeks but the reason I'm so excited about...
2010-08-04
232 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
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
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
What are we talking about?
Recently Microsoft released a new version of SQL Server 2008 R2 called Parallel Data Warehouse Edition....
2010-07-29
791 reads
Some exciting times coming up here in the South Florida SQL Server Community. SQL Saturday South Florida is rapidly approaching....
2010-07-24
450 reads
Hey folks, Check out SQLLunch.com today at 12:30 EST for my presentation on Introduction to dimensional modeling. It's going to...
2010-07-22
385 reads
Pretty exciting stuff gang! I have an approved session and an alternate for the PASS Summit in November. The SQL...
2010-07-13
340 reads
I get to work with a lot of different clients and client environments and like many companies they are often...
2010-07-09
312 reads
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
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...
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