tags:

views:

33

answers:

2

We have some data in the SQL server table that needs to scramble. Some data are string and some data are date.

What is best way to do this?

+1  A: 

Are you talking about Obfuscating your SQL Server Data? (To create a development version based on the production data without exposing the production data itself)

Or do you want it encrypted?

Martin Smith
@Martin Smith: That is what I am looking for Obfuscating. Thanks
dewacorp.alliances
A: 

SQL Server 2005 introduced encryption support. Check out this article here.

Ciaran Archer