Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Restricting user access to a database?
function auth return boolean is
ret number; txt_set_role varchar2(100); BEGIN txt_set_role:=const.role_name||' IDENTIFIED BY '||const.role_passwd;dbms_session.set_role(txt_set_role);
WHEN OTHERS THEN RETURN(false);
in your report
I've done and works! Received on Fri Jul 18 2003 - 10:38:37 CDT
![]() |
![]() |