一、更改資料庫管理員sys/system密碼 1、運行到C盤根目錄 2、輸入:SET ORACLE_SID = 你的SID名稱 3、輸入:sqlplus /nolog 4、輸入:connect /as sysdba 5、輸入:altre user sys identified by sys 6、輸入 ...
一、更改資料庫管理員sys/system密碼
1、運行到C盤根目錄
2、輸入:SET ORACLE_SID = 你的SID名稱
3、輸入:sqlplus /nolog
4、輸入:connect /as sysdba
5、輸入:altre user sys identified by sys
6、輸入:altre user system identified by system
完成後,system的密碼為system
二、導入資料庫(.dmp)
(在sqlplus下運行)
1、創建表空間
create tablespace bjshelldb datafile 'D:\app\Administrator\oradata\orcl\bjshell01.dbf' size 3000M autoextend on;
2、創建用戶
create user BJSHELL identified by 111111 default tablespace bjshelldb;
3、用戶授權
grant connect,resource,create view to BJSHELL;
grant dba to BJSHELL;
grant imp_full_database to BJSHELL;
grant connect,resource to BJSHELL;
4、導入:(在cmd下運行)
imp BJSHELL/111111 file=E:\db\CRM-20160921.dmp log=E:\db\CRM-20160921.log buffer=8000000 commit=y full=y
5、刪除用戶
drop user BJSHELL cascade;
6、刪除表空間
DROP TABLESPACE bjshelldb INCLUDING CONTENTS AND DATAFILES;
7、遠程導出oracle資料庫(.dmp)
exp 用戶名/密碼@遠程oralce資料庫的IP:埠號/實例 file=存放位置:\文件名.dmp full = y;