Collections:
Invoke Original Export/Import Utiities in Oracle
How To Invoke Original Export/Import Utilities in Oracle?
✍: FYIcenter.com
If you really want to run the original export import utilities, you can still go to "bin" directory of the Oracle server path and run the "exp" or "imp" command. The tutorial exercise below tells you how to run the export and import utilities in help modes:
>cd \oraclexe\app\oracle\product\10.2.0\server\BIN
>exp help=y
You can let Export prompt you for parameters by entering the
EXP command followed by your username/password:
Example: EXP SCOTT/TIGER
Or, you can control how Export runs by entering the EXP
command followed by various arguments. To specify parameters,
you use:
Format: EXP KEYWORD=value or
KEYWORD=(value1,value2,...,valueN)
Example: EXP SCOTT/TIGER GRANTS=Y TABLES=(EMP,DEPT,MGR)
or TABLES=(T1:P1,T1:P2), if T1 is partitioned
table
......
>imp help=y
......
⇒ ODBC Drivers and DSN Configuration for Oracle
⇐ Original Export/Import Utilities in Oracle
2016-10-15, 2360🔥, 0💬
Popular Posts:
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...