Job.OwnerLoginName Property
Gets or sets the owner of the job.
Namespace: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
<SfcPropertyAttribute> _
Public Property OwnerLoginName As String
Get
Set
'Usage
Dim instance As Job
Dim value As String
value = instance.OwnerLoginName
instance.OwnerLoginName = value
[SfcPropertyAttribute]
public string OwnerLoginName { get; set; }
[SfcPropertyAttribute]
public:
property String^ OwnerLoginName {
String^ get ();
void set (String^ value);
}
[<SfcPropertyAttribute>]
member OwnerLoginName : string with get, set
function get OwnerLoginName () : String
function set OwnerLoginName (value : String)
Property Value
Type: System.String
A String value that specifies the logon name of the job owner.
Remarks
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.
See Also