2018-07-27
897 reads
2018-07-27
897 reads
Steve Jones notes that the Moneyball phenomenon has come to managers and perhaps a little training and data can help find us better managers.
2018-07-26 (first published: 2014-12-10)
171 reads
2018-07-26
963 reads
This is a series of posts on what my day is like. I don’t do a lot of production technical...
2018-07-25
941 reads
2018-07-25 (first published: 2014-12-18)
287 reads
2018-07-25
682 reads
One way to make deployments smoother is to use a second system, but that's a challenge for databases, as Steve Jones notes.
2018-07-24 (first published: 2014-12-03)
144 reads
2018-07-24
877 reads
Steve discusses the ways that you can ensure your IT career continues to move forward.
2018-07-23
120 reads
Another break for me. This might actually be the first year I use all my vacation allowance.
In any case, I’m...
2018-07-23
843 reads
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
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...
I'm trying to get this string_agg to put all the 'comments' into one result...
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
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