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 Export Utility
How To Invoke the Data Pump Export Utility? - Oracle DBA FAQ - Loading and Exporting Data
✍: FYIcenter.com
The Data Pump Export utility is distributed as executable file called "expdp.exe". To invoke this utility, you should go to the "bin" directory of your Oracle server installation and run the "expdp" command. Here is tutorial exercise on how to invoke the export utility:
>cd \oraclexe\app\oracle\product\10.2.0\server\BIN >expdp help=y Export: Release 10.2.0.1.0 - The Data Pump export utility provides a mechanism for transferring data objects between Oracle databases. The utility is invoked with the following command: Example: expdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp You can control how Export runs by entering the 'expdp' command followed by various parameters: Format: expdp KEYWORD=value or KEYWORD=(value1,value2,...,valueN) Example: expdp scott/tiger DUMPFILE=scott.dmp DIRECTORY=dmpdir SCHEMAS=scott or TABLES=(T1:P1,T1:P2) USERID must be the first parameter on the command line. Keyword Description (Default) ------------------------------------------------------------ ATTACH Attach to existing job, e.g. ATTACH [=job name COMPRESSION Reduce size of dumpfile contents where valid keyword values are: (METADATA_ONLY) and NONE. DIRECTORY Directory object to be used for dumpfiles DUMPFILE List of destination dump files (expdat.dmp). FLASHBACK_SCN SCN used to set session snapshot back to. FULL Export entire database (N). HELP Display Help messages (N). ......
2007-05-01, 5512👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
How To Check the Oracle TNS Settings? - Oracle DBA FAQ - ODBC Drivers, DSN Configuration and ASP Con...
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
What is CMM and different levels? explain? The Capability Maturity Model (CMM) is a process capabili...
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...