2019-01-14
463 reads
2019-01-14
463 reads
Last year I set up a PiHole server on my RaspberryPi to help block some ads and malicious stuff (tracking,...
2019-01-11 (first published: 2019-01-03)
2,394 reads
Security is important, and Steve wonders if any of us have a list of things we do that improve security.
2019-01-11
81 reads
2019-01-11
1,022 reads
2019-01-10
108 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2019-01-10
280 reads
2019-01-10
925 reads
Failure is one of the ways we get better as software developers. Does that apply to DBAs?
2019-01-09
57 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-01-09
354 reads
I like participating in the Advent of Code each year, though my participation often varies wildly as life gets in...
2019-01-09 (first published: 2018-12-28)
2,153 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