다음을 통해 공유


IDTSExecutionMetrics.ExecutionDuration 속성

Returns a value that indicates the amount of time that the container spent in execution, in milliseconds. This property is read-only.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime
어셈블리:  Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)

구문

‘선언
ReadOnly Property ExecutionDuration As Integer 
    Get
‘사용 방법
Dim instance As IDTSExecutionMetrics 
Dim value As Integer 

value = instance.ExecutionDuration
int ExecutionDuration { get; }
property int ExecutionDuration {
    int get ();
}
abstract ExecutionDuration : int
function get ExecutionDuration () : int

속성 값

유형: System.Int32
An Integer that contains the amount of time that the container spent executing. The time is given in milliseconds.

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

참고 항목

참조

IDTSExecutionMetrics 인터페이스

Microsoft.SqlServer.Dts.Runtime 네임스페이스