AS SALAMO ALAIKUM WA RAHMATULLAH
REMOVE THE \r\n FROM THE TABLE COLUMN VALUE AND UPDATE.
Select replace(replace(mobile_slno,char(10),''),char(13),'')
from tbl_str_receipt_det
where mobile_slno like'%'+char(13) or mobile_slno like '%'+char(10)
begin transaction a
update tbl_str_receipt_det
set mobile_slno=replace(replace(mobile_slno,char(10),''),char(13),'')
where mobile_slno like'%'+char(13) or mobile_slno like '%'+char(10)
rollback transaction a
MA ASALAAM
Passion 4 Oracle
REMOVE THE \r\n FROM THE TABLE COLUMN VALUE AND UPDATE.
Select replace(replace(mobile_slno,char(10),''),char(13),'')
from tbl_str_receipt_det
where mobile_slno like'%'+char(13) or mobile_slno like '%'+char(10)
begin transaction a
update tbl_str_receipt_det
set mobile_slno=replace(replace(mobile_slno,char(10),''),char(13),'')
where mobile_slno like'%'+char(13) or mobile_slno like '%'+char(10)
rollback transaction a
MA ASALAAM
Passion 4 Oracle