2007-05-22
1,448 reads
2007-05-22
1,448 reads
2007-05-21
1,511 reads
2007-05-18
1,391 reads
2007-05-17
1,370 reads
2007-05-16
1,696 reads
2007-05-15
1,429 reads
2007-05-14
2,825 reads
It's been an interestng week here at the Microsoft BI Conference in Seattle and a first for me happened this...
2007-05-11
1,471 reads
2007-05-11
1,411 reads
Steve Jones is in Seattle for the first Microsoft BI Conference and offers some thoughts on the event.
2007-05-10
2,680 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