SQL Server events in the UK September 2013
Sorry things are a little later this month…Summer (like the MCM program) may be coming to an end, but we...
2013-09-04
683 reads
Sorry things are a little later this month…Summer (like the MCM program) may be coming to an end, but we...
2013-09-04
683 reads
This script shows size information of every database on the instance.
2013-08-21 (first published: 2010-07-26)
5,943 reads
You might have thought that the UK SQL Server scene would have gone quiet during the summer break, but far...
2013-08-01
667 reads
Every day I consider myself extremely fortunate to be in a profession that I really enjoy, as there’s always something...
2013-07-23
785 reads
Another month and another evening of top quality free SQL Server goodness for those living/working in the Maidenhead area of...
2013-07-05
694 reads
Last month saw SQL Relay, Tech Ed, SQL Saturday Dublin, oh and the small matter of a CTP for SQL...
2013-07-01
668 reads
To those that don’t know me “Natural Born Killers (The Series)” sounds like a very strange choice for a SQL...
2013-06-28 (first published: 2013-06-25)
2,781 reads
We’re blessed in the SQL Server community that there are so many people willing to share work they have done...
2013-06-27
4,068 reads
To those that don’t know me “Natural Born Killers (The Series)” sounds like a very strange choice for a SQL...
2013-06-27
1,926 reads
To those that don’t know me “Natural Born Killers (The Series)” sounds like a very strange choice for a SQL...
2013-06-26
2,663 reads
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
By James Serra
Why this comparison feels confusing If you’re a Power BI report author who’s just...
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
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