Hi gurus,
I have a # separated string that can be greater than 4000 chars in
length. Here is an example : abababa#2121212 #vbvbvbv
I need to get each token in a loop, in a pl sql stored procedure. That
means I need to pass the string as a parameter, in the stored
procedure and to get abababa, 2121212 and vbvbvbv. I guess I cannot
use Varchar2 since a Varchar2 cannot be greater than 4000 chars. I
really a working sample for that.
Thanks,
I have a # separated string that can be greater than 4000 chars in
length. Here is an example : abababa#2121212 #vbvbvbv
I need to get each token in a loop, in a pl sql stored procedure. That
means I need to pass the string as a parameter, in the stored
procedure and to get abababa, 2121212 and vbvbvbv. I guess I cannot
use Varchar2 since a Varchar2 cannot be greater than 4000 chars. I
really a working sample for that.
Thanks,
Comment