/
Troubleshooting SQL Errors - RTA Classic
Troubleshooting SQL Errors - RTA Classic
Error: “Arithmetic overflow error converting IDENTITY to data type numeric”
Have their dba execute the below SQL queries on their RTAFleet database:
ALTER TABLE {table name} drop column A4GLIDENTITY
GO
ALTER TABLE {table name} add [A4GLIDENTITY] [numeric] (9, 0) IDENTITY (1,1) NOT NULL
GO
This error occurs when there is a counter issue with the A4GLIDENTITY column in the table. It can happen when records are deleted from that table.
Error: ‘Try_Convert’ is not a recognized built-in function name.
This is due to their SQL Server being on an older version than 2017. If they are already running SQL Server 2017, then they have the Compatibility Level on the database set lower than 2017. Have their DBA go into the RTAFleet database properties > Options > change the Compatibility Level to the highest option.
, multiple selections available,
Related content
94-xx Error Code
94-xx Error Code
More like this
How to Migrate to a New Server(SQL)
How to Migrate to a New Server(SQL)
More like this
Object Error!
Object Error!
More like this
Support - RTA's Support Process
Support - RTA's Support Process
More like this
Transaction log for database [...] is full Error
Transaction log for database [...] is full Error
More like this