I have a SQL Server DB containing real data (e.g. Customer names, ecc).
I'd like to transform it to a DB to show in presentations without showing the real names contained in there.
One solution could be to transform real names in anagrams (e.g.: a customer with name "abcdefg" could become "cfadgbe") so that original name is not too easily recognizable.
If you did something similar in the past (possibly in VB.NET, but C# is ok too), I'd really appreciate not to write from scratch such a procedure.
(If you did something different with the same goal... then it will be OK too!)
