DBを新規作成。

# mysql -u root -p

mysql> create database `xxxx.yy`;

「xxxx.yy」DB専用のユーザ「name.hoge」を作成。

mysql> grant all privileges on `xxx.yy`.* to `name.hoge`@"localhost" identified by
"password";