I'm uploading data to a db (mysql 5.1.42) from a dump file using mysql command line and get duplicate key error.
This is the format I use:
/mnt/temp# mysql -u username -p -h url_of_db_master -D farm2 < db_dump_part_file_a
Hoe can I tell mysql to ignore duplicate keys?
Thanks !