Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Expertise Requires With Data Extraction
fgj001_at_yahoo.com wrote:
>rtrim seems like have a bug -
>
>SQL> select rtrim('POSITION_DATA_A_V','_A_V') from dual;
>
>POSITION_DAT
>
>SQL>
>
>an extra 'A' was removed.
I suspect the _ is causing problems, look at this outcome:
select rtrim('POSITION_DATA_A_V','_A') from dual SQL> / RTRIM('POSITION_D
results in ( as expected):
RTRIM('POSITION