I have some dumps created with the following command:
mysqldump --host=$host --user=$dbuser --password=$dbpass --tab=$backupdir/$dbname $dbname
That created couple files table.sql/table.txt with the structure in the first (that can can be installed with mysql -u username -p database_name < table.sql
) and the rows in the second.
How can I import the rows with that files ?