बस मुझे अपना समाधान जोड़ना है क्योंकि मुझे एक समान समस्या थी।
टी एल; डॉ
- एक ही विदेशी कुंजी विनिर्देशन के साथ तालिका को फिर से बनाएं लेकिन पहले से तालिका के अनुसार एक अलग नाम के साथ।
- परिणामी तालिका गिराएं (मूल अनाथ विदेशी कुंजी भी छोड़ देंगे)
- मूल या कोई विदेशी कुंजी के साथ विश्राम तालिका
विस्तार
मैं उस खराब स्थिति में भाग गया, जहाँ एक विदेशी कुंजी पहले से न गिराए जाने के कारण विफल हो गई थी। इसके कारण 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' (त्रुटिपूर्ण: 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 में दिखाई दे रही थी;
- तालिका मौजूद नहीं थी इसलिए मैं विदेशी कुंजी को नहीं छोड़ सकता था
- मैं त्रुटियों के बिना तालिका नहीं बना सकता
एसक्यूएल / त्रुटियाँ
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
...