error when trying to change configuration

I get this error when I try to do a batch configuration change on a bunch of SMs:

Configure Elements: java.rmi.ServerException: RemoteException occurred in server thread; nested exception:
java.rmi.RemoteException: Schedule Failed; nested exception is:
java.rmi.RemoteException: Schedule Task Failed; nested exception is:
java.rmi.RemoteException: java.sql.SQLException: the table ‘LogEvent_01_10_00’ is full

First: Does this happen whenever you do a single unit? How big is the batch?

How big is that table and what O/S are you running?

Could be a pointer size maybe on that table? I’m not sure of the details. But altering the table’s max rows could help (doing that would delete rows, so a backup is necessary)…

What does this the following show

show table status from yourdb like 'LogEvent_01_10_00’


MySQL table size is limited to 4TB on NTFS, and 4TB on EXT3 (Linux)…I doubt you’ve come to that size!

May need to get eliminate some data (migrate to new table as archive)…

Let me know, thanks.

Rich