User paste the data into Oracle Forms from excel/Email.
Issue: data saving into oracle database in a cell as multi line.
Solution:
Sè Form pre-insert, pre_update
:XXTABLE.EMP_ID :=
replace(replace(:XXTABLE.EMP_ID ,chr(10)),chr(13));
select replace(replace(EMP_ID,chr(10)),chr(13)) ,
replace(replace(ARABIC_NAME,chr(10)),chr(13)) arab,
replace(replace(ENGLISH_NAME,chr(10)),chr(13)) eng
FROM XXTABLE
WHERE EMP_ID LIKE '12345%';
No comments:
Post a Comment