[ mysql: manually delete ]
6 October 2008
Leave a comment
For Linux based, follow these steps:
1. GOTO: /var/run/mysqld
2. find your database name
3. right click and delete
4. done
For Linux based, follow these steps:
1. GOTO: /var/run/mysqld
2. find your database name
3. right click and delete
4. done
Use this commands:
Note: grant all privileges on *.* blabla.. (for all access)
Please refer instructions below:
1. enter mysql
# mysql -u root -p
2. create database
# create database <your-db-name>;
# use <your-db-name>;
3. exit from mysql
# exit
4. use this command:
# mysql -u root -p <your-db-name> < <your-db-name>;
5. finish
To dump MySQL database:
1. #cd ~/<your-path>
2. use this command:
# mysqldump -u root -p <database-name> > <your-database>.SQL
3. done