Hello,
While it is possible to extract finite sets of database objects on exports, is it possible to do this cleanly on an import (having a full database export .dmp)?
For instance, with just the SQLFILE and INCLUDE options I can generate the SQL for just one SCHEMA. Example snippet:
SQLFILE=impDatabase.ddl.txt
INCLUDE=SCHEMA:"='SCOTT'"
I cannot yet filter it easily though to grab just an entire subclass of objects from the export. For instance, I have not figured out how to just get PROCEDURE related objects and not everything else for a schema even using something like this:
SQLFILE=impDatabase.ddl.txt
INCLUDE=SCHEMA:"='SCOTT'"
INCLUDE=PROCEDURE
What am I missing, how can I get all the PROCEDURE (or INDEX or CONSTRAINTS...) creation commands for a schema from a full database export file?
Thanks,
-Michael