What's the best way to delete duplicate records in a mysql database using rails or mysql queries?
|
1
|
|||
|
|
|
What you can do is copy the distinct records into a new table by:
|
||||||
|
|
|
This question is regarding SQL but i hope it helps. |
||
|
|
|
I had to do this recently on Oracle, but the steps would have been the same on MySQL. It was a lot of data, at least compared to what I'm used to working with, so my process to de-dup was comparatively heavyweight. I'm including it here in case someone else comes along with a similar problem. My duplicate records had different IDs, different I used a combination of Rails logic and SQL to get it done. Step one: run a rake script to identify the IDs of the duplicate records, using model logic. IDs go in a text file. Step two: create a temporary table with one column, the IDs to delete, loaded from the text file. Step three: create another temporary table with all the records I'm going to delete (just in case!).
Step four: actual deleting.
|
||
|
|
|
|
well, if it's a small table, from rails console you can do
|
||
|
|
|
|
You can use: http://lenniedevilliers.blogspot.com/2008/10/weekly-code-find-duplicates-in-sql.html to get the duplicates and then just delete them via Ruby code or SQL code (I would do it in SQL code but thats up to you :-) |
||
|
|
|
|
New to SQL :-) This is a classic question - often asked in interviews:-) I don't know whether it'll work in MYSQL but it works in most databases -
|
||||
|
