12.1
I want to create a trigger on a table as I dont want anyone else to grant select on it
something like
create trigger
before grant select on t1
declare
BEGIN
RAISE_APPLICATION_ERROR(-20997,' grants Not Allowed on t1, see DBA for details');
END;
/
can only create a trigger on a grant at database level as far as I can find. Is there someway to do that?