Learn about SQL Source Control in Redgate University
I love the SQL Source Control product from Redgate. It’s not perfect, and it can be slow to run at...
2018-09-17
238 reads
I love the SQL Source Control product from Redgate. It’s not perfect, and it can be slow to run at...
2018-09-17
238 reads
Steve talks about the disparate regulations we face for data privacy and protection.
2018-09-17
40 reads
2018-09-17
784 reads
This week Steve wonders if you have a process for setting up your new instances.
2018-09-14
67 reads
2018-09-14
636 reads
2018-09-13
841 reads
Trying to pick the perfect schedule at a conference is fraught with issues.
2018-09-12
41 reads
2018-09-12
560 reads
I love New York. Every time I get to travel to the city, I get excited and look forward to...
2018-09-11
314 reads
2018-09-11
84 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