Continuous Delivery In Real Life
Everyone wants to know who is actually using Continuous Deliver for their software. Today Steve Jones has a prominent example.
2015-07-16
293 reads
Everyone wants to know who is actually using Continuous Deliver for their software. Today Steve Jones has a prominent example.
2015-07-16
293 reads
2015-07-15
115 reads
Is it more imortant to use the data or your experience? Does one have more weight than the other?
2015-07-14
131 reads
Last year at this time I was nearing the end of my sabbatical. I’ve been using the Timehop app on...
2015-07-14
725 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-13
750 reads
We’ve got more Workshops coming this fall from Redgate Software to help you get the most out of our tools...
2015-07-13
753 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-13 (first published: 2015-07-02)
2,387 reads
2015-07-13
170 reads
Steve Jones thinks that we are not doing a great job of harnessing the brain power of our entire teams.
2015-07-13 (first published: 2011-01-06)
312 reads
2015-07-13
1,565 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