I want to track all the changes from the entire table of a database and insert the changes data/activity into the given table by creating a single trigger
CREATE TABLE sh_audit(
new_name varchar2(30),
old_name varchar2(30),
user_name varchar2(30),
entry_date varchar2(30),
operation varchar2(30)
)
..from entire table
SELECT tablename
FROM all_tables;