2014-11-10
1,557 reads
2014-11-10
1,557 reads
2014-11-07
81 reads
2014-11-07
1,761 reads
2014-11-06
112 reads
2014-11-06
2,073 reads
Today was my pre-con with Allan Hirt on AlwaysOn. It was great, and I learned a few things. I knew...
2014-11-05
685 reads
We open with video, quite long. It’s two parts. The first being a community thanks and embracing of the community....
2014-11-05
1,089 reads
We’re live at the opening keynote for the PASS Summit, on Wednesday, Nov 5, 2014. Tom LaRock opens the conference...
2014-11-05
851 reads
2014-11-04
99 reads
2014-11-04
1,771 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