Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Invoke the Data Pump Import Utitlity
How To Invoke the Data Pump Import Utitlity? - Oracle DBA FAQ - Loading and Exporting Data
✍: FYIcenter.com
The Data Pump Import utility is distributed as executable file called "impdp.exe". To invoke this utility, you should go to the "bin" directory of your Oracle server installation and run the "impdp" command. Here is tutorial exercise on how to invoke the import utility:
>cd \oraclexe\app\oracle\product\10.2.0\server\BIN
>impdp help=y
Import: Release 10.2.0.1.0 -
The Data Pump Import utility provides a mechanism for
transferring data objects between Oracle databases. The
utility is invoked with the following command:
Example: impdp scott/tiger DIRECTORY=dmpdir
DUMPFILE=scott.dmp
You can control how Import runs by entering the 'impdp'
command followed by various parameters.
Format: impdp KEYWORD=value or
KEYWORD=(value1,value2,...,valueN)
Example: impdp scott/tiger DIRECTORY=dmpdir
DUMPFILE=scott.dmp
USERID must be the first parameter on the command line.
Keyword Description (Default)
----------------------------------------------------------
ATTACH Attach to existing job, e.g. ATTACH [=job name]
DIRECTORY Directory object to be used for dump, log, ...
DUMPFILE List of dumpfiles to import from (expdat.dmp)
FULL Import everything from source (Y).
HELP Display help messages (N).
......
2007-05-01, 5349👍, 0💬
Popular Posts:
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...
Can Two Forms Be Nested? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields Can two forms ...
What will be printed as the resultof the operation below: int x; int modifyvalue() { return(x+=10); ...