/ Published in: SQL
Expand |
Embed | Plain Text
CREATE DATABASE foo_db; CREATE user foo_user IDENTIFIED BY 'foo_password'; GRANT ALL ON foo_db.* TO 'foo_user'@'%';
You need to login to post a comment.
surfeurX on 05/21/10
1 person have marked this snippet as a favorite
CREATE DATABASE foo_db; CREATE user foo_user IDENTIFIED BY 'foo_password'; GRANT ALL ON foo_db.* TO 'foo_user'@'%';
You need to login to post a comment.