Seaquel
SQL Server error code

SQL Server error 2570

SQL Server raises error 2570 at severity 16, which marks a problem with the query or data that you can correct.

Page %S_PGID, slot %d in object ID %d, index ID %d, partition ID %I64d, alloc unit ID %I64d (type "%.*ls"). Column "%.*ls" value is out of range for data type "%.*ls". Update column to a legal value.
Msg2570
NameDBCC_COLUMN_VALUE_OUT_OF_RANGE
Severity16
Group2000–2999

What it means

The column value that's contained in the specified column is outside the range of possible values for the column data type. If you have invalid data in a table column, you might encounter problems, depending on the type of operations performed against the invalid data. However, it's also possible that no problem will appear, and the invalid data won't be discovered until you execute a DBCC CHECKDB or DBCC CHECKTABLE command.

Source: Database Engine events and errors