Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
Hi,
I want to generate a random one char string of which is not like a char.
select str from (select DBMS_RANDOM.STRING('U',1) str from dual) where str!='A';
some times i am getting NULL. How can i get some char all the time? i want to create a function using this logic. can some one help me to achieve this?
Thanks,
sg