IDatabaseMaintenanceFacet Interface

Interface that defined methods and properties for the database maintenance facet.

This API is not CLS-compliant. 

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<CLSCompliantAttribute(False)> _
<DisplayNameKeyAttribute("IDatabaseMaintenanceFacet_Name")> _
<DisplayDescriptionKeyAttribute("IDatabaseMaintenanceFacet_Desc")> _
<EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)> _
<TypeConverterAttribute(GetType(LocalizableTypeConverter))> _
<LocalizedPropertyResourcesAttribute("Microsoft.SqlServer.Management.Smo.LocalizableResources")> _
Public Interface IDatabaseMaintenanceFacet _
    Inherits IDmfFacet
'Usage
Dim instance As IDatabaseMaintenanceFacet
[CLSCompliantAttribute(false)]
[DisplayNameKeyAttribute("IDatabaseMaintenanceFacet_Name")]
[DisplayDescriptionKeyAttribute("IDatabaseMaintenanceFacet_Desc")]
[EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)]
[TypeConverterAttribute(typeof(LocalizableTypeConverter))]
[LocalizedPropertyResourcesAttribute("Microsoft.SqlServer.Management.Smo.LocalizableResources")]
public interface IDatabaseMaintenanceFacet : IDmfFacet
[CLSCompliantAttribute(false)]
[DisplayNameKeyAttribute(L"IDatabaseMaintenanceFacet_Name")]
[DisplayDescriptionKeyAttribute(L"IDatabaseMaintenanceFacet_Desc")]
[EvaluationModeAttribute(AutomatedPolicyEvaluationMode::CheckOnSchedule)]
[TypeConverterAttribute(typeof(LocalizableTypeConverter))]
[LocalizedPropertyResourcesAttribute(L"Microsoft.SqlServer.Management.Smo.LocalizableResources")]
public interface class IDatabaseMaintenanceFacet : IDmfFacet
[<CLSCompliantAttribute(false)>]
[<DisplayNameKeyAttribute("IDatabaseMaintenanceFacet_Name")>]
[<DisplayDescriptionKeyAttribute("IDatabaseMaintenanceFacet_Desc")>]
[<EvaluationModeAttribute(AutomatedPolicyEvaluationMode.CheckOnSchedule)>]
[<TypeConverterAttribute(typeof(LocalizableTypeConverter))>]
[<LocalizedPropertyResourcesAttribute("Microsoft.SqlServer.Management.Smo.LocalizableResources")>]
type IDatabaseMaintenanceFacet =  
    interface
        interface IDmfFacet
    end
public interface IDatabaseMaintenanceFacet extends IDmfFacet

The IDatabaseMaintenanceFacet type exposes the following members.

Properties

  Name Description
Public property DataAndBackupOnSeparateLogicalVolumes A Boolean value that indicates if data and backup are on separate logical volumes.
Public property LastBackupDate Gets a datetime for the last database backup.
Public property LastLogBackupDate Gets a datetime for the last log backup.
Public property PageVerify Gets or sets the type of page integrity check that SQL Server performs when reading database pages
Public property ReadOnly Gets or sets a Boolean value that specifies if the database is read-only.
Public property RecoveryModel Gets or set the database recovery model.
Public property Status Gets a DatabaseStatus object.

Top