Reputation: 14654
ERROR 1025 (HY000): Error on rename of '.\forumf\#sql-1718_20' to '.\forumf\posts' (errno: 150)
I got this quite cryptic error message while editing keys on a MySQL table. Can someone explain the error, it's cause and it's fix?
Upvotes: 1
Views: 317
Reputation: 35141
Yeah, you hit a foreign key constraint.
A show innodb status;
will show the cause of the problem.
A quick fix is to drop the constraint, do what you're doing, and then recreate the constraint.
Upvotes: 3