The Oracle database backs up the dmp file, uses the cmd command to import and export steps, and forgets the Oracle password.

Source: Internet
Author: User

Dmp File Import and Export Steps

-- The path of the datafile is provided at will, but the subsequent file name is dbf

LOGGING
DATAFILE 'd: \ OracleDateFile \ DTBS. dbf'
SIZE 32 M
AUTOEXTEND ON
NEXT 32 m maxsize 2048 M
Extent management local;

-- Create a user and specify a tablespace
Create user test identified by "123456" default tablespace DTBS;

Grant connect, resource, dba to test;

Imp user/pw file = file path full = y

-- Delete tables under users and users
Drop user test cascade;

-- Delete tablespaces and physical files
Drop tablespace DTBS including contents and datafiles;

What should I do if I forget my username and password in Oracle?
(1) Open cmd and enter sqlplus/nolog and press Enter;
(2) Enter conn/as sysdba;
(3). alter user system identified by password
(4). exit
(5). log on

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.