How can we help you today? How can we help you today?
TheSQLGuru
I just had my first experience with Data Masker, and I have some significant suggestions. I would LOVE to have a chat with the people leading the charge on the next edition!! Please have them reach out to me if they are interested. I hope I am not too late for the V-Next release, but better late than never. 1) Wildcards or multiple schemas on initial grab of tables? 2) I am rather jet-lagged (just arrived in Europe yesterday), but the interface didn't feel intuitive to me at all. I don't yet have specific suggestions because I am rushing through to complete what is needed so I can move on to other things. 3) It looks like you are doing RBAR individual updates, apparently without even a BEGIN TRAN/COMMIT TRAN wrapped around some number of those. That is a CRUSHINGLY-BAD thing to do to SQL Server, especially from an IO write perspective.  4) You are updating the same table N times each, where N is the number of columns that have some operation on them. So you can immediately reduce transactions by N-1/N by updating all columns for each row just once. I note this may not be possible if "don't do NULL fields" is a thing, but you can possibly know about if still valid a few different ways. 5) Everything seems to be serial. Multi-threaded operations would seem an obvious need.  6) Is there an option to make the database SIMPLE recovery mode to avoid tlog bloat?  7) Is there an option to check tlog percent full and fire off backup? 8) Batching row updates with transactioning could provide a HUGE performance boost due to several factors. / comments
I just had my first experience with Data Masker, and I have some significant suggestions. I would LOVE to have a chat with the people leading the charge on the next edition!! Please have them reach...
0 votes
The obvious question is have you verified that the production database is in fact not corrupted? Did you try recreating the clone? Do you get the same error if you do the same operation from a different client? / comments
The obvious question is have you verified that the production database is in fact not corrupted? Did you try recreating the clone? Do you get the same error if you do the same operation from a diff...
0 votes
If we are logged into the redgate site, shouldn't we be able to download the white papers and other material without having to go through the "tell us who you are" stuff? / comments
If we are logged into the redgate site, shouldn't we be able to download the white papers and other material without having to go through the "tell us who you are" stuff?
0 votes