Generating Random Password by a T-SQL Procedure

To generate a complex password, we should not only get random value from the set of the characters but also guarantee the combination of upper case, lower case, numbers and special characters. In the procedure below, the password generated will include all 4 parts.
Continue reading “Generating Random Password by a T-SQL Procedure”