2015-02-18
1,410 reads
2015-02-18
1,410 reads
Watch this short video on creating a striped backup for your database.
2015-02-18
764 reads
After my last post on parsing the XML, I decided to continue forward and get ready to put the data...
2015-02-18
891 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
310 reads
Would I want unlimited time off? It’s an interesting question. I think I might like something more like a minimum...
2015-02-17
879 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,095 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
226 reads
I ran across an article recently from MSSQLTips by my friend, Brian Kelley. It talks about the ways you can...
2015-02-11
1,354 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
89 reads
2015-02-10
1,652 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