What are delete-connected tables ?
Tables related with a foreign key are called delete-connected because a deletion in the primary key table can affect the contents of the foreign key table. Read more »
Tables related with a foreign key are called delete-connected because a deletion in the primary key table can affect the contents of the foreign key table. Read more »
The self-referencing constraint limits in a single table the changes to a primary key that the related foreign key defines. The foreign key in a self referencing... Read more »
The cascade rule will not allow deletions based on a subselect that references the same table from which the deletions are being made. Read more »
Never. Such processing could produce duplicate values violating entity integrity. Primary keys must be updated one at a time. Read more »
No. The table and its view are created anew, but the programs accessing the view do not need to be changed if the view and attributes accessed remain the same. Read more »
A LIKE table is created by using the LIKE parameter in a CREATE table statement. LIKE tables are typically created for a test environment from the production environment. Read more »