Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
976 views

Return code/ exit code for Oracle's DataPump API

I wrapped oracle's IMPDP and EXPDP in a console and could not find a good place for the return codes that these two return. I want to be more specific in pointing out errors than just a 0/1 Pass/Fail. ...
1
vote
1answer
563 views

Migrating Oracle Database with expdp and impdp

Does the target database need to be prepared with tablespace and/or user (schema) in order to successfully migrate a schema from one database (11g R1) to another (11g R2)? Currently I only can make ...
1
vote
1answer
907 views

Oracle: importing data pump dump without knowledge dump file content

Old approach for exporting/importing whole schema: exp user/pwdp@server FILE=export.dmp OWNER=user ROWS=Y imp newuser/pwd@server FULL=Y FILE=export.dmp New approach: expdp user/pwdp@server ...
0
votes
1answer
210 views

Oracle: using impdp from a full DB expdp

I’ve got a full Dump of an Database (all schema, system etc...) Now I want to import just one schema of this file, is this even possible? As far I got this command: impdp sysadm/sysadm@sysadm ...
0
votes
1answer
203 views

How complete is an Oracle11g IMPDP?

I was given the task of upgrading to a new Oracle Database Server (11gR2). The former DBA gave these instructions: Use Embarcadero to export Roles from Old and execute SQL on New Server Use ...
0
votes
1answer
4k views

Is there a good workaround to the Oracle IMPDP REMAP_SCHEMA issue with triggers (ORA-39083, ORA-00942)?

One can use the Oracle data pump import tool (IMPDP.EXE) to import one schema into another using the REMAP_SCHEMA option. However there is an issue in that triggers are not properly remapped. This ...
0
votes
1answer
885 views

How do I append data with Oracle's impdp?

Does impdp always truncate the table before it loads the data even if I don't recreate the meta data? If it does, is there an option to tell it to append the data instead?
-1
votes
2answers
922 views

Lot of time spent with following waits 'SQL*Net message from client' and 'wait for unread message on broadcast channel'

My application that wraps around Oracle Data pump's executables IMPDP and EXPDP takes random amounts of time for the same work. On further investigation, I see it waiting for again random amounts of ...