2019-01-25
647 reads
2019-01-25
647 reads
The RDBMS works great for many situations, but is it ever fast enough to meet all your needs?
2019-01-24
100 reads
There is a myth that DDL statements can't be rolled back. This article tests and debunks the myth.
2019-01-24
6,671 reads
2019-01-24
934 reads
Azure SQL Data Warehouse gets some improvements, and Steve has a few comments.
2019-01-23
72 reads
One of the things that I think about DevOps is that it’s really hard to focus on the hard things...
2019-01-23
257 reads
2019-01-23
625 reads
2019-01-22
84 reads
2019-01-22
650 reads
2019-01-21
723 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