PASS SQLRally Call For Speakers Update
Well, we have 3 days left in the PASS SQLRally Call for speakers and we are doing well. We have over 70 completed submissions, there may be more in a...
2010-12-13
3 reads
Well, we have 3 days left in the PASS SQLRally Call for speakers and we are doing well. We have over 70 completed submissions, there may be more in a...
2010-12-13
3 reads
There is only one week left to submit your abstract for the PASS SQLRally. This is a great opportunity for...
2010-12-08
360 reads
Ever feel worn out and/or burned out? Don’t worry you aren’t alone. As a matter of fact most people have...
2010-12-02
581 reads
Since it is the week of Thanksgiving in the United States, Jason Strate (@strateSql) has requested that bloggers post what...
2010-11-24
585 reads
Call for Speakers
With the close of the PASS Summit today, the call for speakers for PASS SQLRally has opened! so...
2010-11-11
324 reads
As most of you know, I am not attending the PASS Summit this year. I had all my plans made,...
2010-11-09
624 reads
Several bloggers have posted what their plans are for the PASS Summit and I’m following suit for 2 reasons:
So people...
2010-11-03
662 reads
This month T-SQL Tuesday is hosted by Paul Randal (@PaulRandal) and he asks the question, “Why are DBA Skills Necessary?”.
The...
2010-11-02
516 reads
If you read this blog you probably already know about the PASS SQLRally and that we are doing things a little...
2010-10-28
379 reads
SQLSaturday #49 – Orlando was this past weekend (October 16th, 2010). As one of the event organizers the entire week was...
2010-10-21
569 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