The Cost of Switching
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
254 reads
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
254 reads
2018-11-08
846 reads
I’m only at the PASS Summit for two days, but they will be busy. If you’re at the event and...
2018-11-07
245 reads
2018-11-07
83 reads
2018-11-06
144 reads
2018-11-06
696 reads
I used to use ALT+X to execute queries in SSMS. I spent years with this shortcut, but as I started...
2018-11-05 (first published: 2018-10-23)
2,233 reads
2018-11-05
63 reads
2018-11-05
854 reads
2018-11-02
768 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