DBMS 中的最大行数

2022-01-20 00:00:00 max tuples database row mysql

DBMS(特别是 MySQL)中表的最大行数有限制吗?

Is there any limit to maximum row of table in DBMS (specially MySQL)?

我想创建用于保存日志文件的表,它的行增加如此之快,我想知道我应该做什么来防止出现任何问题.

I want create table for saving logfile and it's row increase so fast I want know what shoud I do to prevent any problem.

推荐答案

您应该定期将日志行移出历史数据库以进行数据挖掘,并将它们从事务数据库中清除.这是一种常见的做法.

You should periodically move log rows out to a historical database for data mining and purge them from the transactional database. It's a common practice.

相关文章