I got a question, is there a possibilty, that a DDL Trigger can grant roles right after the user is created.
For example:
CREATE OR REPLACE TRIGGER DDL_TRIGGER
AFTER CREATE ROLE ON DATABASE
And after that, the trigger should grant the new user with some roles.
For example:
BEGIN
GRANT Resourse to *new created user*;
GRANT CONNECT to *new created user*;
I use oracle database.
Thank you guys, Marki