2015-06-01
201 reads
2015-06-01
201 reads
I wrote a short piece the other day trying to show how one can use tSQLt to test code. It’s...
2015-05-29 (first published: 2015-05-20)
5,669 reads
This week Steve Jones asks the questions about advanced data analysis and statistics you might be using in your applications.
2015-05-29
201 reads
2015-05-29
1,377 reads
Looking at statistics and data to draw conclusions can be hard. Steve Jones comments on an interesting way of analyzing data from TED.
2015-05-28
178 reads
I was reading Dwain Camps’ article on Time Slots and thought it was a very interesting solution to a problem...
2015-05-27
895 reads
A challenge from United intrigues Steve Jones. How many other companies would make a challenge like this?
2015-05-26
190 reads
I wrote recently on how to alter a column in SQL Server from NULL to NOT NULL in a simple...
2015-05-25
661 reads
2015-05-25
81 reads
2015-05-25
2,128 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