Oracle Importing DMP files

Source: Internet
Author: User
Tags import database

First describe the DMP file:

Typically, the backup files exported by the Oracle database through the EXP or EXPDP commands are terminated with DMP.
This file is an Oracle logical backup file that is commonly used for database logical backups, database migrations, and so on.

Oracle Import Backup File step: I'm using the Oracle 11g version

1. Put the backup file of the database: XX. DMP Copy to D:\work\app\admin\orcl\dpdump directory

Do the following in your Plsql developer: Step 2-4

2. Create Tablespace xx.dbf

Create tablespace shjwms datafile ' D:\work\app\admin\orcl\dpdump\xx.dbf ' size 500m
Reuse Autoextend on next 10m maxsize unlimited extent management local autoallocate permanent online;

3. Create a user

Create user shjwms identified by admin;

4. To the user Authorized

Grant CONNECT,RESOURCE,DBA to Shjwms;

5.cmd Run the following code

--Import Database files
IMPDP Admin/[email protected] dumpfile=xx. DMP schemas=xx Log=xx.log

Oracle Importing DMP files

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.