I am trying to replace part of description text in a table by running this query:
UPDATE job_operations SET description = REPLACE(description, '1234', '5678') WHERE description LIKE '%1234%'
It ends with error:
"[LNA][Pervasive][ODBC Engine Interface][Data Record Manager]The chunk offset is too big(Btrieve Error 103)"
The column description is defined as Char(30) and my version of Pervasive is 9.52.
I can't find solution anywhere, so I am trying my luck here. Thank you very much for any help.