The database-schema (Source and target) are very large (each has over 350 tables). I have got the task to somehow merge these two tables into one. The data itself (whats in
1st of all, for 350 tables, most probably, would need an dynamic SQL.
CURSOR or a COLLECTION - table of VARCHAR2 with all table names.dynamic SQL.loop through the entire list of the tables name and, for each table generates a string which will be executed as SQL with EXECUTE IMMEDIATE command.