mysql> show status like 'com_update';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_update    | 0     |
+---------------+-------+
1 row in set (0.00 sec)

mysql> show status like 'com_insert';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_insert    | 0     |
+---------------+-------+
1 row in set (0.00 sec)

mysql> show status like 'com_select';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_select    | 32    |
+---------------+-------+
1 row in set (0.00 sec)

Ratheesh K J wrote:

Hello all,

I need to find out to some point of accuracy the ratio of Number 
Inserts/Updates to that of Selects. This is because we are thinking of setting 
up a Replication sysytem with one master and one slave. Now replication would 
be optimal only if there if the Select queries are dominating, so how would I 
determine this figure?

Ratheesh Bhat K J




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to