wellster34
Programmer
Hi,
I have a table that has the following:
LEVEL_ID CHAR(2)
LEVEL_DESC_TX VARCHAR2(240)
LEVEL_CAT_TX VARCHAR2(240)
The data file contains a pipe delimited file:
1|FIRST LEVEL|
2|SECOND LEVEL|
3|THIRD LEVEL|
...etc...
The LEVEL_CAT_TX field, I need to merge the contents of the LEVEL_ID & LEVEL_DESC_TX with a hyphen in between.
i.e.
1 - FIRST LEVEL
2 - SECOND LEVEL
Is there a way to populate this 3rd column (LEVEL_CAT_TX) when loading the data??? Or do I have to create a PL/SQL process afterwards to do the concatenation???
Thanks for your time.
I have a table that has the following:
LEVEL_ID CHAR(2)
LEVEL_DESC_TX VARCHAR2(240)
LEVEL_CAT_TX VARCHAR2(240)
The data file contains a pipe delimited file:
1|FIRST LEVEL|
2|SECOND LEVEL|
3|THIRD LEVEL|
...etc...
The LEVEL_CAT_TX field, I need to merge the contents of the LEVEL_ID & LEVEL_DESC_TX with a hyphen in between.
i.e.
1 - FIRST LEVEL
2 - SECOND LEVEL
Is there a way to populate this 3rd column (LEVEL_CAT_TX) when loading the data??? Or do I have to create a PL/SQL process afterwards to do the concatenation???
Thanks for your time.