Freigeben über


VacuumSchedule.StartTime Property

Gets or sets the daily time, in Universal Coordinated Time (UTC), for the data removal process to start.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public Property StartTime As TimeSpan
public TimeSpan StartTime { get; set; }
public:
property TimeSpan StartTime {
    TimeSpan get ();
    void set (TimeSpan value);
}
/** @property */
public TimeSpan get_StartTime ()

/** @property */
public void set_StartTime (TimeSpan value)
public function get StartTime () : TimeSpan

public function set StartTime (value : TimeSpan)

Eigenschaftswert

A TimeSpan object that specifies the time of day for the vacuum process to start.

Hinweise

The start time must be specified in UTC.

If you indicate a date as well as a time for this value, Notification Services uses only the time portion. The data removal process starts at the specified time on the current day.

Beispiel

The following examples show how to create a schedule for removing obsolete data and then add the schedule to the collection of vacuum schedules for the application:

VacuumSchedule vacuumSchedule1 = new VacuumSchedule(
    myApplication, "1");
vacuumSchedule1.StartTime = new TimeSpan(23, 0, 0);
myApplication.VacuumSchedules.Add(vacuumSchedule1);
Dim vacuumSchedule1 As VacuumSchedule = _
    New VacuumSchedule(myApplication, "1")
vacuumSchedule1.StartTime = New TimeSpan(23, 0, 0)
myApplication.VacuumSchedules.Add(vacuumSchedule1)

Threadsicherheit

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

VacuumSchedule Class
VacuumSchedule Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Konfigurieren der Datenentfernung
StartTime Element for VacuumSchedule/Schedule (ADF)