2018-06-15
953 reads
2018-06-15
953 reads
Steve talks about the importance of test data and how to get it in development environments.
2018-06-14
65 reads
I’ve been trying to get time to play with Docker more. I had it setup on my old laptop and...
2018-06-14
1,112 reads
2018-06-14
894 reads
2018-06-13
91 reads
I’m slightly surprised that there haven’t been more invitations about Azure, with the main development branch of SQL Server being...
2018-06-12
329 reads
Steve talks about Machine Learning Services in SQL Server and whether using this is a good idea.
2018-06-12
178 reads
Analyzing performance often requires you to understand what is normal and what is not. Steve talks about the importance of baselines.
2018-06-11
72 reads
2018-06-11
155 reads
2018-06-11
783 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