Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: TRIM and SUBSTR not working
ah ... then I recall incorrectly.
How about cursor sharing?
ORA92> select trim('Hello ') from dual;
TRIM('HELLO')
ORA92> show parameter cursor_sharing
NAME TYPEVALUE
cursor_sharing stringSIMILAR
Session altered.
ORA92> select trim('Hello ') from dual;
TRIM(
Anurag Received on Thu Feb 10 2005 - 15:18:27 CST