Powered By Blogger

সোমবার, ৭ মে, ২০১৮

Creating password in oracle

/*Use the function to create password with user name*/


CREATE OR REPLACE function f_Password(p_username in varchar2, p_password in varchar2)
return varchar2
is
begin
  return dbms_obfuscation_toolkit.md5
     (input =>
         utl_raw.cast_to_raw(upper(p_username)||'/'||p_password)
     );
end f_Password;
/

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Row-level “Add” icon using a virtual column (APEX-safe)

1️⃣ Enable Insert in the Interactive Grid IG → Attributes Edit → Allowed Add Row → Yes 2️⃣ Add a New Column (Icon column) Column...