Tags: MySQL,restore

Sort by: Date / Title /

  1. 8 months ago by grummfy
    #Param #HOST : host of your database : localhost, sql.free.fr, .... #DATABASE : your database name #FILE.sql : the file to restore #USERNAME : your username access
    mysql -D DATABASE -u USERNAME -p -h HOST --default-character-set=utf8 < FILE.sql
  2. 1 year ago by spirit
    1. # Dump
    2. mysqldump -u user -p -h localhost --database base > base.sql
    3.  
    4. # Restore
    5. mysql -u user -p -h localhost base < base.sql

First / Previous / Next / Last / Page 1 of 1 (2 posteets)