Corruption can happen to tables that are updated frequently. Since every update requires a write to the table, sometimes tables can become corrupted especially on slower hard drives. The TOPIC_VIEWS table is updated every time someone views a topic so it is an extremely active table.

Since this table only stores temporary data, we can convert it to a heap table so it doesn't write it to disk, it just stores it in memory, which should stop the corruption.