Dear all,
can I import data from one oracle table "table_STO" to another table (with different name) "table_FUN" and How could I perform it?
Thanks in advance!
1. Write a plsql procedure to read from one table to write to another.
2. Export from source table to a flat file and use sqlloader to load it into target table.
3. Use a tool like TOAD to create sql statements from the source table, modify the result by changing the name of the table and execute it.
If you definitely want to do this using import, the easiest way is to import the table with the old name, then use "alter table" to rename the table to the new name.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.