how to export dump file for oracle10g I tried in the following way SQL> expdp dump dumfile=filename.dmp
问题 I tried to dump but I am getting a error in SQL command prompt. How to export dump file for oracle10g I tried in the follwing way: SQL> expdp dump dumfile=filename.dmp 回答1: expdp is an operating system command, not an SQL command. You need to run it from an operating system command prompt. There is more information in the documentation, including descriptions of the command parameters (and as noted it is dumpfile rather than dumfile ), and they provide examples. If you haven't used it before,