次の方法で共有


Check Object

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

The Check object represents the attributes of a single Microsoft SQL Server integrity constraint.

現在のオブジェクトを表す SQL-DMO オブジェクト モデル

Properties

Checked Property

Name Property

ExcludeReplication Property

Text Property

Methods

Remove Method (Objects)

Script Method

解説

A SQL Server integrity constraint can be defined as part of a CREATE TABLE statement or can be added to, or removed from, a table as part of an ALTER TABLE statement.

With the Check object, you can:

  • Define a new integrity constraint for a SQL Server table.
  • Remove an existing constraint from a SQL Server table.
  • Generate a Transact-SQL script to document an existing integrity constraint.

The Name property represents a constraint name. It is character data and must be unique within a SQL Server database.

To create a SQL Server integrity constraint

  1. Create a Check object.

  2. Set the Name property.

  3. Set the Text property to define the constraint.

    Adding the Check object to its containing collection generates the appropriate CREATE statement. Specify only the integrity test condition in the Text property.

  4. Set the ExcludeReplication property.

  5. Add the Check object to the Checks collection of a Table object.

To remove a SQL Server integrity constraint

  1. Get the appropriate Table object from the Tables collection of a Database object.

  2. Use the BeginAlter method of the Table object to mark the start of alterations on the SQL Server table.

  3. Get the appropriate Check object from the Checks collection of the Table object.

  4. Use the Remove method of the Check object to drop its integrity constraint from the SQL Server table.

  5. Use the DoAlter method of the Table object to submit the change to the instance of SQL Server.

参照

その他の技術情報

ALTER TABLE (Transact-SQL)
CREATE TABLE (Transact-SQL)

ヘルプおよび情報

SQL Server 2005 の参考資料の入手