2005-05-24
2,315 reads
2005-05-24
2,315 reads
2005-05-23
1,939 reads
2005-05-20
1,742 reads
The 2005 PASS Summit is coming up in September and this is the best place to learn about SQL Server 2005 in the US. Steve Jones gives you a few reasons and arguments for your boss to let you go.
2005-05-19
4,255 reads
2005-05-19
1,083 reads
2005-05-18
1,146 reads
2005-05-17
1,870 reads
2005-05-13
1,174 reads
2005-05-12
2,091 reads
2005-05-11
1,736 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