2018-10-05
674 reads
2018-10-05
674 reads
As part of some presentation work, I wanted to demonstrate some onboarding of new developers. To that end, as part...
2018-10-04
355 reads
2018-10-04
60 reads
2018-10-04
770 reads
2018-10-03
43 reads
2018-10-03
567 reads
Is an index change equivalent to a code change? Steve Jones asks the question and has a few thoughts.
2018-10-02
175 reads
Learn how you can determine which connection is using the Dedicated Administrator Connection.
2018-10-02
3,057 reads
2018-10-02
741 reads
With the need to remove older data, Steve thinks natural keys may be obsolete.
2018-10-01
219 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