Protecting Our Stream of Data
We can't protect against all hacks, but can we prove they weren't our fault?
2018-08-28
46 reads
We can't protect against all hacks, but can we prove they weren't our fault?
2018-08-28
46 reads
At Redgate, we release a lot of changes to our products. In fact, this is the “About Redgate” slide I’ve...
2018-08-28
1,116 reads
2018-08-28
779 reads
2018-08-27
857 reads
As my kids get older and I spend less time with them, I look forward to visiting new countries. While...
2018-08-24
468 reads
Today Steve asks about the fun times you might have had at work and captured in pictures.
2018-08-24
98 reads
2018-08-24
980 reads
2018-08-23
65 reads
2018-08-23
864 reads
2018-08-22
124 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