Ok, sin embargo se podia solucionar en el mismo paso, sin bloquear de nuevo la tabla...
Código:
'**********************************************************************
' Visual Basic Transformation Script
'************************************************************************
' Copy each source column to the destination column
Function Main()
if ( Year( DTSSource("campo1") ) <> 1900 ) Then
DTSDestination("campo1") = DTSSource("campo1")
else
DTSDestination("campo1") = nothing
End If
Main = DTSTransformStat_OK
End Function
Saludos!