Go Open
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
This article examines the Recovery Model options used by SQL Server 2008 and the various methods that can be used to backup a database such as Differential and Transaction Logging. In addition, Transaction Logs, the mechanism that makes Recovery Models possible will be introduced.
Previous versions of SQL Server were not that great at keeping track of object dependencies. The reason for this was due to the fact that all object dependencies were tracked by the ID of the object, which meant that the object had to exist first.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
Removing redundant dimension members from a Tree filter in PerformancePoint 2007 by using a simple MDX query.
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