Поделиться через


Свойство DtsContainer.StartTime

Returns the time that the container began execution. This property is read-only.

Пространство имен:  Microsoft.SqlServer.Dts.Runtime
Сборка:  Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)

Синтаксис

'Декларация
<BrowsableAttribute(False)> _
Public ReadOnly Property StartTime As DateTime 
    Get
'Применение
Dim instance As DtsContainer 
Dim value As DateTime 

value = instance.StartTime
[BrowsableAttribute(false)]
public DateTime StartTime { get; }
[BrowsableAttribute(false)]
public:
virtual property DateTime StartTime {
    DateTime get () sealed;
}
[<BrowsableAttribute(false)>]
abstract StartTime : DateTime
[<BrowsableAttribute(false)>]
override StartTime : DateTime
final function get StartTime () : DateTime

Значение свойства

Тип: System.DateTime
A DateTime value that indicates when the container started running.

Реализует

IDTSExecutionMetrics.StartTime

Примеры

The following code example assumes a package named pkg has been created. The package is executed, and the start time, stop time, and duration of the run is recorded. The variables are created after the package is run to capture the information. The pkg object can be replaced by any container, task, or object that inherits from DtsContainer, as DtsContainer inherits the IDTSExecutionMetrics interface.

pkg.Execute();
DateTime dtStart = pkg.StartTime;
DateTime dtStop = pkg.StopTime;
int pgkDuration = pkg.ExecutionDuration;
pkg.Execute()
Dim dtStart As DateTime =  pkg.StartTime 
Dim dtStop As DateTime =  pkg.StopTime 
Dim pgkDuration As Integer =  pkg.ExecutionDuration

См. также

Справочник

DtsContainer Класс

Пространство имен Microsoft.SqlServer.Dts.Runtime