A Broken Linux VM
I have no idea if this is the best thing, but I went to boot up a Linux VM today...
2018-06-04
312 reads
I have no idea if this is the best thing, but I went to boot up a Linux VM today...
2018-06-04
312 reads
2018-06-04
127 reads
2018-06-04
1,119 reads
I really like the dbatools project. This is a series of PowerShell cmdlets that are built by the community and...
2018-06-01 (first published: 2018-05-25)
2,429 reads
2018-06-01
710 reads
It’s actually a simple procedure, but I thought I’d write a short note to help me remember. The procedure is...
2018-05-31
480 reads
2018-05-31
695 reads
2018-05-30
75 reads
2018-05-30
732 reads
I travel around, and as a result, I may find myself accessing my Azure databases from different locations. Since it’s...
2018-05-29
429 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