Difference between revisions of "SET CHECK Column Constraint"

From Recital Documentation Wiki
Jump to: navigation, search
 
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
=SET CHECK=
 
 
 
==Class==
 
Column Constraints
 
 
 
 
==Purpose==
 
==Purpose==
 
Column constraint to validate a change to the value of a column
 
Column constraint to validate a change to the value of a column
Line 21: Line 14:
 
A constraint is used to define rules that help to provide data integrity.  Column constraints are specific to the column name specified.  You must have ALTER privilege on the table.  The table will be locked for EXCLUSIVE use during the operation.
 
A constraint is used to define rules that help to provide data integrity.  Column constraints are specific to the column name specified.  You must have ALTER privilege on the table.  The table will be locked for EXCLUSIVE use during the operation.
  
The SET CHECK column constraint is used to validate any changes made to the value of a column.  The <condition> specified must evaluate to True (.T.) for the modification operation to succeed.  If the <condition> evaluates to False (.F.) the column value remains unchanged and the ERROR column constraint message is displayed.  If the ERROR column constraint has not been defined, a default error message is displayed.
+
The SET CHECK column constraint is used to validate any changes made to the value of a column.  The <condition> specified must evaluate to True (.T.) for the modification operation to succeed.  If the <condition> evaluates to False (.F.) the column value remains unchanged and the [[ERROR_Column_Constraint| ERROR]] column constraint message is displayed.  If the [[ERROR_Column_Constraint| ERROR]] column constraint has not been defined, a default error message is displayed.
  
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
set sql to recital
+
ALTER TABLE customer;
exec sql
+
  ALTER COLUMN timeref;
ALTER TABLE customer ALTER COLUMN timeref SET CHECK validtime(timeref);
+
  SET CHECK validtime(timeref)
use customer
+
edit
+
 
</code>
 
</code>
  
  
 
==Products==
 
==Products==
Recital Database Server, Recital Mirage Server, Recital Terminal Developer
+
Recital, Recital Server
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:SQL]]
 
[[Category:SQL]]

Latest revision as of 11:40, 22 December 2009

Purpose

Column constraint to validate a change to the value of a column


Syntax

SET CHECK <condition>


See Also

ALTER TABLE, CONSTRAINTS, CREATE TABLE


Description

A constraint is used to define rules that help to provide data integrity. Column constraints are specific to the column name specified. You must have ALTER privilege on the table. The table will be locked for EXCLUSIVE use during the operation.

The SET CHECK column constraint is used to validate any changes made to the value of a column. The <condition> specified must evaluate to True (.T.) for the modification operation to succeed. If the <condition> evaluates to False (.F.) the column value remains unchanged and the ERROR column constraint message is displayed. If the ERROR column constraint has not been defined, a default error message is displayed.


Example

ALTER TABLE customer;
  ALTER COLUMN timeref;
  SET CHECK validtime(timeref)


Products

Recital, Recital Server