The Design Investment
How much of an investment should you make in learning design? Steve Jones talks about why we should learn how to do it right.
2015-03-11 (first published: 2010-09-29)
330 reads
How much of an investment should you make in learning design? Steve Jones talks about why we should learn how to do it right.
2015-03-11 (first published: 2010-09-29)
330 reads
2015-03-11
1,814 reads
2015-03-10
1,853 reads
2015-03-04
1,863 reads
2015-03-03
1,822 reads
2015-03-02
791 reads
2015-03-02
1,506 reads
This week Steve Jones wonders if you'd be willing to use Express edition in production situations.
2015-02-27
135 reads
I’ve been using tSQLt a bit to do some testing and one of the things I’ve tested is standards for...
2015-02-27 (first published: 2015-02-12)
8,014 reads
Today Steve Jones talks about development, and finding ways to make small changes that improve your code.
2015-02-26
207 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