The Magazine
I've been busy working on the magazine among other things and am struggling a bit. I had quite a few...
2006-10-18
1,512 reads
I've been busy working on the magazine among other things and am struggling a bit. I had quite a few...
2006-10-18
1,512 reads
2006-10-17
1,136 reads
2006-10-16
965 reads
2006-10-13
1,552 reads
We've been profiling quite a few members of the SQL Server development team and this time we get a few minutes with Ian Jose, one of the query processing team.
2006-10-12
3,175 reads
2006-10-12
1,453 reads
2006-10-11
1,020 reads
2006-10-10
895 reads
2006-10-09
1,072 reads
2006-10-06
943 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