pwdcompare equivalent in Sql2005
am 03.07.2007 17:47:35 von OonzHi Friends,
What is the equivalent function of pwdcompare() in Sql2005?
Thanks,
ArunDhaJ
Hi Friends,
What is the equivalent function of pwdcompare() in Sql2005?
Thanks,
ArunDhaJ
On 3 Jul, 16:47, ArunDhaJ
> 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/ms130214(en-US,SQL.90).as px
--