Поделиться через


RunningPackage.UserName Property

Returns the user name used to log on to the server.

Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Синтаксис

'Декларация
Public ReadOnly Property UserName As String
public string UserName { get; }
public:
property String^ UserName {
    String^ get ();
}
/** @property */
public String get_UserName ()
public function get UserName () : String

Значение свойства

A String that contains a user name.

Пример

The following example shows how to retrieve the collection of running packages from the Application object and iterate over each package, displaying the InstanceID, PackageID, PackageDescription, PackageName, and UserName.

static void Main(string[] args)
        {
            Application app = new Application();
            // Create a RunningPackages collection, pkgs, and fill it
            // with the running packages from the application object.
            RunningPackages pkgs = app.GetRunningPackages("yourserver");
            // Enumerate over each package in the collection and
            // display some properties.
            foreach (RunningPackage p in pkgs)
            {
                Console.WriteLine("InstanceID: " + p.InstanceID);
                Console.WriteLine("PackageDescription: " + p.PackageDescription);
                Console.WriteLine("PackageID: " + p.PackageID);
                Console.WriteLine("PackageName: " + p.PackageName);
                Console.WriteLine("UserName: " + p.UserName);
            }
//   more code here...
static void Main(string() args)
        {
            Dim app As Application =  New Application() 
            ' Create a RunningPackages collection, pkgs, and fill it
            ' with the running packages from the application object.
            Dim pkgs As RunningPackages =  app.GetRunningPackages("yourserver") 
            ' Enumerate over each package in the collection and
            ' display some properties.
            Dim p As RunningPackage
            For Each p In pkgs
                Console.WriteLine("InstanceID: " + p.InstanceID)
                Console.WriteLine("PackageDescription: " + p.PackageDescription)
                Console.WriteLine("PackageID: " + p.PackageID)
                Console.WriteLine("PackageName: " + p.PackageName)
                Console.WriteLine("UserName: " + p.UserName)
            Next
'   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.

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

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