Application::GetRunningPackages Method (String^)
Returns a RunningPackages collection that contains RunningPackage objects. This property is read-only.
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Parameters
- server
-
Type:
System::String^
The instance of SQL Server that the application is running on.
Return Value
Type: Microsoft.SqlServer.Dts.Runtime::RunningPackages^A RunningPackages collection that contains the RunningPackage objects that represent all the packages that are currently executing on the computer.
Administrators see all packages that are currently running on the computer; other users see only those packages that they have started.
The following code example shows how to retrieve the collection of running packages from the application object, and then iterate over each package, displaying the InstanceID, PackageID, PackageDescription, PackageName, and UserName.
Show: