CREATE PROC random_password ( @len int = 8, --Length of the password to be generated @password_type char(7) = 'simple' --Default is to generate a simple password with lowecase letters. --Pass anything other than 'simple' to generate a complex password. --The complex password includes numbers, special characters, upper case and lower case letters ) AS
Advertisement