Changes to the SSIS Slowly Changing Dimension Component
Probably not the kind of change you're expecting. I've recently been contacted by the Kimball Group, and they've asked me...
Probably not the kind of change you're expecting. I've recently been contacted by the Kimball Group, and they've asked me...
You need to provide data validation at the server level for complex strings like phone numbers, email addresses, etc. You may also need to do data cleanup / standardization before moving it from source to target. Although SQL Server provides a fair number of string functions, the code developed with these built-in functions can become complex and hard to maintain or reuse.
What happens when you have bad IT people working in your company? Steve Jones says that they always will be around, but we might not want to enable them to continue in this business when we find them.
This article provides a practical example of minimizing the growth of a distribution database.
Depending on your anticipated workload and which SQL Server components you have installed, there are a number of instance level...
A free day of training in Denver on Mar 5, 2011. Learn about Windows, .NET, SQL Server, Sharepoint and more. Spread the word to people you know in the area.
Steve Jones talks a little about the 2011 MVP Summit and what the annual event means to the average DBA.
Learn how you can setup Database Mirroring using disparate file paths and drive letters.
Earlier in the month I shared with you 10 Things That Every DBA Should Do and so it only seems natural...
A Thousand Men Marching Still Only March As Fast As One Man.
la·ten·cy - Computers . the time required to locate the first bit or character in a storage location, expressed as access timeminus word time.
Often when talking to people...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers