Hi,
There are a couple of ways to do this
a) assuming that your target table has a datetime field for the import date, set the default value of this field to
and the default value of the source field to be 'PICK' for example
b) in the dts package on the source for the transform, make the source a sql statement rather than a direct table/view source. The sql statement will be along the lines of
Code:
select *, sysdate, 'PICK' from table
where sysdate is the pick sql command for the current system date
c) in the transformations for the job, highlight the 2 destination fields for import date and source, click new and select ActiveX script
Code:
DTSDestination("import date") = Now
DTSDestination("source") = "PICK"
This will give you a transform line with no source
It is possible to mix and match the above, eg a default date value on the table with an ActiveX script for source
Hope this helps
**************************************************************
Rock is Dead (Long Live Paper and Scissors)**************************************************************