次の方法で共有


AutoCreateStatisticsEnabled プロパティ

データベースに対して統計を自動的に作成するかどうかを示す Boolean プロパティ値を取得します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute> _
Public Property AutoCreateStatisticsEnabled As Boolean
    Get
    Set
'使用
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)

プロパティ値

型: System. . :: . .Boolean
データベースに対して統計を自動的に作成するかどうかを示す Boolean 値です。
True の場合、データベースに関する統計が自動的に作成されます。False (既定値) の場合、データベースに関する統計は自動的に作成されません。

実装

IDatabaseOptions. . :: . .AutoCreateStatisticsEnabled

説明

AutoCreateStatisticsEnabled プロパティは、ALTER DATABASE Transact-SQL ステートメントで AUTO_CREATE_STATISTICS ON オプションを設定した場合と同じになります。

使用例

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