Enough - Database Weekly (Oct. 20, 2008)
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
In this article, Alexander Chigrik looks at some useful undocumented stored procedures that shipped with SQL Server 2000.
With the economy slowing the the world facing a financial crisis, Steve Jones polls the man on the street this Friday.
Getting the number of processor cores that SQL Server is using is not as straitforward as it could be. Enter the affinity mask, bitwise operations and good old fashioned computer science.
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
This paper introduces the new performance and manageability features for data warehousing across all these components. All these features contribute to improved scalability.
Part 1 of this series discussed how to prepare for SQL Server cluster installation on a two-node Windows Server 2003 cluster. This installment explains how to install SQL Server Database Engine on the cluster using the Integrated Installation option.
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
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...
I'm trying to get this string_agg to put all the 'comments' into one result...
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
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