Subject Update Blob field
Author grndeveloper
Hi,

I have a big problem with an update that involves a blob field.
I'm doing something like this:

update myTable
set
myBlobField = (select myBlobField
from myTable
where
myPrimaryKeyField = 1)
where
myPrimaryKeyField != 1;

and after commit it the field myBlobField isn't the same for all the
records of myTable !.

Do you know what's going on ???

Thank you for your time,

Jordi