Posts

Showing posts with the label exclude=table

Exclude some tables from schema export

  exporting schema excluding some tables: To exclude table from EXPDP Backup. Let's take a case, you have 100 tables in your schema and you want to export only 99 of them except two which are huge in size and already available at destination. Here, expdp   exclude=table:"in\('EMP'\,'DEPT'\)"   parameter is best for DBA . Make sure you provide table name in upper case, since values given are case sensitive.   expdp scott/***** directory=dpump schemas=scott dumpfile=scottdmp  logfile=scott.log exclude=table:"in\('emp'\,'emp_no'\)" Estimate in progress using BLOCKS method... Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA Total estimation using BLOCKS method: 78.68 MB Processing object type SCHEMA_EXPORT/USER Processing object type SCHEMA_EXPORT/SYSTEM_GRANT Processing object type SCHEMA_EXPORT/ROLE_GRANT Processing object type SCHEMA_EXPORT/DEFAULT_ROLE Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA Processing objec...