This article shows how to use the SQL Server 2008 Upgrade Advisor Tool to improve the SQL Server 2008 upgrade experience
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
This article talks about the sharing of knowledge in forums such as SQLServerCentral.
This SQL School video shows just how you can sort the data in your SSIS packages.
The Checksum Transformation computes a hash value, the checksum, across one or more columns, returning the result in the Checksum output column.
Thomas has been running SQL Server 2008 live in production for over 1 year as part of the Microsoft Early Adopter Program. Below is the full interview I conducted with him about his experience with SQL Server 2008.
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