Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
148 views1 page

How To Use Oracle Dump File To Import

This document provides instructions for importing an Oracle database dump file using the imp utility. It first shows the command to import the SUPPLIER2.dmp file with the FULL parameter set to 'Y'. It then outlines the steps to import a database, which are to create a target user, grant necessary privileges to that user, and finally run the imp command specifying the file, user, and FULL parameter.

Uploaded by

Azhar Mulla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
148 views1 page

How To Use Oracle Dump File To Import

This document provides instructions for importing an Oracle database dump file using the imp utility. It first shows the command to import the SUPPLIER2.dmp file with the FULL parameter set to 'Y'. It then outlines the steps to import a database, which are to create a target user, grant necessary privileges to that user, and finally run the imp command specifying the file, user, and FULL parameter.

Uploaded by

Azhar Mulla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like