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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -