Agendando tarefas administrativas automáticas no SQL Server Agent

No SMO, o SQL Server Agent é representado pelos seguintes objetos:

  • O objeto JobServer tem três coleções de trabalhos, alertas e operadores.

  • O objeto OperatorCollection representa uma lista de pagers, endereços de email e operadores net send que podem ser notificados sobre eventos automaticamente pelo Microsoft SQL Server Agent.

  • O objeto AlertCollection representa uma lista de circunstâncias, tais como eventos do sistema ou condições de desempenho que são monitoradas pelo SQL Server.

  • O objeto JobCollection é um pouco mais complexo. Ele representa uma lista de tarefas com várias etapas que são executadas em agendas especificadas. As etapas e as informações da agenda são armazenadas nos objetos JobStep e JobSchedule.

Os objetos do SQL Server Agent estão no namespace Microsoft.SqlServer.Management.Smo.Agent.

Exemplos

Para usar qualquer exemplo de código fornecido, será necessário escolher o ambiente de programação, o modelo de programação e a linguagem de programação para criar o seu aplicativo. Para obter mais informações, consulte Como criar um projeto SMO do Visual Basic no Visual Studio .NET ou Como criar um projeto SMO do Visual C# no Visual Studio .NET.

  1. Para programas que usam o SQL Server Agent, inclua a instrução Imports para qualificar o namespace do Agent. Insira a instrução após outras instruções Imports, antes de qualquer declaração no aplicativo, como:

Imports Microsoft.SqlServer.Management.Smo

Imports Microsoft.SqlServer.Management.Common

Imports Microsoft.SqlServer.Management.Smo.Agent

Criando um trabalho com etapas e uma agenda no Visual Basic

Este exemplo de código cria um trabalho com etapas e uma agenda e informa um operador.

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Define an Operator object variable by supplying the Agent (parent JobServer object) and the name in the constructor.
Dim op As [Operator]
op = New [Operator](srv.JobServer, "Test_Operator")
'Set the Net send address.
op.NetSendAddress = "Network1_PC"
'Create the operator on the instance of SQL Agent.
op.Create()
'Define a Job object variable by supplying the Agent and the name arguments in the constructor and setting properties.
Dim jb As Job
jb = New Job(srv.JobServer, "Test_Job")
'Specify which operator to inform and the completion action.
jb.OperatorToNetSend = "Test_Operator"
jb.NetSendLevel = CompletionAction.Always
'Create the job on the instance of SQL Agent. 
jb.Create()
'Define a JobStep object variable by supplying the parent job and name arguments in the constructor.
Dim jbstp As JobStep
jbstp = New JobStep(jb, "Test_Job_Step")
jbstp.Command = "Test_StoredProc"
jbstp.OnSuccessAction = StepCompletionAction.QuitWithSuccess
jbstp.OnFailAction = StepCompletionAction.QuitWithFailure
'Create the job step on the instance of SQL Agent.
jbstp.Create()
'Define a JobSchedule object variable by supplying the parent job and name arguments in the constructor. 
Dim jbsch As JobSchedule
jbsch = New JobSchedule(jb, "Test_Job_Schedule")
'Set properties to define the schedule frequency, and duration.
jbsch.FrequencyTypes = FrequencyTypes.Daily
jbsch.FrequencySubDayTypes = FrequencySubDayTypes.Minute
jbsch.FrequencySubDayInterval = 30
Dim ts1 As TimeSpan
ts1 = New TimeSpan(9, 0, 0)
jbsch.ActiveStartTimeOfDay = ts1
Dim ts2 As TimeSpan
ts2 = New TimeSpan(17, 0, 0)
jbsch.ActiveEndTimeOfDay = ts2
jbsch.FrequencyInterval = 1
Dim d As Date
d = New Date(2003, 1, 1)
jbsch.ActiveStartDate = d
'Create the job schedule on the instance of SQL Agent.
jbsch.Create()

Criando um trabalho com etapas e uma agenda no Visual C#

Este exemplo de código cria um trabalho com etapas e uma agenda e informa um operador.

//Connect to the local, default instance of SQL Server. 
{ 
Server srv = default(Server); 
srv = new Server(); 
//Define an Operator object variable by supplying the Agent (parent JobServer object) and the name in the constructor. 
Operator op = default(Operator); 
op = new Operator(srv.JobServer, "Test_Operator"); 
//Set the Net send address. 
op.NetSendAddress = "Network1_PC"; 
//Create the operator on the instance of SQL Server Agent. 
op.Create(); 
//Define a Job object variable by supplying the Agent and the name arguments in the constructor and setting properties. 
Job jb = default(Job); 
jb = new Job(srv.JobServer, "Test_Job"); 
//Specify which operator to inform and the completion action. 
jb.OperatorToNetSend = "Test_Operator"; 
jb.NetSendLevel = CompletionAction.Always; 
//Create the job on the instance of SQL Server Agent. 
jb.Create(); 
//Define a JobStep object variable by supplying the parent job and name arguments in the constructor. 
JobStep jbstp = default(JobStep); 
jbstp = new JobStep(jb, "Test_Job_Step"); 
jbstp.Command = "Test_StoredProc"; 
jbstp.OnSuccessAction = StepCompletionAction.QuitWithSuccess; 
jbstp.OnFailAction = StepCompletionAction.QuitWithFailure; 
//Create the job step on the instance of SQL Agent. 
jbstp.Create(); 
//Define a JobSchedule object variable by supplying the parent job and name arguments in the constructor. 
JobSchedule jbsch = default(JobSchedule); 
jbsch = new JobSchedule(jb, "Test_Job_Schedule"); 
//Set properties to define the schedule frequency, and duration. 
jbsch.FrequencyTypes = FrequencyTypes.Daily; 
jbsch.FrequencySubDayTypes = FrequencySubDayTypes.Minute; 
jbsch.FrequencySubDayInterval = 30; 
TimeSpan ts1 = default(TimeSpan); 
ts1 = new TimeSpan(9, 0, 0); 
jbsch.ActiveStartTimeOfDay = ts1; 
TimeSpan ts2 = default(TimeSpan); 
ts2 = new TimeSpan(17, 0, 0); 
jbsch.ActiveEndTimeOfDay = ts2; 
jbsch.FrequencyInterval = 1; 
System.DateTime d = default(System.DateTime); 
d = new System.DateTime(2003, 1, 1); 
jbsch.ActiveStartDate = d; 
//Create the job schedule on the instance of SQL Agent. 
jbsch.Create(); 
} 

Criando um alerta no Visual Basic

Este exemplo de código cria um alerta que é disparado por uma condição de desempenho. A condição deve ser fornecida em um formato específico:

ObjectName|CounterName|Instance|ComparisionOp|CompValue

É necessário um operador para a notificação de alerta. O tipo Operator exige colchetes porque o operator é uma palavra-chave do Visual Basic.

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Define an Alert object variable by supplying the SQL Agent and the name arguments in the constructor.
Dim al As Alert
al = New Alert(srv.JobServer, "Test_Alert")
'Specify the performance condition string to define the alert.
al.PerformanceCondition = "SQLServer:General Statistics|User Connections||>|3"
'Create the alert on the SQL Agent.
al.Create()
'Define an Operator object variable by supplying the SQL Agent and the name arguments in the constructor.
Dim op As [Operator]
op = New [Operator](srv.JobServer, "Test_Operator")
'Set the net send address.
op.NetSendAddress = "NetworkPC"
'Create the operator on the SQL Agent.
op.Create()
'Run the AddNotification method to specify the operator is notified when the alert is raised.
al.AddNotification("Test_Operator", NotifyMethods.NetSend)

Criando um alerta no Visual C#

Este exemplo de código cria um alerta que é disparado por uma condição de desempenho. A condição deve ser fornecida em um formato específico:

ObjectName|CounterName|Instance|ComparisionOp|CompValue

É necessário um operador para a notificação de alerta. O tipo Operator exige colchetes porque o operator é uma palavra-chave do Visual C#.

//Connect to the local, default instance of SQL Server. 
{ 
Server srv = default(Server); 
srv = new Server(); 
//Define an Alert object variable by supplying the SQL Server Agent and the name arguments in the constructor. 
Alert al = default(Alert); 
al = new Alert(srv.JobServer, "Test_Alert"); 
//Specify the performance condition string to define the alert. 
al.PerformanceCondition = "SQLServer:General Statistics|User Connections||>|3"; 
//Create the alert on the SQL Agent. 
al.Create(); 
//Define an Operator object variable by supplying the SQL Server Agent and the name arguments in the constructor. 
Operator op = default(Operator); 
op = new Operator(srv.JobServer, "Test_Operator"); 
//Set the net send address. 
op.NetSendAddress = "NetworkPC"; 
//Create the operator on the SQL Agent. 
op.Create(); 
//Run the AddNotification method to specify the operator is notified when the alert is raised. 
al.AddNotification("Test_Operator", NotifyMethods.NetSend); 
}

Permitindo o acesso de usuários ao subsistema usando uma conta proxy no Visual Basic

Este exemplo de código mostra como permitir o acesso de um usuário a um subsistema especificado através do método AddSubSystem do objeto ProxyAccount.

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Declare a JobServer object variable and reference the SQL Agent.
Dim js As JobServer
js = srv.JobServer
'Define a Credential object variable by supplying the parent server and name arguments in the constructor.
Dim c As Credential
c = New Credential(srv, "Proxy_accnt")
'Set the identity to a valid login represented by the vIdentity string variable. 
'The sub system will run under this login.
c.Identity = vIdentity
'Create the credential on the instance of SQL Server.
c.Create()
'Define a ProxyAccount object variable by supplying the SQL Agent, the name, the credential, the description arguments in the constructor.
Dim pa As ProxyAccount
pa = New ProxyAccount(js, "Test_proxy", "Proxy_accnt", True, "Proxy account for users to run job steps in command shell.")
'Create the proxy account on the SQL Agent.
pa.Create()
'Add the login, represented by the vLogin string variable, to the proxy account. 
pa.AddLogin(vLogin)
'Add the CmdExec subsytem to the proxy account. 
pa.AddSubSystem(AgentSubSystem.CmdExec)
'Now users logged on as vLogin can run CmdExec job steps with the specified credentials.

Permitindo o acesso de usuários ao subsistema usando uma conta proxy no Visual C#

Este exemplo de código mostra como permitir o acesso de um usuário a um subsistema especificado usando o método AddSubSystem do objeto ProxyAccount.

//Connect to the local, default instance of SQL Server. 
{ 
Server srv = default(Server); 
srv = new Server(); 
//Declare a JobServer object variable and reference the SQL Server Agent. 
JobServer js = default(JobServer); 
js = srv.JobServer; 
//Define a Credential object variable by supplying the parent server and name arguments in the constructor. 
Credential c = default(Credential); 
c = new Credential(srv, "Proxy_accnt"); 
//Set the identity to a valid login represented by the vIdentity string variable. 
//The sub system will run under this login. 
c.Identity = vIdentity; 
//Create the credential on the instance of SQL Server. 
c.Create(); 
//Define a ProxyAccount object variable by supplying the SQL Server Agent, the name, the credential, the description arguments in the constructor. 
ProxyAccount pa = default(ProxyAccount); 
pa = new ProxyAccount(js, "Test_proxy", "Proxy_accnt", true, "Proxy account for users to run job steps in command shell."); 
//Create the proxy account on the SQL Agent. 
pa.Create(); 
//Add the login, represented by the vLogin string variable, to the proxy account. 
pa.AddLogin(vLogin); 
//Add the CmdExec subsytem to the proxy account. 
pa.AddSubSystem(AgentSubSystem.CmdExec); 
} 
//Now users logged on as vLogin can run CmdExec job steps with the specified credentials.