1. Login in to the mysql client using the login name and password provided by your instructor.
2. View the existing databases that the MySQL Server is maintaining.
mysql> SHOW DATABASES;
3. There should be only three databases that the MySQL Server is maintaining:
INFORMATION_SCHEMA, mysql and test. Remove any additional databases that exist.
If need be, mysql> DROP DATABASE db_name;
4. Create a new database called photo_album with a default character set of utf8.
mysql> CREATE DATABASE photo_album CHARACTER SET utf8;
5. Using the mysql client, verify that the database was created.
mysql> SHOW DATABASES;
6. View the contents of the /usr/local/mysql/data directory. Is there a new sub-directory associated with
the database just created?
>ls /usr/local/mysql/data/
7. View the db.opt file located in the associated sub-directory to verify the correct default character set
is being used. What collation type has been assigned as default? Does that make sense for the
character set chosen?
> more /usr/local/mysql/data/photo_album/db.opt
Comments
Post a Comment