Compartilhar via


Propriedade do RDL Job.OriginatingServer

Gets the name of the server that is acting as the master server in a multiserver job.

Namespace:  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property OriginatingServer As String 
    Get
'Uso
Dim instance As Job 
Dim value As String 

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

Valor da propriedade

Tipo: System.String
A String value that specifies the name of the master server where the job definition originates from.

Comentários

The property returns the string (local) for jobs created on the referenced instance of Microsoft SQL Server. For jobs assigned to the referenced instance of SQL Server by another server acting as a master server, the property returns the master server name.

Exemplos

The following code example creates a job and displays the name of originating server.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
Console.WriteLine(jb.OriginatingServer);

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()
Write-Host $jb.OriginatingServer

Consulte também

Referência

Job Classe

Namespace Microsoft.SqlServer.Management.Smo.Agent

Outros recursos

Tarefas de administração automatizadas (SQL Server Agent)

sp_add_job (Transact-SQL)

Agendando tarefas administrativas automáticas no SQL Server Agent