다음을 통해 공유


Application.GetRunningPackages Method

Returns a RunningPackages collection that contains RunningPackage objects. This property is read-only.

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

구문

‘선언
Public Function GetRunningPackages ( _
    server As String _
) As RunningPackages
public RunningPackages GetRunningPackages (
    string server
)
public:
RunningPackages^ GetRunningPackages (
    String^ server
)
public RunningPackages GetRunningPackages (
    String server
)
public function GetRunningPackages (
    server : String
) : RunningPackages

매개 변수

  • server
    The instance of SQL Server that the application is running on.

반환 값

A RunningPackages collection that contains RunningPackage objects that represent all the packages that are currently running on the computer

주의

Administrators see all the 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.

//...
//   Declare and instantiate objects here.
Dim app As New Application
//...
// Create a RunningPackages collection, named pkgs, and fill it
// with the running packages from the application object.
RunningPackages pkgs = app.GetRunningPackages(null);

// Enumerate over each package in the collection and display some data.
foreach(RunningPackage package in pkgs)
    {
        Console.WriteLine("InstanceID: " & package.InstanceID.ToString());
        Console.WriteLine("PackageDescription: " & package.PackageDescription);
        Console.WriteLine("PackageID: " & package.PackageID.ToString());
        Console.WriteLine("PackageName: " & package.PackageName);
        Console.WriteLine("UserName: " & package.UserName);
    }
//   Insert more code here.
'...
'   Declare and instantiate objects here.
Application app = new Application()
'...
' Create a RunningPackages collection, named pkgs, and fill it
' with the running packages from the application object.
Dim pkgs As RunningPackages = app.GetRunningPackages(Nothing) 
 
' Enumerate over each package in the collection and display some data.
For Each package As RunningPackage In pkgs
        Console.WriteLine("InstanceID: "+package.InstanceID)
        Console.WriteLine("PackageDescription: "+package.PackageDescription)
        Console.WriteLine("PackageID: "+package.PackageID)
        Console.WriteLine("PackageName: "+package.PackageName)
        Console.WriteLine("UserName: "+package.UserName)
Next
'   Insert more code here.

스레드 보안

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 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

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