Redgate Releases Sept 2018–Practicing DevOps
At Redgate, we build tools to help you build software in the entire DevOps cycle. In fact, I love this...
2018-10-01
297 reads
At Redgate, we build tools to help you build software in the entire DevOps cycle. In fact, I love this...
2018-10-01
297 reads
With lots of news coming out of Ignite, Steve talks about a few of the changes.
2018-10-01
49 reads
2018-10-01
744 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-28 (first published: 2018-09-20)
6,438 reads
I’ve never been to Pittsburgh. Actually, in all of my speaking and traveling, I don’t think I’ve even flown through...
2018-09-28
967 reads
One of the very interesting parts of my job is that I run into UK keyboards on a regular basis....
2018-09-28
1,010 reads
2018-09-28
643 reads
Thanks for improving the string or binary data truncated error message.
2018-09-27
183 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,129 reads
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
74 reads
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...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
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
Comments posted to this topic are about the item Everything is the right question...
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