How To Restore An Oracle Dump Using Imp Command

The next steps volition direct us inward the restoration of an oracle dump file.
  1. connect equally organisation as well as operate inward your password
  2. sqplus system@xe 
  3. create user
  4. create user TEST_USER identified past times password; 
  5. grant roles
  6. grant CREATE SESSION, ALTER SESSION, CREATE DATABASE LINK, -   CREATE MATERIALIZED VIEW, CREATE PROCEDURE, CREATE PUBLIC SYNONYM, -   CREATE ROLE, CREATE SEQUENCE, CREATE SYNONYM, CREATE TABLE, -    CREATE TRIGGER, CREATE TYPE, CREATE VIEW, UNLIMITED TABLESPACE -   to TEST_USER; 
  7. create permanent tabular array space
  8. CREATE TABLESPACE testuser DATAFILE 'testuser.dat' SIZE 20M AUTOEXTEND ON; 
  9. import the dump file
  10. imp system/password@xe file=d:\testuser.dmp fromuser=TEST_USER touser=TEST_USER log=d:\test_user_import.log 
The higher upwards steps is amongst the supposition that we've created an oracle database backup using exp tool.
Next
Previous
Click here for Comments

0 komentar:

Please comment if there are any that need to be asked.