Hi There!
Does anybody know how to generate unique alphanumeric passwords in SQLServer?
You help will be very much appreciated :)
:) :)
Mel!Hello,
I don't think it is possible in SQLServer.
You can try:
http://www.burney.ws/software/demos/password_generator/
Kind regards,
Jan|||Originally posted by melaniemayfield
Does anybody know how to generate unique alphanumeric passwords in SQLServer?
I guess you don't think GUID is a nice password? ;-)
Just using RAND you can create some random passwords like this...
DECLARE @.PwdLen SMALLINT,
@.Chr TINYINT,
@.Password VARCHAR(20)
-- Seed
SET @.Chr = RAND(DATEPART(ms, GETDATE())) * 0
SET @.Password = ''
SET @.PwdLen = 1
WHILE @.PwdLen < 8
BEGIN
SET @.Chr = RAND() * 62
SET @.Password = @.Password + CHAR(
CASE WHEN @.Chr < 10 THEN @.Chr + 48
WHEN @.Chr BETWEEN 10 AND 35 THEN @.Chr + 55
ELSE @.Chr + 61
END)
SET @.PwdLen = @.PwdLen + 1
END
SELECT @.Password [Password]
Perhaps can get you something to work from.
Cheers,
Robert
Sunday, February 19, 2012
Generate a unique alphanumeric password
Labels:
alphanumeric,
appreciated,
database,
generate,
microsoft,
mysql,
oracle,
password,
passwords,
server,
sql,
sqlserveryou,
theredoes,
unique
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment