This is a discussion on pwdcompare equivalent in Sql2005 within the SQL Server forums, part of the Microsoft SQL Server category; --> Hi Friends, What is the equivalent function of pwdcompare() in Sql2005? Thanks, ArunDhaJ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On 3 Jul, 16:47, ArunDhaJ <arund...@gmail.com> wrote: > Hi Friends, > What is the equivalent function of pwdcompare() in Sql2005? > > Thanks, > ArunDhaJ PWDCOMPARE is an undocumented function in 2000 and 2005. To hash and compare passwords you can instead use the HashBytes() function in SQL Server 2005. I don't think HashBytes will be compatible with the hashes used by PWDCOMPARE. -- David Portas, SQL Server MVP Whenever possible please post enough code to reproduce your problem. Including CREATE TABLE and INSERT statements usually helps. State what version of SQL Server you are using and specify the content of any error messages. SQL Server Books Online: http://msdn2.microsoft.com/library/m...S,SQL.90).aspx -- |