To disable this warning: 1. Allocate a new TS_ID for the new Setting record by updating the TS_ LASTIDS table. UPDATE TS_LASTIDS SET TS_LASTID = TS_LASTID + 1 WHERE TS_TABLEID = 182;
When attempting to calculate " lastid " values for AE tables, the SQL used could sometimes cause deadlocks and slowing down of the AE interface. Upgrading to 10.1.5 clears up the issue by modifying the queries used when updating tables.
update TS_NOTIFICATIONEVENTS set TS_TIME=2000000002 /* date from distant future */ where TS_DELAYED=1 and TS_TIME=0 and TS_ID < (select TS_ LASTID - 100 from TS_ LASTIDS where TS_NAME = 'NotificationEvents');
1. Allocate a new TS_ID for the new setting record by updating the TS_ LASTIDS table. UPDATE TS_LASTIDS SET TS_LASTID = TS_LASTID + 1 WHERE TS_TABLEID = 56;