A Virtual Database World
Steve Jones talks about virtualization with databases, but not in the way you might think.
Steve Jones talks about virtualization with databases, but not in the way you might think.
Change Data Capture is a new feature of SQL Server 2008 that can help you better handle your ETL systems. New author Suresh Yaram brings us an introduction to CDC and how it can be setup in your environment.
In this SQL School video, MVP Brian Knight dives into the Execute SQL task in Integration Services. You will learn how to add parameters to this task to customize its behavior.
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
Auditing data changes in your production environment is very important, especially if you are dealing with confidential information.
I'm designing a table and I've decided to create an auto-generated primary key value as opposed to creating my own scheme or using natural keys. I see that SQL Server offers globally unique identifiers (GUIDs) as well as identities to create these values. What are the pros and cons of these approaches?
Agile, or maybe even hyper-agile. Steve Jones talks about some challenges in the web 2.0 world.
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