Tagged Questions
The datapump tag has no wiki summary.
2
votes
2answers
32 views
Actual type of a .dmp file
I get .dmp files every so often that I need to load in a database. Some of them are created with datapump and some with exp. Is there a simple way to tell them apart that I could put in a script?
2
votes
1answer
202 views
Export from Oracle 10g database with 11g client
Database Version : 10g Enterprise Edition Release 10.2.0.4.0
Client Version: 11g Enterprise Edition Release 11.2.0.1.0 (windows 7 64bit)
When I try to export (exp) a table from database:
exp ...
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
2answers
484 views
Oracle Data Pump Export script help
I'm trying to do a data pump export for metadata on a tablespace (COURSE). Am I on the right track? My data pump directory was created as:
CREATE DIRECTORY dpump_dir AS '/mydata/data';
Please keep ...
1
vote
2answers
3k views
How to use Data Pump (expdp and impdp) commands from Oracle without tnsnames.ora file
I want to be able to run expdp and impdp onto a machine by directly specifying the connection parameters instead of a tns name that resides in tnsnames.ora. Is this possible?
0
votes
1answer
70 views
Export from Oracle 10g database with 11g client - detailed
Database Version : 10g Enterprise Edition Release 10.2.0.4.0
Client Version: 11g Enterprise Edition Release 11.2.0.1.0 (windows 7 64bit)
When I try to export (exp) a table from database:
exp ...
0
votes
0answers
63 views
What permissions are needed to run an import inside a procedure with dbms_datapump?
I'm running the following procedure:
create or replace
procedure PROC_IMPORT_ARCHIVE(
in_filename in varchar2
)
is
l_dp_handle number;
job_state VARCHAR2(30);
sts ku$_Status;
begin
...
0
votes
0answers
53 views
Can I export using a single dump directory to multiple locations in oracle
I'm trying to do a full database export using expdp utility in oracle 10g. I have a single dump directory that is mapped to a particular file location say /export/dump. I don't want the entire dump ...
0
votes
1answer
131 views
REMAP_DATA functionality from DBMS_DATAPUMP
I am trying to create a datapump export from the API (DBMS_DATAPUMP)
If I use the command line then I can specify REMAP_DATA clauses in the parameter file, meaning the data in particular columns is ...
0
votes
1answer
323 views
Can the arguments BUFFER and DIRECT be used with expdp
I have a strange case where in what this guy says is not happening with me. I am not able to set the above two parameters neither through command line directly, nor using a par file.
expdp -help ...
0
votes
1answer
1k views
Oracle Data Pump import to a sql file error :ORA-31655 no data or metadata objects
I'm using Data Pump to export/import data, one requirement is to import data to a sql file. The OS is window.
I made the follow export :
expdp system/password directory=dpump_dir ...
0
votes
1answer
2k views
Importing a dmp file created by DataPump into Oracle Express 10g
How do i go about importing a .dmp file created by DataPump into Oracle Express 10g
-1
votes
2answers
919 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 ...