Using version 2.3.0.6 standard cannot reproduce the problem
Loading data from a text file via odbc into sql server
table creation script
CREATE TABLE [dbo].[U1](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Desc1] [varchar](50) NULL,
[Item] [varchar](50) NULL,
[f1] [numeric](3, 1) NULL,
[D] [datetime] NULL
) ON [PRIMARY]
using desc1 one as update key
nothing is mapped to [ID] field in transformer
Here is the log
Information 18/02/2009 22:04:42 Starting Transformation...
Information 18/02/2009 22:04:42 Preparing Writers...
Information 18/02/2009 22:04:42 Writer: {}, [Table=DEMO.dbo.U1] Writer { } Is Ready
Information 18/02/2009 22:04:42 All Writers are Ready
Information 18/02/2009 22:04:42 Processing Data...
Information 18/02/2009 22:04:42 Reader:{} Found: 1 File(s) to read
Information 18/02/2009 22:04:42 Reader:{} Path: C:\
Information 18/02/2009 22:04:42 Reader:{} Mask: test_data_comma_delimited_small.csv
Information 18/02/2009 22:04:42 Reader:{} Source File: C:\test_data_comma_delimited_small.csv
Information 18/02/2009 22:04:42 Reader:{} Read 4 Line(s)
Information 18/02/2009 22:04:42 Reader:{} Processed : 4 Record(s)
Information 18/02/2009 22:04:42 Reader:{} Rejected : 0 Record(s)
Information 18/02/2009 22:04:42 Reader:{} Records per second : 129.03
Information 18/02/2009 22:04:42 Reader:{} Time Taken : 00:00:00
Information 18/02/2009 22:04:42 Writer: {}, [Table=DEMO.dbo.U1] Inserted : 0 Record(s)
Information 18/02/2009 22:04:42 Writer: {}, [Table=DEMO.dbo.U1] Updated : 4 Record(s)
Information 18/02/2009 22:04:42 Writer: {}, [Table=DEMO.dbo.U1] Deleted : 0 Record(s)
Information 18/02/2009 22:04:42 Writer: {}, [Table=DEMO.dbo.U1] Errors : 0
Information 18/02/2009 22:04:42 Transformation Completed
John