2018-10-19
1,057 reads
2018-10-19
1,057 reads
2018-10-18
777 reads
2018-10-17
588 reads
Steve Jones thinks that DevOps is the wave of the future for most companies. He has a few ways to try and bridge the gap between development and Operations groups.
2018-10-16 (first published: 2015-01-12)
169 reads
2018-10-16
723 reads
2018-10-15
78 reads
When you create a schema, you might accidentally make yourself the owner, which can cause issues later. Learn how to ensure that your schemas aren't owned by transient employees.
2018-10-15
14,175 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-10-15
210 reads
Steve notes that modeling and good database design can't be ignored in DevOps work.
2018-10-15
51 reads
2018-10-15
801 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