2015-01-23
2,618 reads
2015-01-23
2,618 reads
Technology shouldn't just be a cost sink in an organization, at least that's what Steve Jones thinks.
2015-01-22
116 reads
2015-01-22
2,425 reads
There's one word that can make a difference in how much you like your job. Steve Jones has a few thoughts today.
2015-01-21
222 reads
2015-01-21
2,570 reads
I showcased a demo recently that looked at a potential issue with an application where a user used a simple...
2015-01-20 (first published: 2015-01-12)
6,538 reads
2015-01-20
2,219 reads
Steve Jones talks about procrastination today and how you might not want to do that with your SQL Servers.
2015-01-19
113 reads
I was going to call this an upgraded HDD, but that’s not right. Technically it’s a drive update, but really...
2015-01-19
2,045 reads
There’s a neat switch in SQL Compare that lets you build rollback scripts. It looks like this:
I’ve used this before...
2015-01-16 (first published: 2015-01-07)
6,566 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