0

I need to perform a datapump in 11.2 and want to exclude some tables but include the metadata only..

i.e. export a schema, but exclude about 12 tables (which is easy enough), but then I need to just export metadata from about 20 tables. Is this possible?

Littlefoot
  • 131,892
  • 15
  • 35
  • 57
user2496011
  • 67
  • 3
  • 12

1 Answers1

0

You'd use the CONTENT parameter. It accepts 3 values:

  • ALL
  • DATA_ONLY
  • METADATA_ONLY -- which is what you're looking for

More info in documentation.

Littlefoot
  • 131,892
  • 15
  • 35
  • 57