Export/Import Utility in Oracle 10g
I am new to Oracle Database ad need help on Oracle exp/imp utility
I am trying to export and import a schema from my Prod database to Dev database. i am using the below syntax :
exp USERID=scott/password@DEV_DB file=PROD.dmp log= PROD.log buffer=2097152 owner=Scott
and imp USERID=scott/password@DEV_DB file=PROD.dmp log= DEV.log buffer=2097152 owner=Scott
I am using the same user(scott) to login for export and import.
Please let me know if this is the correct syntax or do i need to add any parameters.