2007-05-10
1,170 reads
2007-05-10
1,170 reads
2007-05-09
1,386 reads
2007-05-08
1,056 reads
2007-05-07
2,515 reads
2007-05-04
1,563 reads
I know writing and working on SQL Server is hard. It's a huge project and just managing that is hard....
2007-05-04
1,376 reads
2007-05-03
1,116 reads
2007-05-02
1,258 reads
Despite being without power for a few days, a hectic scramble at work to get things done, and kids off...
2007-05-01
1,472 reads
2007-05-01
1,511 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