plsql - ORACLE USER role to limit user to view and execute function without modifying it -
plsql - ORACLE USER role to limit user to view and execute function without modifying it -
i sorry newbie question. creating readonly user in oracle. want limit him view , execute function or procedure. dont want him modify func or proc. please help me on how accomplish this.
thanks lot
-- sysdba: -- 1) create user business relationship create user <username> identified <password>; -- 2) allow user log in grant create session <username>; -- 3) allow user execute single procedure in other schema grant execute on <other_schema.procedure_name> <username>;
oracle plsql
Comments
Post a Comment