did you know you can do a symbolic link in linux for your database?
#cd /var/lib/mysql
#ln -s cpm177 cpm177b
this creates a "mirror" of database cpm177 called cpm177b.
you can then do this:
grant all privileges on cpm177b.* to cpm177b@localhost identified by 'someone-else';
I have a website/database system where the linux username is what the system looks for as the database. with this I can have two sites depend on the same database.
just thought that was cool and worth sharing!