Apologies and Testing
First, apologies to the Database Daily readers. I'll include one in
next week's issue as well, but the links didn't work...
2005-11-15
1,851 reads
First, apologies to the Database Daily readers. I'll include one in
next week's issue as well, but the links didn't work...
2005-11-15
1,851 reads
SQL 2005 provides a the new max specifier to be used with varbinary, varchar and nvarchar data types. You can...
2005-11-12
1,286 reads
If you haven't seen it, I started a poll in the editorial today. Check it out and give you answer:...
2005-11-11
1,541 reads
Today's the day!!!
SQL Server is being released as I type this and I'm online listening to the keynote from Steve...
2005-11-07
1,461 reads
In general I have been a Sony fan for most of my life, starting with the Walkmans they brought out...
2005-11-04
1,373 reads
If anyone is interested, we are looking for people that are interested
in doing some technical editing for our magazine, the...
2005-11-02
1,403 reads
I wrote the editorial today about this, but SQL Server 2005 RTM'd yesterday!!!
If you an on MSDN Subscriber, you can...
2005-10-28
1,389 reads
Living in the D.C metro area it is difficult to avoid politics,
policies and policy-makers. After 9/11 it became well nigh
impossible ...
2005-10-28
1,383 reads
My editorial
this past week had to do with a great uproar on the interviewing piece
that ran Monday. I felt I...
2005-10-20
1,443 reads
It was busy at work after returning from PASS which means my work day continued for 2 or 3 hours after I got...
2005-10-16
1,286 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