C chartmusic Verified User Joined Sep 27, 2006 Messages 50 Location North Devon Dec 14, 2006 #1 How do you repair an SQL file. Or even how can you established it's corrupt?
M Mik3yZ Verified User Joined Mar 29, 2006 Messages 55 Location Eindhoven, The Netherlands Dec 15, 2006 #2 when in phpmyadmin go to the table you think is corrupted / broken. when phpmyadmin says it can't access the table you need to login to the command line: mysql -u username -p then hit enter, and type your pwd. then type: use databasename; and then REPAIR TABLE tablename; Hope this is what you mean... - Mike
when in phpmyadmin go to the table you think is corrupted / broken. when phpmyadmin says it can't access the table you need to login to the command line: mysql -u username -p then hit enter, and type your pwd. then type: use databasename; and then REPAIR TABLE tablename; Hope this is what you mean... - Mike
C chartmusic Verified User Joined Sep 27, 2006 Messages 50 Location North Devon Dec 29, 2006 #3 Thank you Mike, Let's hope I don't have to use that one