I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to use that. Anyone know of a pl/sql implementation? Some useful alternative?
|
if you have APEX installed, the function |
|||||
|
|
PL/SQL does not come with a built-in tokenizer. However, it is relatively simple to build out of SQL or PL/SQL. Adrian Billington's web site has several solutions. In addition, if you are on 10g, you could use this code from Tanel Poder, which does it in SQL using regex. Admittedly it would be easier if Oracle just included the dang facility as one of their built-ins. |
|||
|
|
PL/SQL does include a basic one for comma separated lists ( Example:
Or see this Ask Tom link for other ideas... |
|||
|
|
An alternative is to write a Java stored proc (there is a JVM inside the database), that means you can use java.util.StringTokenizer. You have to wrap a Java stored proc inside a PL/SQL procedure/function. Se here for an example: http://forums.oracle.com/forums/thread.jspa?messageID=2575374� Sadly I donĂ½ understand Java's checked exceptions so the exception handling isn't really great (I'm not a Java dev). |
|||
|
|
|
An example of a mapreducy parallelized pl/sql tokenizer : http://blogs.oracle.com/datawarehousing/2009/10/in-database%5Fmap-reduce.html |
|||
|
|