Tagged Questions

2
votes
4answers
70 views

Oracle: using IN clause with text field?

I have some legacy data where there's a VARCHAR2(100) field SUBID that has comma-delimited data: empno subid 1 1, 3, 2 2 18,19, 3, 6, 9 etc. I need to write the equivalent of select ...
1
vote
5answers
3k views

Does PL/SQL have an equivalent StringTokenizer to Java's?

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 ...
-1
votes
1answer
127 views

parse CSV file .. problem with managing primary key?

i just created a java file to parse a csv files and saved them into an oracle database.. but i need a field ID which acts as a primary key.. and i am a bit confused abt looping..