Jun 7, 2007 #1 Toe Programmer Joined Oct 26, 2001 Messages 71 Location GB if i have a pl/sql packege owned by 'user1' is it *always* executed as that user ('user1')? can it be the case that the packegeis executed as the user who called the package thanks
if i have a pl/sql packege owned by 'user1' is it *always* executed as that user ('user1')? can it be the case that the packegeis executed as the user who called the package thanks
Jun 10, 2007 #2 Beilstwh Programmer Joined Jul 13, 2005 Messages 819 Location US use authid current_user in your procedure. That informs oracle to use the invoking users rights. Bill Oracle DBA/Developer New York State, USA Upvote 0 Downvote
use authid current_user in your procedure. That informs oracle to use the invoking users rights. Bill Oracle DBA/Developer New York State, USA