views:

146

answers:

1
+4  Q: 

SSIS timestamps

Can anyone provide details on what the three of these mean?

  • System::ContainerStartTime
  • System::CreationDate
  • System::StartTime

The documentation for these three is virtually non-existent.

+4  A: 

ContainerStartTime is the timestamp for when a task's immediate parent container (such as a Sequence Container or a For Each Loop) has started executing.

CreationDate is whenever that task was created.

StartTime is the time that the task began executing.

As described here.

Eric
@Eric: Tx. Do you have a URL for this documentation where I can read more?
Raj More