MySql
Wednesday, 4 September 2013
Command to check the number of connections to mysql server
netstat -antp | grep :3306 | wc -l
load database from mysql command prompt
This command comes very handy when importing a database
mysql>
create database
new_database;
mysql>use new_database;
mysql>source /tmp/database_35.sql
Newer Posts
Home
Subscribe to:
Comments (Atom)