DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Oracle Import / Export help

  1. #1
    Join Date
    Mar 2015
    Posts
    1

    Oracle Import / Export help

    Hi,

    I am learning Oracle export/import options and I wanted to find a way as stated

    I have a destination database that I want to import a dump file to but exclude some schemas.

    I exported schemas using

    expdp user1/pass full=Y dir=tmp dumpfile=node1.expdp.dmp


    on the target node,
    I want to import full db excluding sys,system,dbsnmp schemas.

    is there an option to use IMPDP in linux?



    Any help/guidance is much appreciated.

    Regards,
    An

  2. #2
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    Try doing the exlude on the export. Then you won't have to wait for schema's to export that you don't want to move.

    [CODE]
    expdp user1/pass full=Y dir=tmp dumpfile=node1.expdp.dmp EXCLUDE=SCHEMA:"IN ('SYS','SYSTEM', 'DBSNMP', 'OUTLN')"
    [\CODE]

  3. #3
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    Try doing the exlude on the export. Then you won't have to wait for schema's to export that you don't want to move.

    Code:
    expdp user1/pass full=Y dir=tmp dumpfile=node1.expdp.dmp EXCLUDE=SCHEMA:"IN ('SYS','SYSTEM', 'DBSNMP', 'OUTLN')"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width