Having a Little Fun at SQL Server Central
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
87 reads
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
87 reads
A look back at SQL Server Central after 25 years from founder Brian Knight.
2026-02-20
1,406 reads
Steve talks about some of the charitable work at SQL Server Central.
2026-02-20
67 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
63 reads
2026-02-06
114 reads
2026-02-02
154 reads
Casino Night from SQL Server Central is coming back to the PASS Data Community Summit.
2024-09-11
415 reads
SQL Server Central is changing their policy to respond to the increased use of AI technologies.
2024-02-02
344 reads
We are adding a consent form to the SQL Server Central website to allow our cookies.
2024-01-10
1,393 reads
The SQL Server Central database servers are being upgraded on Thursday, Nov 2.
2023-11-01
658 reads
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
By Steve Jones
los vidados – n. the half-remembered acquaintances you knew years ago, who you might...
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
I'm trying to get this string_agg to put all the 'comments' into one result...
Comments posted to this topic are about the item Vectors in SQL Server 2025
Comments posted to this topic are about the item Odd Sequences
What values are returned from this code?
CREATE SEQUENCE NumericSequence
AS NUMERIC(5,1)
START WITH 1.0
INCREMENT BY 0.1;
GO
SELECT NEXT VALUE FOR NumericSequence
GO
SELECT NEXT VALUE FOR NumericSequence
GO See possible answers