The above commands are for Windows. In UNIX/LINUX you have to further escape all the special characters. Something like this.
expdp user/password@connectstrin
Main Topics
Browse All TopicsHi Guys,
Based on the illustration I have below:
OWNER OBJECT_TYPE OBJECT_NAME
--------------------------
CSAM_INT PACKAGE BODY INT_REQUEST
CSAM_LIB PACKAGE BODY PLOG
CSAM_MPI PACKAGE CG$ACT_LETTER_RECIPIENT
CSAM_MPI PACKAGE BODY CG$ACT_LETTER_RECIPIENT
CSAM_MPI PACKAGE BODY MIGRATE_ORG_AND_PATIENTS
CSAM_MPI VIEW V_RPT_AVAIL_INFO_ELEMS
CSAM_MPI2 PACKAGE BODY MIGRATE_ORG_AND_PATIENTS
CSAM_ODS VIEW V_MON_QUEUE_STATS
SYS PACKAGE CG$CLP_DATA_TYPE
SYS PACKAGE CG$DSP_ELEMENT
SYS PACKAGE BODY CG$CLP_DATA_TYPE
SYS PACKAGE BODY CG$DSP_ELEMENT
SYS PACKAGE BODY CG$DSP_PROPERTY
Is there any way I can do an export/import process to simply focus on the listed OBJECT_TYPEs? The source DB is created using Oracle 10g while the target DB is 11g.
If export/import is not applicable, please show me another way.
Thanks in advance,
Dreenaj
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If you are unable to get data pump working you may get the scripts of those objects by spooling.
Then format the spooled file to add a slash "/" after every object code. and run the spooled file on the target db to get the objects created.
Or if you have TOAD, you can directly export the scripts.
See the following code. Copy it to a file with extension .sql and run the file from sqlplus using the syntax
@your file name.sql
It will spool the scripts.
Business Accounts
Answer for Membership
by: sujith80Posted on 2008-11-21 at 03:46:42ID: 23012103
Use data pump
g directory=LOG_DIR dumpfile=test.dmp INCLUDE=VIEW:\"IN ('V_RPT_AVAIL_INFO_ELEMS', 'V_MON_QUEUE_STATS' )\",PACKAGE:\"IN ('CG$ACT_LETTER_RECIPIENT' , 'CG$CLP_DATA_TYPE', 'CG$DSP_ELEMENT')\"
g directory=LOG_DIR dumpfile=test.dmp
/articles/ 10g/ Oracle DataPump10 g.php
expdp user/password@connectstrin
impdp user/password@connectstrin
Where LOG_DIR is a directory object where your dump files will be created.
See the link for details on how to use data pump
http://www.oracle-base.com