Share via


AutoCreateStatisticsEnabled propriété

Gets a Boolean property value that specifies whether statistics are automatically created for the database.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute> _
Public Property AutoCreateStatisticsEnabled As Boolean
    Get
    Set
'Utilisation
Dim instance As Database
Dim value As Boolean

value = instance.AutoCreateStatisticsEnabled

instance.AutoCreateStatisticsEnabled = value
[SfcPropertyAttribute]
public bool AutoCreateStatisticsEnabled { get; set; }
[SfcPropertyAttribute]
public:
virtual property bool AutoCreateStatisticsEnabled {
    bool get () sealed;
    void set (bool value) sealed;
}
[<SfcPropertyAttribute>]
abstract AutoCreateStatisticsEnabled : bool with get, set
[<SfcPropertyAttribute>]
override AutoCreateStatisticsEnabled : bool with get, set
final function get AutoCreateStatisticsEnabled () : boolean
final function set AutoCreateStatisticsEnabled (value : boolean)

Valeur de la propriété

Type : System. . :: . .Boolean
A Boolean value that specifies the whether statistics are automatically created for the database.
If True, statistics are automatically created for the database. Otherwise, False (default).

Implémente

IDatabaseOptions. . :: . .AutoCreateStatisticsEnabled

Notes

The AutoCreateStatisticsEnabled property is equivalent to setting the AUTO_CREATE_STATISTICS ON option in the ALTER DATABASE Transact-SQL statement.

Exemples

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display the current options for statistics.
Console.WriteLine("Automatically create statistics = " + _
db.AutoCreateStatisticsEnabled.ToString)
Console.WriteLine("Automatically update statistics = " + _
db.AutoUpdateStatisticsEnabled.ToString)