I have a .sql file with 24k INSERT statements as:
INSERT INTO dump(id, title, content, datetime, section) VALUES ('', 'Title up to 200 characters', 'Detailed content with HTML tags', '04-10-2010, 11:48 AM', 1);
Once import is completed, i get a message that says
Import has been successfully finished, 24664 queries executed.
When i browse the table, i find many titles and contents are totally empty or carry part of texts only i.e. few letters.
The only parts that gets inserted properly is: id, datetime and section.
title and content carry heavy contents. Many “content” might carry 250 char+. Title carries around 100 chars max.
On the other hand, i find copy/paste few pieces of INSERT and do it manually via SQL area. Everything gets inserted correctly. This method could take me very long time…
Any idea why i’m facing such a problem?
Use MYSQL to create your dumps try this command