Archive for December, 2008

WordPress SEO

Thursday, December 11th, 2008

Tips…

Monitor All SQL Queries in MySQL

Thursday, December 4th, 2008

Helpful guide to enable dynamic logging of SQL queries on MySQL (xampp). Link

Using the New MySQL Query Profiler

Wednesday, December 3rd, 2008

To enable Profiling on MySQL:

mysql> set profiling=1;
Query OK, 0 rows affected (0.00 sec)

To view SQL Profiles:

mysql> show profiles;

For additional instructions, go to: http://dev.mysql.com/tech-resources/articles/using-new-query-profiler.html

How to access MySQL from Windows Command Prompt

Wednesday, December 3rd, 2008

Steps:

1. Run ‘Command Prompt’
Start > Run > Type ‘cmd’ then click ‘Ok’

2. Go to MySQL bin folder
Type “cd c:\xampp\mysql\bin

3. Then, type ‘mysql -u root -p’

For additional instructions, go to this site: http://www.makeyougohmm.com/20040609/806/