Hi Rajeev,
Quote:
Originally Posted by rajeev kanta
SP2-0734 : unknown command beginning "exp sys/..." - rest of line ignored
|
this is a sql*plus error message.
Exp is an os executable thus you should run it from windows command line.
Running exp from within sql*plus is possible but then you must put "host" or "$" at the start of line:
Code:
SQL>host exp system/manager file = scott.dmp log = scott.log table = scott.emp
LRM-00101: unknown parameter name 'table'
EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
EXP-00000: Export terminated unsuccessfully
SQL>$ exp system/manager file = scott.dmp log = scott.log table = scott.emp
LRM-00101: unknown parameter name 'table'
EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
EXP-00000: Export terminated unsuccessfully
After running the exp you return to sql*plus with the "exit" command.
Also note that the "table" parameter is wrong, the correct syntax is "tables=...".
Your ORACLE_HOME is set OK as you were able to run sql*plus.