I have pairs of tables in the format TABLE
and TABLE_TWIN
now
TABLE
is the main table with lots of dataTABLE_TWIN
is a table with the exact same fields with a little data (different data)
Now I would like to copy all rows from TABLE_TWIN
to TABLE
using a stored procedure. I have many such tables and could like the stored procedure to take the table name(s) as parameter(s) so that I can use the same procedure for each table pair. I do not want to write long INSERT
statements because these tables have around 50 attributes each.
I am not good with PL/SQL so I need some help here.
Thanks!