Specifically:
is there a reverse command for this:
mysqldump --user=... --password=... --host=... DB_NAME --where=<YOUR CLAUSE> > /path/to/output/file.sql
Can i import part of a table dump (from a specific row onwards) thru shell ?
Situation: have a decent (2G) db table to import from PC to lynux mysql, i succeded to import approx 30% of that table using shell commands, then my connection to ISP went dead.
Problem:
i wish to continue uploading the dump from the row where it stopped. I specifically do not want to create a new dump from the row at wich the import stopped.
Pipe the output of
to your import command.