2018-11-29
73 reads
2018-11-29
73 reads
2018-11-29
1,144 reads
You can register today and save for the next few days. It’s only £799 for the full SQL Bits 2019...
2018-11-28
316 reads
When you know there's a problem, it's better to solve it early rather than late.
2018-11-28
53 reads
2018-11-28
776 reads
Finding training opportunities can be a challenge in many organizations.
2018-11-27
57 reads
2018-11-27
1,036 reads
Learning about new jobs is a good way to help decide if you want to change careers.
2018-11-26
73 reads
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
2018-11-26
70 reads
2018-11-26
1,174 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