Return to Snippet

Revision: 65653
at January 10, 2014 01:11 by ampt


Updated Code
CREATE SCHEMA `your_db_name` ;

GRANT ALL PRIVILEGES ON your_db_name.* to 'your_user_name'@'localhost' IDENTIFIED BY 'your_password';

Revision: 65652
at January 8, 2014 22:31 by ampt


Initial Code
Me

Initial URL


Initial Description
Example:
CREATE SCHEMA `db_wordpress_02` ;

GRANT ALL PRIVILEGES ON db_wordpress_02.* to 'root'@'localhost' IDENTIFIED BY 'scr1ptlov3r';

Initial Title
Create DB for Wordpress

Initial Tags
sql

Initial Language
SQL