sql server - SSIS - add upload date column after SSIS upload -


i'm uploading daily csv file via ssis package sql server table , each time insert date column states when upload complete. i'm thinking of putting in execute sql task after data flow task uses alter table query getdate().

each time run ssis package before csv data uploaded previous data moved archive table there won't worry of overwriting data each time insert column.

thanks comments.

what have done put in execute sql task , used code

update [dbo].[cm25_current] set [upload date] = (getdate()); 

Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -