I needed a quick way to create a random password for a large number of users in mysql.
SELECT SUBSTRING( MD5( RAND() ) FROM 1 FOR 8 ) AS PASSWORD;
Ramblings from University IT... VMWare, NetApp, Powershell,Active Directory, Exchange and Scripting.
I needed a quick way to create a random password for a large number of users in mysql.
SELECT SUBSTRING( MD5( RAND() ) FROM 1 FOR 8 ) AS PASSWORD;
0 comments:
Post a Comment