25 Years Later: What SQLServerCentral Meant to Me
A look back at SQL Server Central after 25 years from founder Brian Knight.
2026-02-20
1,297 reads
A look back at SQL Server Central after 25 years from founder Brian Knight.
2026-02-20
1,297 reads
Steve talks about some of the charitable work at SQL Server Central.
2026-02-20
59 reads
This is part of a few memories from the founders of SQL Server Central, celebrating 25 years of operation this month. When we started SQL Server Central, our goal was to build a great resource that helped other people advance in their careers and also made some money. Our decisions in building the site were […]
2026-02-13
60 reads
2026-02-06
100 reads
2026-02-02
144 reads
Casino Night from SQL Server Central is coming back to the PASS Data Community Summit.
2024-09-11
414 reads
SQL Server Central is changing their policy to respond to the increased use of AI technologies.
2024-02-02
341 reads
We are adding a consent form to the SQL Server Central website to allow our cookies.
2024-01-10
1,392 reads
The SQL Server Central database servers are being upgraded on Thursday, Nov 2.
2023-11-01
657 reads
We are reducing the sending of the SQL Server Central newsletter to three days a week.
2021-04-30 (first published: 2021-04-26)
1,179 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