Created
May 3, 2013 08:16
-
-
Save marcomorain/5507883 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mysql> DELETE FROM foo WHERE bar NOT IN (SELECT id FROM baz WHERE qux IN (14, 20, 46)); | |
| ERROR 1114 (HY000): The table 'foo' is full | |
| mysql> DELETE FROM foo WHERE bar NOT IN (SELECT id FROM baz WHERE qux IN (14, 20, 46)) LIMIT 10000; | |
| ERROR 3 (HY000): Error writing file '/rdsdbdata/tmp/MLGmPViY' (Errcode: 28) | |
| .... | |
| ERROR 20 (HY000): Disk is full writing '/rdsdbdata/log/binlog/mysql-bin-changelog.002204' (Errcode: 28). Waiting for someone to free space... (Expect up to 60 secs delay for server to continue after freeing disk space) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment