1.--首先查詢目標使用者的當前程序,注意是serial#而不是serial,網上有的介紹漏掉了#:
select sid,serial# from v$session where username='bjrl'; //對應資料庫的使用者名稱,注意大寫
--使用此語句會返回乙個程序列表,每行有兩個數字,然後用數字替代下面的sid和serial
alter system kill session 'sid,serial';
alter system kill session '222,123';
2.--檢視表空間
select username,default_tablespace from dba_users order by username;
3.--刪除使用者
drop user bjrl cascade;
4.--刪除表空間
drop tablespace hxgr including contents and datafiles;
5.--建立資料表空間
create bigfile tablespace hxgr
logging
datafile 'f:\localdbf\bjrl.dbf' size 30720m
autoextend on
next 1024m maxsize unlimited
extent management local;
--bigfile表空間大小不受限制
--hxgr 表空間名稱
--30720m 表空間初始大小
--1024m 表空間大小增量
--f:\localdbf\bjrl.dbf 表空間位置
6.--建立使用者並指定表空間
create user bjrl identified by bjrl
default tablespace hxgr;
7.--給使用者授予許可權
grant connect,resource,dba to bjrl;
8.--給使用者授予建立檢視許可權
grant create view to bjrl;
grant create table to bjrl;
9.--還原/備份語句
imp bjrl/bjrl@orcl file=e:\localdmp\20140731bjrl.dmp fromuser=bjrl touser=bjrl
exp bjrl/bjrl@orcl file=e:\localdmp\20140731bjrl.dmp
exp jeesite/jeesite@orcl file=e:\jeesite.dmp
exp jeesite/jeesite@orcl file=e:\jeesite.dmp full=n log=e:\jeesitelog
--單錶備份與還原(多張表用,分割)
exp jeesite/jeesite@orcl file=e:\jeesite_abc.dmp tables=(abc)
imp jeesite/jeesite@orcl file=e:\jeesite_abc.dmp tables=(abc) fromuser=jeesite touser=jeesite
oracle備份還原資料庫
1 備份資料庫 exp 使用者名稱 密碼 資料庫名 file e oracle date databack 2013 11 03 init dmp。2 還原資料庫 imp 使用者名稱 密碼 資料庫名 file e oracle date databack 2013 11 03 init dmp fu...
Oracle資料庫備份還原
注 以下 如未特別說明,均為sqlplus中執行 sqlplus中連線oracle conn system root 讓備份檔案中包含空表 有些表可能是空表,oracle預設是不會備份空表的 執行以下語句,執行完後得到一些語句集,然後執行這些語句集,如果沒有資料則表示所有表均在備份集中 select...
oracle資料庫的還原與備份
oracle 提供兩個工具 imp.exe 和exp.exe 分別用於匯入和匯出資料。這兩個工具位於 oracle home bin 目錄下。匯入資料 exp 1 將資料庫 atstestdb 完全匯出 使用者名稱 system 密碼123456 匯出到c export.dmp 中exp syste...