เพียงเพิ่มโซลูชันของฉันเนื่องจากฉันมีปัญหาที่คล้ายกัน
TL; DR
- สร้างตารางใหม่ด้วยข้อมูลจำเพาะ foreign key เดียวกัน แต่ใช้ชื่ออื่นที่จัดขึ้นก่อนหน้าโดยตาราง
- ดร็อปตารางผลลัพธ์ (จะดรอปคีย์เด็กกำพร้าต้นฉบับ)
- สร้างตารางใหม่ด้วยรหัสต้นฉบับหรือไม่มีรหัสต่างประเทศ
รายละเอียด
ฉันวิ่งเข้าไปในสถานการณ์ที่น่ารังเกียจที่คำสั่ง ALTER TABLE ล้มเหลวเนื่องจากรหัสต่างประเทศไม่ได้ถูกทิ้งไว้ก่อนหน้านี้ สิ่งนี้นำไปสู่ความไม่สอดคล้องกันบางอย่างในพจนานุกรมข้อมูล InnoDB (อาจเป็นเพราะhttp://bugs.mysql.com/bug.php?id=58215 )
คำถามที่เกี่ยวข้องที่นี่: /programming/16857451/error-in-foreign-key-constraint-on-a-droped-table
mysql> ALTER TABLE `visits` CHANGE COLUMN `variation_visitor_id` `variation_visitor_id` INT(11) NOT NULL ;
ข้อผิดพลาดในการเปลี่ยนชื่อเป็น './db/#sql-482c_8448f' เป็น './db/visits' (errno: 150)
mysql> SHOW ENGINE INNODB STATUS;
Error in foreign key constraint of table db/visits:
FOREIGN KEY (`variation_visitor_id`) REFERENCES `variations_visitors` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8
Cannot find an index in the referenced table where the
referenced columns appear as the first columns, or column types
in the table and the referenced table do not match for constraint.
Note that the internal storage type of ENUM and SET changed in
tables created with >= InnoDB-4.1.12, and such columns in old tables
cannot be referenced by such columns in new tables.
See http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html
for correct foreign key definitippon.
เนื่องจากฉันไม่สามารถกู้คืนตาราง # sql-482c_8448f ไปยังการเข้าชมได้ฉันจึงตัดสินใจนำเข้าอีกครั้งจากการสำรองข้อมูลที่กระทำก่อนการเปลี่ยนแปลง อย่างไรก็ตามเรื่องนี้ล้มเหลว ในการสอบสวน:
- ข้อ จำกัด ถูกลบออกจาก INFORMATION_SCHEMA.TABLE_CONSTRAINTS และ INFORMATION_SCHEMA.STATISTICS แล้ว
- แต่ข้อ จำกัด ยังคงปรากฏอยู่ใน INFORMATION_SCHEMA.INNODB_SYS_FOREIGN
- ไม่มีตารางอยู่ดังนั้นฉันไม่สามารถวางรหัสต่างประเทศได้
- ฉันไม่สามารถสร้างตารางโดยไม่มีข้อผิดพลาด
SQL / ข้อผิดพลาด
mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_SYS_FOREIGN WHERE ID='db/fk_visits_variations_visitors1';
+-----------------------------------+-----------+------------------------+--------+------+
| ID | FOR_NAME | REF_NAME | N_COLS | TYPE |
+-----------------------------------+-----------+------------------------+--------+------+
| db/fk_visits_variations_visitors1 | db/visits | db/variations_visitors | 1 | 48 |
+-----------------------------------+-----------+------------------------+--------+------+
การพยายามสร้างตารางใหม่โดยไม่มีรหัสที่ต่างประเทศทำให้เกิดข้อผิดพลาด 150
mysql>
SET UNIQUE_CHECKS = 0;
SET FOREIGN_KEY_CHECKS = 0;
CREATE TABLE `visits` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`variation_visitor_id` INT(11) NOT NULL ,
PRIMARY KEY (`id`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS = 1;
SET UNIQUE_CHECKS = 1;
ERROR 1005 (HY000) at line 26: Can't create table 'db.visits' (errno: 150)
mysql> SHOW ENGINE INNODB STATUS;
Error in foreign key constraint of table db/visits:
there is no index in the table which would contain
the columns as the first columns, or the data types in the
table do not match the ones in the referenced table
or one of the ON ... SET NULL columns is declared NOT NULL. Constraint:
,
CONSTRAINT "fk_visits_variations_visitors1" FOREIGN KEY ("variation_visitor_id") REFERENCES "variations_visitors" ("id") ON DELETE NO ACTION ON UPDATE NO ACTION
กำลังพยายามสร้างมันด้วยทำให้เกิดข้อผิดพลาด 121
mysql>
SET UNIQUE_CHECKS = 0;
SET FOREIGN_KEY_CHECKS = 0;
CREATE TABLE `visits` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`variation_visitor_id` INT(11) NOT NULL ,
PRIMARY KEY (`id`),
KEY `fk_visits_variations_visitors1` (`variation_visitor_id`),
CONSTRAINT `fk_visits_variations_visitors1` FOREIGN KEY (`variation_visitor_id`) REFERENCES `variations_visitors` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS = 1;
SET UNIQUE_CHECKS = 1;
ERROR 1005 (HY000) at line 26: Can't create table 'db.visits' (errno: 121)
mysql> SHOW ENGINE INNODB STATUS;
Error in foreign key constraint creation for table `db`.`visits`.
A foreign key constraint of name `db`.`fk_visits_variations_visitors1`
already exists. (Note that internally InnoDB adds 'databasename'
in front of the user-defined constraint name.)
Note that InnoDB's FOREIGN KEY system tables store
constraint names as case-insensitive, with the
MySQL standard latin1_swedish_ci collation. If you
create tables or databases whose names differ only in
> the character case, then collisions in constraint
names can occur. Workaround: name your constraints
explicitly with unique names.
ในที่สุดฉันก็ใช้ชื่อคีย์ต่างประเทศใหม่ ฉันไม่ได้คาดหวังว่ามันจะใช้งานได้ แต่มันอนุญาตให้สร้างตารางได้
mysql>
SET UNIQUE_CHECKS = 0;
SET FOREIGN_KEY_CHECKS = 0;
CREATE TABLE `visits` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`variation_visitor_id` INT(11) NOT NULL ,
PRIMARY KEY (`id`),
KEY `fk_visits_variations_visitors2` (`variation_visitor_id`),
CONSTRAINT `fk_visits_variations_visitors2` FOREIGN KEY (`variation_visitor_id`) REFERENCES `variations_visitors` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS = 1;
SET UNIQUE_CHECKS = 1;
เพียงแค่วางตารางหลังจากที่ลบระเบียนที่ผิดพลาดใน INFORMATION_SCHEMA.INNODB_SYS_FOREIGN เพื่ออนุญาตให้นำเข้าด้วยชื่อคีย์ต่างประเทศดั้งเดิม
my_user
แต่ข้อผิดพลาดเกี่ยวกับmy_db.user
...