
Hi team,
i wanted to grant dbms_scheduler permission to the system user in oracle 11.2.0.3,
but it is showing insufficient privileges, but my System has Sysdba rights.
can you please help me..
PFB......
SQL> SELECT * FROM v$pwfile_users WHERE sysdba='TRUE';
USERNAME SYSDB SYSOP SYSAS
------------------------------ ----- ----- -----
SYS TRUE TRUE FALSE
SQL> conn system as sysdba;
Enter password:
Connected.
SQL> GRANT EXECUTE ON DBMS_SCHEDULER TO vishal;
Grant succeeded.
SQL> revoke execute on dbms_scheduler from vishal;
Revoke succeeded.
SQL> conn system
Enter password:
Connected.
SQL> GRANT EXECUTE ON DBMS_SCHEDULER TO vishal;
GRANT EXECUTE ON DBMS_SCHEDULER TO vishal
*
ERROR at line 1:
ORA-01031: insufficient privileges
while i ran this query
"
SQL> select * from session_privs;"
for system user i have 202 rows of different privileges,
but the same query for sysdba has 208 rows...
-jayce