Solved! Go to Solution.
A file geodatabase can hold closer to an infinite number of records, but any one table can
only hold *four* billion records. I wouldn't recommend exceeding ten million, especially in
any one session.
If there are no concrete plans to use the data, and large data volumes cause ArcGIS to
crash, then my recommended solution is to not use file geodatabase for this task. Instead
use a sequence of ASCII files (larger than binary, but more platform-independent) that
combines the date and a rolling sequence number in the filename, capped at one tenth the
expected daily throughput or 1Gb, whichever is smaller. This would give you a lightweight,
scalable solution that won't cloud the performance (creating locks and such) of the file
geodatabase.
- V