How to use oracle dump file to import ?
SUPPLIER2.dmp
imp supplier2/trpass123@orcl file='D:\SUPPLIER2\SUPPLIER2.dmp' FULL='Y'
file=D:\SUPPLIER2\SUPPLIER2.dmp full=Y
How to use import database in oracle using imp utility ?
1. Create the target user first
SQL> create user supplier2 identified by trpass123 default tablespace users quot
a unlimited on users;
User created.
2. Provide necessary privillages to user
SQL> grant connect, create session, imp_full_database to supplier2;
Grant succeeded.
3. Finally importing dump file
C:\Documents and Settings\Admin>imp supplier2/trpass123@orcl file=D:\SUPPLIER2\SUPPLIER2.dmp
full=Y