PROCEDURE
update_column(
old_value IN VARCHAR2,
new_value IN VARCHAR2,
table_name IN VARCHAR2,
update_column IN VARCHAR2
);
--
-- Next procedure is update_tables
-- It is the loop control procedure for
-- the trigger and calls update_column
--
PROCEDURE update_tables(
source_table IN VARCHAR2,
old_value IN VARCHAR2,
new_value IN VARCHAR2
);
--
-- End of PACKAGE HEADER
--
END cascade_update;
/
--
-- Now build package body
-- That actually holds the
-- procedures and code
--