Quote:
Originally Posted by DemOnstar
Anybody understand DB imports?
MySQL said: Documentation
#1062 - Duplicate entry 'accessmask--' for key 'phraseunique'
Any clues to what might be the issue? . .
I have no idea what to do about this. . .
Thanks. .
|
The answer is right in front of you. You have a duplicate entry.
Try
Code:
select * from adminhelp where script like 'accessmask'
If there are two rows that are identical, delete one of the rows.
Code:
delete from adminhelp where adminhelpid=foo
where foo= one of the duplicate entries. It's always safest to do a comple mysqldump of the database before doing any manual queries. One type and you're screwed. :erm:
EDIT: I missed the part in the title where you said "database import", you will need to check your SQL soure for that table to find the duplicate entry and delete it.