2018-07-12
107 reads
2018-07-12
107 reads
Next week is SQL Saturday #729 – Lousiville and I’m making the trip. This will be my third or fourth trip...
2018-07-12
411 reads
2018-07-12
1,152 reads
2018-07-11
767 reads
In this piece, we find out about a business issue that can occur when using key value pairs in your database to describe information about other entities.
2018-07-10
603 reads
2018-07-10
70 reads
I got the news of my MVP award last week. I’m honored that Microsoft feels I do quite a bit...
2018-07-09
340 reads
2018-07-09
77 reads
2018-07-09
1,650 reads
I used to use Crashplan. This was about $150 a year, but I could to 5 machines. I used to...
2018-07-06 (first published: 2018-06-29)
3,004 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