1743👍
Try DISABLE KEYS
or
SET FOREIGN_KEY_CHECKS=0;
Make sure to
SET FOREIGN_KEY_CHECKS=1;
after.
188👍
To turn off foreign key constraint globally, do the following:
SET GLOBAL FOREIGN_KEY_CHECKS=0;
and remember to set it back when you are done
SET GLOBAL FOREIGN_KEY_CHECKS=1;
WARNING: You should only do this when you are doing single user mode maintenance. As it might resulted in data inconsistency. For example, it will be very helpful when you are uploading large amount of data using a mysqldump output.
- [Django]-What's the idiomatic Python equivalent to Django's 'regroup' template tag?
- [Django]-Check if celery beat is up and running
- [Django]-Django error when installing Graphite – settings.DATABASES is improperly configured. Please supply the ENGINE value
74👍
I normally only disable foreign key constraints when I want to truncate a table, and since I keep coming back to this answer this is for future me:
SET FOREIGN_KEY_CHECKS=0;
TRUNCATE TABLE table;
SET FOREIGN_KEY_CHECKS=1;
- [Django]-Django admin default filter
- [Django]-What are the limitations of Django's ORM?
- [Django]-Using JSON in django template
28👍
Instead of disabling your constraint, permanently modify it to ON DELETE SET NULL. That will accomplish a similar thing and you wouldn’t have to turn key checking on and off. Like so:
ALTER TABLE tablename1 DROP FOREIGN KEY fk_name1; //get rid of current constraints
ALTER TABLE tablename2 DROP FOREIGN KEY fk_name2;
ALTER TABLE tablename1
ADD FOREIGN KEY (table2_id)
REFERENCES table2(id)
ON DELETE SET NULL //add back constraint
ALTER TABLE tablename2
ADD FOREIGN KEY (table1_id)
REFERENCES table1(id)
ON DELETE SET NULL //add back other constraint
Have a read of this (http://dev.mysql.com/doc/refman/5.5/en/alter-table.html) and this (http://dev.mysql.com/doc/refman/5.5/en/create-table-foreign-keys.html).
- [Django]-What is a django.utils.functional.__proxy__ object and what it helps with?
- [Django]-Django Admin app or roll my own?
- [Django]-Django Rest Framework Conditional Field on Serializer
28👍
To turn off the foreign key constraint globally:
SET GLOBAL FOREIGN_KEY_CHECKS = 0;
And for the active foreign key constraint:
SET GLOBAL FOREIGN_KEY_CHECKS = 1;
- [Django]-Django – accessing the RequestContext from within a custom filter
- [Django]-How can I serialize a queryset from an unrelated model as a nested serializer?
- [Django]-__init__() got an unexpected keyword argument 'mimetype'
13👍
A very simple solution with phpMyAdmin:
- In your table, go to the SQL tab
- After you edit the SQL command that you want to run, there is a check box next to GO, named ‘Enable foreign key checks’ .
- Uncheck this check box and run your SQL. It will be automatically rechecked after executing.
- [Django]-Django: Safely Remove Old Migrations?
- [Django]-Django character set with MySQL weirdness
- [Django]-How to pass multiple values for a single URL parameter?
13👍
For me just SET FOREIGN_KEY_CHECKS=0;
wasn’t enough.
I was still having a com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException
.
I had to add ALTER TABLE myTable DISABLE KEYS;
.
So:
SET FOREIGN_KEY_CHECKS=0;
ALTER TABLE myTable DISABLE KEYS;
DELETE FROM myTable;
ALTER TABLE myTable ENABLE KEYS;
SET FOREIGN_KEY_CHECKS=1;
- [Django]-How to obtain and/or save the queryset criteria to the DB?
- [Django]-Django: Filter a Queryset made of unions not working
- [Django]-Are Django SECRET_KEY's per instance or per app?
5👍
In phpMyAdmin you can select multiple rows and can then click the delete action. You’ll enter a screen which lists the delete queries. It looks like this:
Please uncheck the "Enable foreign key checks" checkbox, and click on Yes to execute them.
This will enable you to delete rows even if there is an ON DELETE restriction constraint.
- [Django]-Images from ImageField in Django don't load in template
- [Django]-Celery : Execute task after a specific time gap
- [Django]-How to understand lazy function in Django utils functional module
3👍
If the key field is nullable, then you can also set the value to null before attempting to delete it:
cursor.execute("UPDATE myapp_item SET myapp_style_id = NULL WHERE n = %s", n)
transaction.commit_unless_managed()
cursor.execute("UPDATE myapp_style SET myapp_item_id = NULL WHERE n = %s", n)
transaction.commit_unless_managed()
cursor.execute("DELETE FROM myapp_item WHERE n = %s", n)
transaction.commit_unless_managed()
cursor.execute("DELETE FROM myapp_style WHERE n = %s", n)
transaction.commit_unless_managed()
- [Django]-Django Admin app or roll my own?
- [Django]-What's the idiomatic Python equivalent to Django's 'regroup' template tag?
- [Django]-Django – Website Home Page
-1👍
It’s not a good idea to set a foreign key constraint to 0, because if you do, your database would not ensure it is not violating referential integrity. This could lead to inaccurate, misleading, or incomplete data.
You make a foreign key for a reason: because all the values in the child column shall be the same as a value in the parent column. If there are no foreign key constraints, a child row can have a value that is not in the parent row, which would lead to inaccurate data.
For instance, let’s say you have a website for students to login and every student must register for an account as a user. You have one table for user ids, with user id as a primary key; and another table for student accounts, with student id as a column. Since every student must have a user id, it would make sense to make the student id from the student accounts table a foreign key that references the primary key user id in the user ids table. If there are no foreign key checks, a student could end up having a student id and no user id, which means a student can get an account without being a user, which is wrong.
Imagine if it happens to a large amount of data. That’s why you need the foreign key check.
It’s best to figure out what is causing the error. Most likely, you are trying to delete from a parent row without deleting from a child row. Try deleting from the child row before deleting from the parent row.
- [Django]-Django Framework – Is there a shutdown event that can be subscribed to?
- [Django]-How to completely dump the data for Django-CMS
- [Django]-Google Static Maps URL length limit