2015-01-09
1,683 reads
2015-01-09
1,683 reads
I ran across a great article on Connection Strings from my good friend, Allen White (b, t, c), recently. Quite...
2015-01-08
1,020 reads
Verizon is taking their cloud service offline for maintenance for two days. Steve Jones doesn't think that sounds good.
2015-01-08
214 reads
2015-01-08
2,450 reads
One of the important things is to be able to recover your environment. That doesn't mean you need to know everything about SQL Server and potential disasters, but you should know their affect on your situation.
2015-01-07
122 reads
2015-01-07
2,341 reads
When you deploy software, what do you do if things don't go well? Steve Jones talks about a few options you might have.
2015-01-06
126 reads
In a recent post, I described an attack against a privileged account using a simple SQL Injection technique of updating...
2015-01-05
847 reads
What helps people be successful in a company? Perhaps a little analytic work can help employers determine this.
2015-01-05
218 reads
I started this on Jan 1, but with family commitments, I ended up delaying it until today. I wrote about...
2015-01-02
881 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