Can anyone help me with the below query. Do no of column should match in source and target table while export and import data from source to destination using datapump in Oracle 11.1
Eg: we are exporting sourcedb.tab(10 columns) and importing to targetdb.tab(11 columns).
Will this work or will give an error.
It won't work, as far as I can tell. Target table has to match the source table.
So, what can you do?
create a database link between those two databases and insert rows manually, e.g.
drop 11th column from the target table, perform import and then alter table to re-create the 11th column