EXPDP - exclude same and different tables in different schemas
THX for any help!
I've created four schemas, which contain tables with the same name and and contain also tables with different names.
Now I would like to exclude specified tables of the schemas from the backup ... I'll be able to define owner and table_name as a list of tables excluded from expdp ...
the owners / tables:
select owner, table_name from dba_tables where owner like 'BACKUPTEST%' order by 1,2;
OWNER TABLE_NAME
---------------------------------------- ----------------------------------------
BACKUPTEST1 MY_TEST_TABLE_1
MY_TEST_TABLE_2
MY_TEST_TABLE_3
MY_TEST_TABLE_4
MY_TEST_TABLE_5
BACKUPTEST2 MY_TEST_TABLE_1
MY_TEST_TABLE_2
MY_TEST_TABLE_3