共用方式為


Checks Collection

未來的 Microsoft SQL Server 發行版本將不再提供此功能。請避免在新的開發工作中使用此功能,並計劃修改目前使用此功能的應用程式。

The Checks collection contains Check objects that expose Microsoft SQL Server integrity constraints defined on the columns of a table.

顯示目前物件的 SQL-DMO 物件模型

Methods

Add Method

Remove Method (Collections)

Refresh Method

 

備註

With the Checks collection, you can:

  • Define an integrity constraint on a SQL Server column.
  • Remove an existing constraint from a SQL Server column.

SQL Server integrity constraints can be defined as part of a CREATE TABLE or ALTER TABLE statement.

When creating a SQL Server table using the Table object, an empty Checks collection is created as part of the Table object creation. Adding Check objects to the Checks collection adds constraint definition text to the CREATE TABLE statement generated when the Table object is added to the Tables collection of a Database object.

If a Table object references an existing SQL Server table, changes to the Checks collection generate ALTER TABLE statements.

For more information about creating integrity constraints, see Check Object.

To remove a CHECK constraint

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

  2. Use the BeginAlter method of the Table object to mark the beginning of changes to the SQL Server table.

  3. Use the Remove method of the Checks collection of a Table object. Indicate the targeted integrity constraint using the constraint name or the ordinal location in the collection, as in:

    oTables("Order Details").Checks.Remove("CK_Order Details_Discount")
    
  4. Use the DoAlter method of the Table object to submit the changed table definition to SQL Server.

請參閱

其他資源

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

說明及資訊

取得 SQL Server 2005 協助