Database.ChangeTrackingRetentionPeriodUnits Property
Gets or sets the unit type for a retention period value.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.Deploy)> _
Public Property ChangeTrackingRetentionPeriodUnits As RetentionPeriodUnits
Get
Set
'Usage
Dim instance As Database
Dim value As RetentionPeriodUnits
value = instance.ChangeTrackingRetentionPeriodUnits
instance.ChangeTrackingRetentionPeriodUnits = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.Deploy)]
public RetentionPeriodUnits ChangeTrackingRetentionPeriodUnits { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::Deploy)]
public:
virtual property RetentionPeriodUnits ChangeTrackingRetentionPeriodUnits {
RetentionPeriodUnits get () sealed;
void set (RetentionPeriodUnits value) sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.Deploy)>]
abstract ChangeTrackingRetentionPeriodUnits : RetentionPeriodUnits with get, set
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.Deploy)>]
override ChangeTrackingRetentionPeriodUnits : RetentionPeriodUnits with get, set
final function get ChangeTrackingRetentionPeriodUnits () : RetentionPeriodUnits
final function set ChangeTrackingRetentionPeriodUnits (value : RetentionPeriodUnits)
Property Value
Type: Microsoft.SqlServer.Management.Smo.RetentionPeriodUnits
A RetentionPeriodUnits type that specifies the units for the Retention Period value.
Implements
Remarks
You can select Minutes, Hours, Days, Weeks, Months or Years. The default value is Days. The minimum retention period is 1 minute. There is no maximum retention period.
See Also