Expand Minimize
This topic has not yet been rated - Rate this topic

Database.AutoUpdateStatisticsEnabled Property

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

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SfcPropertyAttribute]
public bool AutoUpdateStatisticsEnabled { get; set; }

Property Value

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

Implements

IDatabaseOptions.AutoUpdateStatisticsEnabled

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

'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)

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.