Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 540
Raj More Avatar asked Aug 27 '09 19:08

Raj More


1 Answers

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 the package was created.

StartTime is the time that the package began executing.

As described here.

like image 99
Eric Avatar answered Oct 03 '22 01:10

Eric