VacuumSchedule Constructor ()
Initializes a new instance of the VacuumSchedule class.
Пространство имен: Microsoft.SqlServer.Management.Nmo
Сборка: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Синтаксис
'Декларация
Public Sub New
public VacuumSchedule ()
public:
VacuumSchedule ()
public VacuumSchedule ()
public function VacuumSchedule ()
Замечания
Изменения текста5 декабря 2005 г.
Изменения образцов кода5 декабря 2005 г.
If you use the default constructor, you must immediately set the Name property and then set the Parent property. When using this constructor, you must also set the Interval and StartTime properties.
Пример
The following examples show how to use this default constructor to define a single data removal period:
// Define a data removal schedule and set properties.
VacuumSchedule vacuumSchedule1 = new VacuumSchedule();
vacuumSchedule1.Name = "vac1";
vacuumSchedule1.Parent = myApplication;
vacuumSchedule1.Interval = new TimeSpan(6, 0, 0);
vacuumSchedule1.StartTime = new TimeSpan(23, 0, 0);
myApplication.VacuumSchedules.Add(vacuumSchedule1);
' Define a data removal schedule and set properties.
Dim vacuumSchedule1 As VacuumSchedule = New VacuumSchedule()
vacuumSchedule1.Name = "vac1"
vacuumSchedule1.Parent = myApplication
vacuumSchedule1.Interval = New TimeSpan(6, 0, 0)
vacuumSchedule1.StartTime = New TimeSpan(23, 0, 0)
myApplication.VacuumSchedules.Add(vacuumSchedule1)
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
VacuumSchedule Class
VacuumSchedule Members
Microsoft.SqlServer.Management.Nmo Namespace