Partilhar via


Propriedade do RDL JobSchedule.ActiveStartDate

Gets or sets the date and time when the schedule starts.

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

Sintaxe

'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property ActiveStartDate As DateTime 
    Get 
    Set
'Uso
Dim instance As JobSchedule 
Dim value As DateTime 

value = instance.ActiveStartDate

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

Valor da propriedade

Tipo: System.DateTime
A DateTime value that specifies the date and time when the job schedule starts.

Comentários

Scheduled SQL Server Agent jobs can have start and end dates. A job is run only between the start date and time and the end date and time. Alter the ActiveStartDate property to set the date when the schedule goes into effect.

If the ActiveStartDate property has not been set, the DateTime.MinValue is returned, which is Jan 1, 1999.

The scheduled start date depends on when the schedule is assigned to the job. For example, you create a schedule that runs every other Monday at 8:00 A.M. If you create a job at 10:00 A.M. on Monday, March 3, 2008, the schedule start date is Monday, March 17, 2008. If you create another job on Tuesday, March 4, 2008, the schedule start date is Monday, March 10, 2008.

Exemplos

Agendando tarefas administrativas automáticas no SQL Server Agent

Consulte também

Referência

JobSchedule Classe

Namespace Microsoft.SqlServer.Management.Smo.Agent

Outros recursos

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

sp_add_schedule (Transact-SQL)