14.0
The database update may take much longer than usual. The expected time is 15 - 45 minutes, depending on the database size. Please do not interrupt it. It is recommended to perform the update outside busy hours. (Seriously; this is not copy paste error). |
New
-
Remote actions on PDM.
-
Limits for ticket extension can be set.
Important : If you experience a problem during update like:
|
it is necessary to delete (or modify) record which caused the problem. This is probably FW bug.
You can find the records like this: (Suppose that you are use two decimal places 10e6 ⇒ 10e8)
SELECT * FROM translog WHERE tl_amount >= 10e8
and delete like this:
DELETE FROM translog WHERE tl_amount >= 10e8
or set the value to something lower like this (if you use two decimal places):
UPDATE translog SET tl_amount = (10e8-1) WHERE tl_amount >= 10e8;
then you can continue update.