Delphi / Object Pascal · Database exception

BDE Error 9479 ($2507) - Table Is Full

What does BDE Error 9479 ($2507) - Table Is Full mean in Delphi / Object Pascal?

Raised when an insert can't proceed because the target table has reached a hard size or record-count limit for its table type, most relevant to local Paradox tables, which have historical size ceilings.

BDE Error 9479 ($2507) - Table Is FullDelphi (VCL) · Delphi (BDE)

Condition

Raised when an insert can't proceed because the target table has reached a hard size or record-count limit for its table type, most relevant to local Paradox tables, which have historical size ceilings.

Fix

Check whether the table format has a documented row or size limit being approached, archive or purge old data, or migrate the table to a backend without that ceiling (SQL Server, Firebird, etc.) if the application has outgrown local tables.

Related database exception