Pronounceable password generator in PL/SQL
How often do I need to generate a password for one of my database users and colleagues? Here is how I do that. function auth_pwgen return varchar2 is l_pos integer; l_pw varchar2(100); l_c varchar2(100) := ‘bcdfghjklmnprstvwz’; –consonants l_v varchar2(100) := ‘aeiou’; –vowels l_a varchar2(100) := l_c || l_v; –both l_s varchar2(100) := ‘!@#$%^&*()’;begin –use three … Read more