Edit: This question is different from the suggesed duplicate because the URL mentioned in that post is dead now, and on an alternate URL there is no link to download the package - that's why I decided to post a new thread seeking assistance in getting my hands on that package of Thomas Kyte.
I need to add FKey Constraints ON UPDATE CASCADE - googling through I found a thread here on stackoverflow that points to a package written by Tom, but the link is no longer working :
http://asktom.oracle.com/tkyte/update_cascade/index.html
So I am wondering if someone got the Tom's package and can share with me or can help me implement the following FKey Constraint in Oracle :
ALTER TABLE
customer
ADD CONSTRAINT
customer_address_id_fkey
FOREIGN KEY
(address_id)
REFERENCES
address(address_id)
ON UPDATE CASCADE;
Many thanks!!