InterviewSolution
| 1. |
What Are The Integrity Constraints In Oracle? |
|
Answer» An integrity constraint is a declarative way to define a business RULE for a column of a table. An integrity constraint is a statement about a table’s data that is always true:
Integrity constraints are defined with a table and are stored as part of the table’s definition, centrally in the database’s data dictionary, so that all database applications must adhere to the same set of rules. If a rule changes, it need only be changed once at the database level and not many times for each application. The following integrity constraints are supported by Oracle:
An integrity constraint is a declarative way to define a business rule for a column of a table. An integrity constraint is a statement about a table’s data that is always true: Integrity constraints are defined with a table and are stored as part of the table’s definition, centrally in the database’s data dictionary, so that all database applications must adhere to the same set of rules. If a rule changes, it need only be changed once at the database level and not many times for each application. The following integrity constraints are supported by Oracle: |
|