I have a database which gets populated with results from sports events. A few days ago I realized that results are not being written down. I'm using MySQL 5.6.14 on Ubuntu Linux 64 bit.
I have tried these steps so far:
Check all logs I can find. No errors in any log file.
Status of the largest table:
mysql> show table status like 'results'; +---------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+ | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | +---------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+ | results | InnoDB | 10 | Compact | 1774207 | 222 | 394149888 | 0 | 218644480 | 28311552 | NULL | 2014-07-03 21:40:39 | NULL | NULL | latin1_swedish_ci | NULL | | | +---------+--------+---------+------------+---------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-------------------+----------+----------------+---------+ 1 row in set (0.00 sec)
- Number of rows for largest table:
mysql> select count(*) from results; +----------+ | count(*) | +----------+ | 1763471 | +----------+ 1 row in set (0.89 sec)
- Tried to find any limit which I exceed but have not found any.
Any ideas on what I can do?
insert
manually? – Markus Malkusch