Obfuscate / Mask / Scramble personal information - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:20:30Z http://stackoverflow.com/feeds/question/168886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information 6 Obfuscate / Mask / Scramble personal information Computer Chip 2008-10-03T21:00:30Z 2009-04-30T15:14:50Z <p>I'm looking for a homegrown way to scramble production data for use in development and test. I've built a couple of scripts that make random social security numbers, shift birth dates, scramble emails, etc. But I've come up against a wall trying to scramble customer names. I want to keep real names so we can still use or searches so random letter generation is out. What I have tried so far is building a temp table of all last names in the table then updating the customer table with a random selection from the temp table. Like this:</p> <pre><code>DECLARE @Names TABLE (Id int IDENTITY(1,1),[Name] varchar(100)) /* Scramble the last names (randomly pick another last name) */ INSERT @Names SELECT LastName FROM Customer ORDER BY NEWID(); WITH [Customer ORDERED BY ROWID] AS (SELECT ROW_NUMBER() OVER (ORDER BY NEWID()) AS ROWID, LastName FROM Customer) UPDATE [Customer ORDERED BY ROWID] SET LastName=(SELECT [Name] FROM @Names WHERE ROWID=Id) </code></pre> <p>This worked well in test, but completely bogs down dealing with larger amounts of data (>20 minutes for 40K rows)</p> <p>All of that to ask, how would you scramble customer names while keeping real names and the weight of the production data?</p> <p><strong>UPDATE:</strong> Never fails, you try to put all the information in the post, and you forget something important. This data will also be used in our sales &amp; demo environments which are publicly available. Some of the answers are what I am attempting to do, to 'switch' the names, but my question is literally, how to code in T-SQL?</p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168896#168896 1 Answer by warren for Obfuscate / Mask / Scramble personal information warren 2008-10-03T21:04:10Z 2008-10-03T21:04:10Z <p>A very simple solution would be to ROT13 the text.</p> <p>A better question may be why you feel the need to scramble the data? If you have an encryption key, you could also consider running the text through DES or AES or similar. Thos would have potential performance issues, however.</p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168898#168898 3 Answer by Peter Hoffmann for Obfuscate / Mask / Scramble personal information Peter Hoffmann 2008-10-03T21:04:41Z 2008-10-03T21:04:41Z <p>I use <a href="http://www.generatedata.com/" rel="nofollow">generatedata</a>. It is an open source php script which can generate all sorts of dummy data. </p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168902#168902 0 Answer by Ryan for Obfuscate / Mask / Scramble personal information Ryan 2008-10-03T21:05:40Z 2008-10-03T21:05:40Z <p>Why not just use some sort of <a href="http://www.kleimo.com/random/name.cfm" rel="nofollow">Random Name Generator?</a></p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168920#168920 2 Answer by Jeff for Obfuscate / Mask / Scramble personal information Jeff 2008-10-03T21:08:12Z 2008-10-03T21:29:28Z <p>Frankly, I'm not sure why this is needed. Your dev/test environments should be private, behind your firewall, and not accessible from the web.</p> <p>Your developers should be trusted, and you have legal recourse against them if they fail to live up to your trust.</p> <p>I think the real question should be "Should I scramble the data?", and the answer is (in my mind) 'no'.</p> <p>If you're sending it offsite for some reason, or you have to have your environments web-accessible, or if you're paranoid, I would implement a random switch. Rather than build a temp table, run switches between each location and a random row in the table, swapping one piece of data at a time.</p> <p>The end result will be a table with all the same data, but with it randomly reorganized. It should also be faster than your temp table, I believe.</p> <p>It should be simple enough to implement the <a href="http://en.wikipedia.org/wiki/Fisher-Yates_shuffle" rel="nofollow">Fisher-Yates Shuffle</a> in SQL...or at least in a console app that reads the db and writes to the target.</p> <p>Edit (2): Off-the cuff answer in T-SQL:</p> <p>declare @name varchar(50) set @name = (SELECT lastName from person where personID = (random id number) Update person set lastname = @name WHERE personID = (person id of current row)</p> <p>Wrap this in a loop, and follow the guidelines of Fisher-Yates for modifying the random value constraints, and you'll be set.</p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168923#168923 1 Answer by Milan Babuškov for Obfuscate / Mask / Scramble personal information Milan Babuškov 2008-10-03T21:08:35Z 2008-10-03T21:33:25Z <p>When doing something like that I usually write a small program that first loads a lot of names and surnames in two arrays, and then just updates the database using random name/surname from arrays. It works really fast even for very big datasets (200.000+ records)</p> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/807426#807426 0 Answer by Tom Powers for Obfuscate / Mask / Scramble personal information Tom Powers 2009-04-30T15:12:16Z 2009-04-30T15:12:16Z <p>Use a temporary table instead and the query is very fast. I just ran on 60K rows in 4 seconds. I'll be using this one going forward.</p> <p>DECLARE TABLE #Names (Id int IDENTITY(1,1),[Name] varchar(100))</p> <p>/* Scramble the last names (randomly pick another last name) */ INSERT #Names SELECT LastName FROM Customer ORDER BY NEWID(); WITH [Customer ORDERED BY ROWID] AS (SELECT ROW_NUMBER() OVER (ORDER BY NEWID()) AS ROWID, LastName FROM Customer) UPDATE [Customer ORDERED BY ROWID] SET LastName=(SELECT [Name] FROM #Names WHERE ROWID=Id) DROP TABLE #Names</p>