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


Свойство Job.OwnerLoginName

Gets or sets the owner of the job.

Пространство имен:  Microsoft.SqlServer.Management.Smo.Agent
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property OwnerLoginName As String 
    Get 
    Set
'Применение
Dim instance As Job 
Dim value As String 

value = instance.OwnerLoginName

instance.OwnerLoginName = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string OwnerLoginName { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ OwnerLoginName {
    String^ get ();
    void set (String^ value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member OwnerLoginName : string with get, set
function get OwnerLoginName () : String 
function set OwnerLoginName (value : String)

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

Тип: System.String
A String value that specifies the logon name of the job owner.

Замечания

Microsoft SQL Server establishes ownership rules for jobs. Some permissions default to a job owner, and ownership forms one part of SQL Server access control.

Set the OwnerLoginName property to change ownership for the referenced job. The value must specify an existing SQL Server database user. Permission to change job ownership defaults to members of the sysadmin group.

Примеры

The following code example creates a job and gives ownership of the job to a different login.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
jb.OwnerLoginName = "OperatorName"

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
$jb.Create()
$jb.OwnerLoginName = "OperatorName"

См. также

Справочник

Job Класс

Пространство имен Microsoft.SqlServer.Management.Smo.Agent

Другие ресурсы

Задачи автоматизированного администрирования (агент SQL Server)

sp_add_job (Transact-SQL)

Планирование автоматических административных задач в агенте SQL Server