We have a non normalized table that contains foreign key infomration as free text inside a column.
I would like to create a view that will transform and normalize that table.
E.g. a column that contains the following text:
"REFID:12345, REFID2:67890"
I want to create a view that will have REFID1 and REFID2 as 2 separate integer columns.
Is that possible in Oracle? what are the aproaches, and what is the best performing one.