Skip to content

Instantly share code, notes, and snippets.

@ramingar
Last active June 29, 2017 15:37
Show Gist options
  • Select an option

  • Save ramingar/eadad246eda63b0e3910 to your computer and use it in GitHub Desktop.

Select an option

Save ramingar/eadad246eda63b0e3910 to your computer and use it in GitHub Desktop.
Restaurar un dump de una BBDD mysql #database #mysql #dump #restore
mysql -u root -p
create database crud;
grant all on crud.* to 'usercrud'@'localhost';
exit;
mysql -u root -p crud < crud_dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment