When Would You Go?
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
38 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
38 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
34 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
48 reads
I started working through some labs for my SQL Server 2008 class and one of the labs was on the...
2008-02-12
1,154 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
92 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
44 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
48 reads
Windows 2008 RTMs, a change from the SQL Server support team, and a Jump Start for Katmai.
2008-02-11
49 reads
Using the Identity Property might be one of the more debated features of SQL Server. This editorial was originally published on Mar 5, 2008. It is being re-run as Steve is on vacation.
2008-02-11
287 reads
Windows 2008 RTMs, a change from the SQL Server support team, and a Jump Start for Katmai.
2008-02-09
38 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