Share via


IDTSExecutionMetrics.ExecutionDuration Property

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

Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Syntax

'Declaration
ReadOnly Property ExecutionDuration As Integer
int ExecutionDuration { get; }
property int ExecutionDuration {
    int get ();
}
/** @property */
int get_ExecutionDuration ()
function get ExecutionDuration () : int

Property Value

An Integer that contains the amount of time that the container spent executing. The time is given in milliseconds.

Example

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

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

IDTSExecutionMetrics Interface
IDTSExecutionMetrics Members
Microsoft.SqlServer.Dts.Runtime Namespace