2019-01-02
603 reads
2019-01-02
603 reads
2019-01-01
77 reads
2019-01-01
830 reads
2018-12-31
73 reads
2018-12-31
78 reads
2018-12-28
45 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-12-27 (first published: 2018-12-05)
2,496 reads
It’s the end of the year, and I’m looking back at the events and travels I’ve had this year. I...
2018-12-27
291 reads
Steve talks about the project underway to port the SQLServerCentral codebase.
2018-12-27
130 reads
One of the best ways to improve software is to evaluate it sooner, which includes static analysis. We don't have many tools for database code, but we need more.
2018-12-26
36 reads
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...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
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
Comments posted to this topic are about the item Everything is the right question...
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