Your Portfolio
Putting together a portfolio allows you the chance to showcase what you're good at doing. Steve Jones thinks this might be a good thing for technical people.
2015-08-18
137 reads
Putting together a portfolio allows you the chance to showcase what you're good at doing. Steve Jones thinks this might be a good thing for technical people.
2015-08-18
137 reads
2015-08-18
1,399 reads
At Redgate Software, we have a progression of the stages of a database development pipeline. These are the various ways...
2015-08-17 (first published: 2015-08-06)
2,121 reads
Is a software deployment responsible for a plane crash? That's a scary thought.
2015-08-17
121 reads
This weekend I’ll be attending SQL Saturday #403 in Louisville, KY. If you’re in the area, think about taking a...
2015-08-17
874 reads
2015-08-17
1,602 reads
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
149 reads
2015-08-14
1,266 reads
We’ve got another DLM workshop on Database Source Control taking place in New York City on August 27. It’s in...
2015-08-13 (first published: 2015-08-06)
1,265 reads
2015-08-13
1,388 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