Reputation: 3
Is it possible to concatenate two .csv columns into one database column through Data Load Wizard in oracle APEX?
e.g. I have firstName and lastName in .csv file and want to concanate and insert it in ename database column.
Thanks
Upvotes: 0
Views: 419
Reputation: 344
Assuming this is a recurring process and you cannot change the way the data is coming through, here's a simple approach:
Have all three columns in the table.
Use the wizard to populate values into FirstName and LastName columns and have an after insert trigger that would concatenate the values of those two columns and update it to Ename.
Only use Ename on the forms, reports in the application and do not display FirstName, LastName to the outside world, just use them to populate Ename.
Upvotes: 0