Mysql: How to clear the screen from command prompt?
Aug 01, 2009 - by kurinchilamp / MySql / Post Comment
Command to clear the screen content from command prompt in MySQL
mysql> \! clear
Continue Reading
How to shutdown Mysql from command prompt?
Feb 10, 2009 - by kurinchilamp / MySql / Post Comment
To shutdown mysql from command prompt, issue the following command in Linux box
[root@computer /]# mysqladmin -u root -p shutdown
In windows,
C:\mysql\bin> mysqladmin -u root -p shutdown _
Continue Reading
windows command prompt mysql start stop
Jan 20, 2009 - by kurinchilamp / MySql / Post Comment
To start MySQL service from Windows command prompt
c:\mysql\bin> net start mysql
To stop MySQL service from Windows command prompt
c:\mysql\bin> net stop mysql
Continue Reading