How Often Does Production Drift?
Database drift is the difference between two database schemas. Today Steve Jones discusses the concept and wonders how often it happens.
2014-11-24
144 reads
Database drift is the difference between two database schemas. Today Steve Jones discusses the concept and wonders how often it happens.
2014-11-24
144 reads
This week Steve Jones wonders if you're taking advantage of the changes in the T-SQL language.
2014-11-21
717 reads
Steve Jones completed a task this year that he's rarely completed in the past.
2014-11-20
115 reads
Last night was my annual presentation at the Colorado Springs SQL Server User Group. I try to make sure I...
2014-11-20
925 reads
I agree. Continuous Integration has issues in the real world, at least it probably does in many companies. The more...
2014-11-20
802 reads
My first speaking date of the new year is scheduled. I’ll be at the SQL Server Konference 2015, near Frankfurt,...
2014-11-19
869 reads
There's an interesting idea that exists for lightweight, application separation on a host that's different from virtualization. It's Docker, and Steve Jones talks about it today.
2014-11-19
263 reads
It pays to continuously learn more about your job. SQL Server is so large, it really is a lifelong effort to drive yourself forward to master more and more.
2014-11-17
194 reads
As winter approaches, many of us get ready in our personal lives, but Steve Jones notes that we might want to make sure we have regular preparation taking place on our systems for difficult times.
2014-11-17
75 reads
This Friday Steve Jones is looking to see what data you're tracking about your life.
2014-11-14
147 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