2
Reply

What is the syntax for encrypting a column in SQL Server?

Mahesh Chand

Mahesh Chand

12y
3.7k
0
Reply

    DECLARE @SecurePass nvarchar(4000); SELECT @SecurePass = CONVERT(nvarchar(4000),'Vithal'); SELECT HashBytes('SHA1', @SecurePass);

    Respected Sir, Please check the following website related to your problem.http://dpatrickcaldwell.blogspot.in/2010/10/column-encryption-in-sql-server-2008.html