I have a situation where I need to create/alter a table (External Table) in Oracle every time I get the data in files. Since the number of data files keep changing I need to modify the "location" property of the external table. I use this table to update many other tables in the database.
Will the creating/altering the table at run time be of any help performance wise or rather will it hurt the performance of the code?
P.S: The performance I am looking here the time taken to update the other tables by accessing this external table.