Hi All
I am getting error while deploying job in new db
exec DBMS_SCHEDULER.create_job(...
ORA-27486: insufficient privileges
ORA-06512: at "SYS.DBMS_ISCHED", line 99
ORA-06512: at "SYS.DBMS_SCHEDULER", line 268
ORA-06512: at line 2
I want to know the user has DBMS_SCHEDULER privilege AND create job privilege or not
if yes then i can grant these privileges. I queried dba_sys_privs NOT getting required output to show the privs for user. Please help
grant execute on DBMS_SCHEDULER to <myuser>;
grant create job to <myuser>;
Supersent