2014-12-29
1,902 reads
2014-12-29
1,902 reads
2014-12-26
1,891 reads
2014-12-25
112 reads
2014-12-25
2,296 reads
2014-12-24
1,524 reads
2014-12-23
2,218 reads
2014-12-22
1,520 reads
I’ve got a semi complicated desktop setup, with multiple monitors, lots of USB stuff, and a few ways to record...
2014-12-19
890 reads
2014-12-19
111 reads
I was scanning Twitter the other day and saw a note from someone that they had written a query using...
2014-12-18 (first published: 2014-12-11)
7,878 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