TBD
Manage Constraints: An integrity constraint defined on the table can be in one of the following states
- enable, validate (validate is default if constraint is enabled)
- enable, novalidate
- disable, validate
- disable novalidate (novalidate is default if constrant is disabled)
TBD
Create and use temporary tables
The definition of a temporary table is visible to all sessions, but the data in a temporary table is visible only to the session that inserts data into the table. There are two types of temporary tables:
- Session specific
- The db truncates the table when you terminate the session
- Specified by ON COMMIT PRESERVE ROWS clause
- Transaction specific
- The db truncates the table after each commit.
- Specified by ON COMMIT DELETE ROWS clause.
No comments:
Post a Comment