S05016
Error Code
S05016
Error Message
An in-memory table can't exceed 2 billion rows. RefId: S05016
Probable Causes
This error occurs when the number of rows for an in-memory table exceeds its limit — 2,147,483,647.
For example, an error may arise at the second data appending because the number of rows, 2147483648, exceeds the limit.
t = table(2147483646l:2147483646l, `a`b, [INT, INT])
t.append!(table([1] as a, [2] as b))
t.append!(table([1] as a, [2] as b)) // Error
Solutions
Ensure that the number of rows for each in-memory table does not exceed 2,147,483,647.