Tables that need to be exported are ASP_D, ASP_E, ASP_F.
Is it possible I can schedule as it is 20GB.How can I do that?
Thanks
Main Topics
Browse All TopicsHi
I am trying to do export of some table which are more then 20GB.
The problem is the database is on remote server.
Is it possible to export dump file directly on to local machine.
How can I do that?
Can you help me with example.
Thanks
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.
With expdp I don't believe you can do that. Data pump exports into an Oracle DIRECTORY object, which is local. You could try creating a network mapped directory.
Data Pump does have a network mode, but it does not create an interim dump file, it is direct database to database.
So I think you need to try regular old export, or try to allocate space on the server in a regular directory or, again, try a network mounted directory.
It is possible:
With the Oracle 10g import utility, you can use a network connection so that you can directly import either a single or multiple table(s) from one server to another. Here are the steps you need to perform in order to import a table or tables from one server to another. First, assume that you have two servers, Server A and Server B, and you want to import a table or tables such as "EMP" and "DEPT" from server "A" to "B."
1. Go to Server B and create a database link that will access the database in Server A.
Example:
SQL> CREATE DATABASE LINK mylink2a CONNECT TO scott IDENTIFIED BY password USING 'mylink2a';
Note that 'scott' is a user in the database in Server "A" and that its password is 'password'.
2. Then, perform the following import dump command.
Example:
# impdp scott2/password2 TABLES=emp,dept DIRECTORY=dpump1 NETWORK_LINK=mylink2a
Note that 'scott2' is a user in the database in Server B and that its password is 'password2'.
I do not see the need to use files here, but if you decide to use single instance Export via Data Pump you will hit the 2GB barier (not in all cases, but this happens often on 32 bits machines).
The workaround:
1. Use filesize parameter like
filesize=1900M
2. use wildcard %U in the DUMPFILE:
DUMPFILE=expdat%U.dmp
So Data Pump will create many dump files.
DP Dump files can not be exported directly to a remote machine.
Only if you use common SAN, NAS, remote disk or some other kind of shared disk drives.
Import is used because the dump files could only be used for imports.
Or ftp can be scheduled on the remote server.
If you would like to use Data Pump then create a local empty DB,
do the DP import via DBlink and after that export locally the DB in files.
If not - use classic export via client but set NLS_LANG appropriatelly.
That is what I thought, I checked docs yesterday, and it is correct, to export with data[ pump remotely requires an actual Oracle instance plus a DB link, which will not exist for a pure client. So expdp cannot work like the old exp remote method. That is one thing I will miss if they ever remove exp completely.
I am not running expdb on my local machine it is on development machine and has dev DB running.
I am planning to export from prod to dev box over DB Link. and then import the data on to development.
All I need is stesp to export table and import using datapump.
As we are not having enough disk space I want to do export on to more then one disk.
I have disk1, and disk5 free which are of 15GB each but the table size is more then 23GB so we need to export on to diff disk and import.
I am looking for steps to perform this operation.
Thanks
The steps are described above.
Syntactically they are not long, but need some training.
If you have not enough space think about commpressed tablespaces, but also about the danger to hit some bugs.
Also please be aware that the using the method I find in my notes the data will be directly entered in the database, in the tables. So the tablespaces should be created. Do not expect that you will get dmp files - the method works other way, it is import and imports the data immediatelly.
I have specified smaller filesize and given two destination directories the files are distributed equally in both directories and now it working fine.
Export the scott schema from orcl database and split the dump file into three files. The dump files will be stored in three different location. This method is especially useful if you do not have enough space in one file system to perform the complete expdp job. After export is successful, import the dump file into ordb database.
Expdp parfile content:
userid=system/password@orc
logfile=schemaexp_split.lo
directory=dumplocation
dumpfile=dump1:schemaexp_%
filesize=50M
schemas=scott
include=table
Backup LISTENER.ORA file!!!!!!!
In ...\network\admin open listener.ora
see
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = D:\Ora10g)
(PROGRAM = extproc)
)
(SID_DESC =
(SID_NAME = test)
(ORACLE_HOME = D:\Ora10g)
)
)
Add the entry
(SID_DESC =
(SID_NAME = test)
(ORACLE_HOME = D:\Ora10g)
)
with regard to the particular Oracle Home and SID Name.
In Oracle 11g you have to create from scratch in the listener.ora file the section
SID_LIST_LISTENER =
&..
mentioned above.
Restart the listener:
c:>lsnrctl stop
c:>lsnctl start
Business Accounts
Answer for Membership
by: basiranaPosted on 2009-07-07 at 09:37:21ID: 24795777
Remote DB name is rdb1
Local DB name is ldb1
remote machine is rmachine1
local machine name is lmachine1