Day One Key Note at PASS 2012 Summit
This is the 14th PASS Summit, and there are nearly 4000 attendees from 57 countries. There are 127K members in...
2012-11-08
1,028 reads
This is the 14th PASS Summit, and there are nearly 4000 attendees from 57 countries. There are 127K members in...
2012-11-08
1,028 reads
Microsoft has released SQL Server 2012 Service Pack 1 for general availability. SQL Server 2012 SP1 includes all of the...
2012-11-08
1,663 reads
Last Friday, pretty much on impulse, I decided to go to the Microsoft Store in the Park Meadows Mall in...
2012-10-29
2,383 reads
My first training course from Pluralsight, Understanding Server Hardware has just gone live. It is listed in the SQL Server...
2012-10-26
1,490 reads
Here is the October 2012 version of my SQL Server 2008 Diagnostic Information Queries, with some minor tweaks and improvements...
2012-10-19
1,703 reads
Microsoft has released SQL Server 2012 RTM Cumulative Update 4, which is build 11.00.2383.0. By my count, there are 25...
2012-10-16
1,729 reads
Here is the October 2012 version of my SQL Server 2012 Diagnostic Information Queries, with some minor tweaks and improvements...
2012-10-01
1,727 reads
I had the opportunity to present DMV Emergency Room! at SQLSaturday #169 in Denver, Colorado on September 22, 2012.
I...
2012-09-23
1,147 reads
Here is the September 2012 version of my SQL Server 2012 Diagnostic Information Queries, with some minor tweaks and improvements...
2012-09-16
1,218 reads
I recently had a chance to record a 33 minute podcast interview on RunAs Radio #281 with Richard Campbell, where...
2012-09-12
1,182 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