Choose your database:
AnySQL
MySQL
MS SQL Server
PostgreSQL
SQLite
Firebird
Oracle
SQL Anywhere
DB2
MaxDB

Subscribe to our news:
Partners
Testimonials
Bernhard Hartl: "Oracle Maestro works great - thank you for that really good product and the very good User Interface".
Laurits Sogaard Nielsen: "Oracle Maestro (and also MS SQL Maestro) are the perfect substitutes for TOAD and in some ways also much better products (they are much cheaper, and the support is fast and easy). I'm looking forward to getting much more experience with both products, that already now have proven themselves to be fantastic".

More

Add your opinion

Oracle Maestro online help

Prev Return to chapter overview Next

Checks

A check constraint is the most generic constraint type. It allows you to specify that the value in a certain column must satisfy a Boolean (truth-value) expression.

 

Check Properties allows you to add a new check constraint or edit an existing one. It is available from Table Editor, or from the corresponding nodes of the explorer tree.

 

 

Checks are created within Check Properties. In order to run the wizard you should either

 

open the table in Table Editor and the Checks tab there;
press the Insert key or select the Add New Check... item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar)

or

select the table in the explorer tree and use the Create New Check... popup menu item

or

select the table Checks node or any check within the table in the explorer tree and use the Add New Check... popup menu item.

 

 

 

Checks are edited within the Check Properties dialog window. In order to open the dialog you should either

 

open the table in Table Editor the Checks tab there;
press the Enter key or select the Edit Check item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar)

or

select the check to edit in the explorer tree and use the Edit Check popup menu item.

 

You can change the name of the check using the Rename Check dialog. To open the dialog you should either

 

select the check to rename in the explorer tree;
select the Rename Check item from the popup menu

or

open the table in Table Editor and the Checks tab there;
select the check to rename;
select the Rename Check item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar).

 

 

 

To drop the check:

 

select the check to drop in the explorer tree;
select the Drop Check item from the popup menu

or

open the table in Table Editor and the Checks tab there;
press the Delete key or select the Drop Check item from the popup menu (alternatively, you may use the corresponding link of the Navigation Bar)

 

and confirm dropping in the dialog window.

 

 


 

Name

Here you can set and edit the check name.
 

Condition

Specify an expression producing a Boolean result which new or updated rows must satisfy for an insert or update operation to succeed. Expressions evaluating to True or Unknown succeed. In case any row of an insert or update operation produce a FALSE result an error exception is raised and the insert or update does not alter the database.

 

Enabled

When checked, the check is enforced.

 

Validated

The behavior of the clause always depends on whether the constraint is enabled or disabled, either explicitly or by default.

Enabled validated constraint specifies that all old and new data also complies with the constraint. An enabled validated constraint guarantees that all data is and will continue to be valid.
Enabled novalidated constraint ensures that all new DML operations on the constrained data comply with the constraint. This clause does not ensure that existing data in the table complies with the constraint and therefore does not require a table lock.
Disabled validated constraint disables the constraint and drops the index on the constraint, but keeps the constraint valid. This feature is most useful in data warehousing situations, because it lets you load large amounts of data while also saving space by not having an index.
Disabled novalidated constraint signifies that Oracle makes no effort to maintain the constraint (because it is disabled) and cannot guarantee that the constraint is true (because it is not being validated).

 

Defferable

The option indicates whether or not, in subsequent transactions, constraint checking can be deferred until the end of the transaction using the SET CONSTRAINT(S) statement.

 

Deffered

Check the option to indicate that Oracle should check this constraint at the end of subsequent transactions. Otherwise Oracle should check this constraint at the end of each subsequent SQL statement.



Prev Return to chapter overview Next