I have a problem in writing the query for separating the data from one column to multiple column.
Example:
Col1
---------------------------
bank.wrong.transaction
bank.wrong.transaction.captured
business.unit.explored.wrong.way
application.failed
need to put the data into columns like this:
col1 col2 col3
-------------------------------------------------
wrong transaction null
wrong transaction captured
unit explored wrong
failed null null
I don’t know the length of any string at all.
Please help me with this.
Thanks
Saha..
something like the following could be used to get your requested output (cant recall where i robbed the ParseString function from – but i use it all the time, works great)