What is the best way to reduce the size of ibdata in mysql?

The busiest file in the InnoDB infrastructure is /var/lib/mysql/ibdata1 This file normally houses many classes of information (when innodb_file_per_table is 0) Table

Read more

remove duplicate mysql table

ALTER IGNORE TABLE `cdr` ADD UNIQUE(`uniqueid`)      

Read more

How to convert all tables from MyISAM into InnoDB?

If you omit the ENGINE option, the default storage engine is used. Normally, this is MyISAM, but you can change it by

Read more

innodb vs myisam : comparision of mysql database engines

MYISAM: MYISAM supports Table-level Locking MyISAM designed for need of speed MyISAM does not support foreign keys hence we call

Read more

mysql database replication : How To Step by Step: master -slave replication

Here we will help you to setup master-slave replication between MySQL servers. Setup Details: Master Server: 10.0.10.12 Slave  Server: 10.0.10.18

Read more

JOINs in MySQL and Other Relational Databases

INNER JOIN (or just JOIN) The most frequently used clause is INNER JOIN. This produces a set of records which

Read more