What is Referential Integrity?

Answer Posted / iain hambleton

Expanding on the two previous explanations, imagine any
parent/child relationship, for example a manufacturer and
product relationship that a retailer would have in it's
inventory system. Obviously any product must have been
manufactured by someone (i.e. a product cannot exist
without a manufacturer). Imagine then if in the inventory
system above, some muppet deleted records from the
manufacturer table. This would lead to products existing
in the system without a corresponding manufacturer record -
this is logically inconsistent data (as it does not fit
with the real world situation that the data is trying to
model).

If a foreign key constraint were to have been placed
between the two tables, then the muppet from above would
either have been unable to delete the manufacturer records
without first visiting the products table and deleting all
products that particular manufactures made or when the
manufacturers were deleted, all products linked to them
would have been automatically deleted also (this latter
situation is called a cascade delete – powerful and
dangerous stuff).

Either way, the remaining data would have been left
consistent with the real world manufacturer/product
relationship (though of course large swathes of data may
still have been deleted).

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is meant by truncate in sql?

528


Can we perform dml on view?

556


How do rank () and dense_rank () differ?

524


Do prepared statements prevent sql injection?

532


What is the difference between an inner and outer join?

541






Why do we need view in sql?

553


What are its different types of dbms?

542


What are primary key and foreign key and how they work?

556


How do you change a value in sql?

556


What are packages in pl sql and also explain its advantages?

536


What is an inner join sql?

549


What are the different dcl commands in sql?

565


How does one use sql*loader to load images, sound clips and documents? : aql loader

676


How do you remove duplicates without using distinct in sql?

506


What are the benefits of pl/sql packages?

541