Hi,
In Oracle 8i I can parse a string for the position of a specific character.
Position = INSTR(String_To_Search, Character being searched, Start search at position x in String_To_Search, Occurence)
So
Position = INSTR('abcabc', 'b', 1, 1)
will return 2 since the first occurence of 'b' when starting the search at position 1 of the string to search is at position 2.
Is there an equivalent in DB2 UDB. Currently running version 7.2, soon to upgrade to 8.1.
Thanks for your help,
Bruno