The Uninteresting But Necessary Work
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
74 reads
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
74 reads
2018-09-26
578 reads
Today I hosted a webinar with Gene Kim (@RealGeneKim) and we had a fantastic discussion. I was slightly star struck...
2018-09-25
246 reads
If you have a schema you want to retire, here's a method for moving all objects inside that schema to a new one.
2018-09-25
47,516 reads
The announcement of the next version of SQL Server excites Steve.
2018-09-25
324 reads
2018-09-25
773 reads
2018-09-24
77 reads
One of the more annoying things I’ve found in SSIS/SSMS is trying to import CSV files for some quick analysis....
2018-09-21 (first published: 2018-09-12)
2,294 reads
2018-09-20
57 reads
2018-09-20
834 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