MySQL: ignore errors in SQL importing?
While importing a large SQL dump file, most of the developers face a common issue that some tables may not be imported properly, errors occurred due to privilege issue, syntax errors, corrupted files. You can exclude those during importing. Use the –force (-f) flag on your MySQL import. Rather than stopping on the offending statement, […]