2015-02-09
1,616 reads
2015-02-09
1,616 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
206 reads
2015-02-06
1,641 reads
2015-02-05
1,905 reads
2015-02-04
2,451 reads
2015-02-03
1,789 reads
I wrote about downloading the SQL Saturday data with Powershell, and that has worked well. However, I also need to...
2015-02-02
931 reads
I’m traveling next week to the SQL Konferenz in Germany, and then on to Red Gate in the UK.
However,...
2015-01-30
1,367 reads
A quick post, and a good reminder of something that can be a pain. I had to do a quick...
2015-01-29
1,394 reads
We are managing more and more systems and databases all the time. To Steve Jones, that means we must be able to work at scale.
2015-01-29
154 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