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 ()
备注
已更新的文本:2005 年 12 月 5 日
已更新的示例代码:2005 年 12 月 5 日
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)
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
VacuumSchedule Class
VacuumSchedule Members
Microsoft.SqlServer.Management.Nmo Namespace