I just went through the online documentations, and found that when using SQL loader to load flat files, if you wish to make join on another table in order to get values from that table. It is not possible. We need to use external tables in this approach. Please confirm if this is true. Is there any way we can join another table when using SQL loaders?
I just went through the online documentations, and found that when using SQL loader
Share
It is true. You could load into a staging table, and then after the load run a procedure that selects from that and joins to another table. Or you could change to using an external table, which is generally to be preferred.