2018-11-20
802 reads
2018-11-20
802 reads
2018-11-19
77 reads
2018-11-19
859 reads
There are a limited number of extensions available for Azure Data Studio (ADS), but one that came out early is...
2018-11-16 (first published: 2018-11-02)
1,894 reads
2018-11-16
88 reads
2018-11-16
791 reads
2018-11-15
713 reads
Some controversy over a new Code of Conduct has risen. Steve thinks we just need treat each other well.
2018-11-14
185 reads
2018-11-14
637 reads
2018-11-13
113 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