Archive for the 'MySQL Database' Category

MySQL: How to add column to existing table

Wednesday, March 11th, 2009

Many ways to add column to existing table in MySQL. If you r using GUI tools, add column to table in MySQL is easy. If you are using CLI, then here’s the command to add column in MySQL table.
To add column in existing table, you may refer to the 2 examples below:-

How to monitor sql query in mysql?

Sunday, February 22nd, 2009

Monitor what sql query is running in mysql is very import for performance analysis. By monitor sql query, you are be able to know what is running at the backend. if your framework logs all sql queries then you can monitor from there, if not, you might need to turn on mysql log to monitor [...]

Turn on MySQL query cache to speed up query performance?

Wednesday, October 11th, 2006

Many times developers looking for ways to speed up query, in mysql we can enable query cache to speed up query performance. Whenever query cache is enable, it will cache the query in memory and boost query performance.
As we know, speed is always the most important element in developing a website especially for those high [...]