-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean database with 1.9.1 #12
Comments
I had to search and remove duplicates in my catalogsearch_query table (Magento 1.x). I found them by running the following: SELECT query_text, COUNT(*) c FROM catalogsearch_query GROUP BY query_text HAVING c > 1; |
Thanks @chrissm79 |
The Migration Tool should not transfer these duplicates. According internal issue (MAGETWO-47876) was created to solve it |
Same issue migrating 1.9.11 > 2.0.0. Thanks @chrissm79 - that did it for me. |
On the double ones, what is the impact of which one you delete? Is it possible to do this automated? |
@seabird can close? |
Sorry, due to other problemo did not have time to look into this further. Sure thing, close it. |
Hi everyone,
created a clean install via composer and never even logged in. I dumped the database and am trying to get my data-migration tool to sync my settings and information.
unfortunatly I get this error:
[PDOException]
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'association-2' for key 'SEARCH_QUERY_QUERY_TEXT_STORE_ID'
Any clues how to solve this?
The text was updated successfully, but these errors were encountered: