共用方式為


DtsContainer.StartTime Property

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

命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

語法

'宣告
<BrowsableAttribute(False)> _
Public ReadOnly Property StartTime As DateTime
[BrowsableAttribute(false)] 
public DateTime StartTime { get; }
[BrowsableAttribute(false)] 
public:
virtual property DateTime StartTime {
    DateTime get () sealed;
}
/** @property */
public final DateTime get_StartTime ()
public final function get StartTime () : DateTime

屬性值

A DateTime value that indicates when the container started running.

範例

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

執行緒安全性

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.

平台

開發平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

目標平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

請參閱

參考

DtsContainer Class
DtsContainer Members
Microsoft.SqlServer.Dts.Runtime Namespace