Subject | RE: Random updates? |
---|---|
Author | Svein Erling Tysvær |
Post date | 2011-09-07T07:01:55Z |
>I've tried recreating the PK and various other stuff, the only thingActually, using
>that seems to help is to use a constant rather than a parameter.
UPDATE MyTable M
SET M.MyField = 'Y'
WHERE M.MyPK+0 = :MyPK
and thus eliminate the use of the primary key index, also seems to work. Though I'm still puzzled and not happy with that 'solution'.
Set