Jim Work
Hey all!
Okay, this may not be the right forum, but I *think* it's an SSIS Question. If it belongs elsewhere, point the way and I'll repost it correctly.
I'm importing a flat file, and then I want to check to see if a column of the input matches a column of a reference table.
INSERT INTO BATCH
CASE
WHEN IN-REC-TYPE == BATCH.REC-TYPE
THEN (REC-TYPE, CYMD) VALUES (IN-REC-TYPE, IN-CYMD)
ELSE BLAHBLAHBLAH
Okay, so it doesn't like that bit in red up there. Is there some other fast way to do this In other words, how do i refer to my input columns within an OLE DB Command block
Thanks!
Jim Work