2015-11-27
1,243 reads
2015-11-27
1,243 reads
2015-11-26
1,677 reads
Steve Jones reminds us that we must manage our time, and learn to do so despite the demands placed on us.
2015-11-25
545 reads
This SQL Prompt tip shows you how code highlighting makes it easier to find which items match up with each other.
2015-11-25 (first published: 2015-01-26)
3,314 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as#SQLNewBloggers.
Awhile...
2015-11-25
1,365 reads
2015-11-25
1,180 reads
JP Morgan suffers the largest data breach for a financial institution, but Steve Jones doesn't think this record will stand for long.
2015-11-24
186 reads
2015-11-24
1,757 reads
2015-11-23
131 reads
2015-11-23
1,154 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