Hi,
we have this problem : in sqlserver 2005/2008 we create some new tables with an integer identity column as the primary key : [Id] [int] IDENTITY(1,1) NOT NULL.
When loading data in this table via an SSIS dataflow task, SSIS should automatically fill the Id column. It does, BUT it starts at 0 in stead of 1. After that, when we delete all rows and do a checkident(reseed,0), we reload and it starts from 1 as it should. Any idea how we could get it right from the first time ?