sql - "+" at end of column data? -
i inserting string data database find full word not show up. show first 9 characters of word , "+" sign.
portabili+
new enrol+
instead of "portability" , "new enrollment".
initially, datatype column had been varchar2(10 bytes) thought might problem.
i have since changed 100 bytes using alter table statement , have inserted new data see if show full word still doesn't show.
any ideas why? ways/reasons why data can auto-truncated?
solution: figured out. answer change size, however, had clear cache on application server , truncate several cache tables in db relating application. larger column size reflected in db , full word shows.
it sounds data truncated on insertion. growing column can't bring data truncated.
Comments
Post a Comment