in reply to Re: Re: VVP:DBI and weird chars
in thread VVP:DBI and weird chars
If you cannot rollback the table to get those old values again, then you must get a fresh dump of the affected records to create a new input file, and/or figure out how to do the updates without doing an exact match on the existing values of "ccode" -- something like:
update rtsdet set ccode='OFAA' where ccode like 'OFAA%' and ...
(if Informix supports the "%" expression in SQL string matches the way Oracle does, then you can include "%" as part of the "old" string pattern in your data file, and it will work as intended)
As for why the funny content got into the table in the first place, I don't see how that would result from either version of your code -- unless there was some subtlety that got munged or left out when you tried to post it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: VVP:DBI and weird chars
by vivekvp (Acolyte) on Mar 28, 2002 at 19:50 UTC |