How to split the following string?
A.x IN (changeList),
changeList has the following value, so that it makes the clause like this:
A.x IN (HEXTORAW('1E2956B9266F11DDA85810000000C959'),HEXTORAW
('ADD834AD6A3911DF923C10000000C959'),HEX...........
The above IN has more than 1000 values and hence ORA-01795 error, how to modify it so that i have
A.X IN (id1, ..id999) OR A.x IN (id1000,...), Any c code would help me...