次の方法で共有


Default Property (FileGroup)

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The Default property indicates the filegroup used when no filegroup is specified as part of table or index creation.

構文

object
.Default [=value]

Parts

  • object
    AN expression that evaluates to an object in the Applies To list
  • value
    TRUE or FALSE

Data Type

Boolean

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetDefault(LPBOOL pRetVal);
HRESULT SetDefault(BOOL NewValue);

解説

If TRUE, the referenced filegroup is used to implement table or index data storage if a table or index is created and no filegroup is specified.

If FALSE, the referenced filegroup is not used as the default in table and index creation. The filegroup can be specified by name to direct creation.

Applies To:

FileGroup Object