Write a command like
mysql -uuser -ppass tiki19 < tiki19_backup_yymmdd.sql
In your case, change in the example above:
- user for your username at the mysql server
- pass for the password for that username at the mysql server
- tiki19 for your database name, and
- yymmdd for the two digits of year, month and day, respectively, for instance, to have your backups easily sorted by name and date of creation also.
If you had exported your database without the option to delete the tables (Drop tables, from the Backup instructions through Phpmyadmin) before attempting to restore them from the database backup, then you will have to empty the database tables first. (through phpmyadmin, for instance).
And in case that you have troubles with the character set used to import the database to mysql, you can specify the character set in which your sql database backup is encoded. In order to do so, you can add the parameter --default-character-set=code (and as code, you can set for instance utf8 or iso-8859-1)
As an example, in order to set the character set to utf8, you would have to write something like:
mysql -uuser -ppass --default-character-set=utf8 tiki19 < tiki19_backup_yymmdd.sql
|