SSC Editorial – Learning From Experts
Another story with a lesson today, this one about learning to work smarter and not just harder. Easy to say,...
2010-07-07
255 reads
Another story with a lesson today, this one about learning to work smarter and not just harder. Easy to say,...
2010-07-07
255 reads
Well, I have just finished up my part in the abstract selection process for the PASS Summit. This was my...
2010-07-07
543 reads
All three licenses of Visual 2010 Ultimate with MSDN have been claimed, and here are the winners:
John Pertell (twitter | blog)Jeff...
2010-07-07
629 reads
UPDATE: The three licenses have been claimed!
Like other MVPs and Regional Directors, I've got three licenses of Visual Studio 2010...
2010-07-07
865 reads
This post describes a helper class that I came up with to handle returning values from a CLR stored procedure. Continue reading ?
2010-07-07
199 reads
This post describes a helper class that I came up with to handle returning values from a CLR stored procedure. Continue reading ?
The post What is an Easy Way...
2010-07-07
7 reads
Introduction
What is an Easy Way to Return Results from a CLR Stored Procedure? The question sounds simple enough but yet...
2010-07-07
999 reads
Many people, once they start getting comfortable writing SQL, begin asking the same questions. One such common question is “Does...
2010-07-07
1,303 reads
I was having a long call with Andy Warren (blog | Twitter), fellow founder of SQLServerCentral and SQL Saturday. We were...
2010-07-07
629 reads
There is a fine line between auditing and attacking. The line actually is one built based on authorization. Same tools,...
2010-07-06
950 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