主頁 > 知識庫 > Oracle數(shù)據(jù)庫遷移方案

Oracle數(shù)據(jù)庫遷移方案

熱門標(biāo)簽:哈爾濱電話機(jī)器人銷售招聘 山東crm外呼系統(tǒng)軟件 愛客外呼系統(tǒng)怎么樣 開發(fā)外呼系統(tǒng) 慧營銷crm外呼系統(tǒng)丹丹 哪個(gè)400外呼系統(tǒng)好 地圖標(biāo)注養(yǎng)老院 百度地圖標(biāo)注途經(jīng)點(diǎn) 圖吧網(wǎng)站地圖標(biāo)注

1 在數(shù)據(jù)遷移時(shí),用戶首先有權(quán)限修改數(shù)據(jù)庫,并且進(jìn)行表空間創(chuàng)建、刪除等權(quán)利

例如:

select * from dba_tab_privs where grantee='SCOT'; ---查看SCOTT權(quán)限(sys用戶登錄)

顯示結(jié)果為:

select * from dba_role_privs where grantee='SCOT'; --查看SCOTT角色

顯示結(jié)果為:

(1) 如果用戶被鎖定通過以下語句來解鎖表

alter user scott account unlock; --解鎖表

(2) 授予用戶權(quán)限

grant connect to scott; --連接數(shù)據(jù)庫權(quán)限
grant resource to scott; --授予創(chuàng)建表等基本權(quán)限
grant dba to scott; --授予DBA權(quán)限

2 建立表空間

嚴(yán)格意義上在先執(zhí)行如下命令而不是直接開始建立表空間

drop tablespace 表空間名稱;

然后開始創(chuàng)建表空間

create tablespace xx_bp;
datafile 'F:\app\xx_bp.ora' --表空間的本地位置
size 50M
autoextend on next 1M;

附:datafile 為表空間對應(yīng)的數(shù)據(jù)文件,后面跟隨數(shù)據(jù)文件的路徑及數(shù)據(jù)文件名

size 為數(shù)據(jù)文件的初始大小

autoextend on 表示數(shù)據(jù)隨著數(shù)據(jù)量的增加自動(dòng)擴(kuò)大
一般在創(chuàng)建表的時(shí)候會(huì)創(chuàng)建多個(gè)表空間用來存放各種數(shù)據(jù),比如我們一般會(huì)創(chuàng)建歷史表空間(HS)、索引表空間等。另外先建立表空間,然后建立用戶時(shí)指向此表空間,否則oracle會(huì)默認(rèn)將用戶指向sys表空間

3 創(chuàng)建用戶

create user 用戶名 indentified by 密碼 tablespace xx_bp,xx_hs,xx_indx;

附: identified by 為創(chuàng)建用戶密碼的關(guān)鍵字,后面跟隨的是用戶密碼

4 對數(shù)據(jù)庫的用戶進(jìn)行授權(quán)

grant connect,resource to 用戶名

將connect 和resource 角色授予用戶

查看當(dāng)前用戶有哪些角色

select * from user_role_privs;

5 建立數(shù)據(jù)結(jié)構(gòu)、存儲過程、視圖、序列

(1)創(chuàng)建表

create table XX.BP_OPER_DETAIL_TB
(
task_id VARCHAR2(50) not null,
flow_id NUMBER(19) not null,
task_no VARCHAR2(50) not null,
flow_node VARCHAR2(4) not null,
workitemid NUMBER(19) not null,
trans_id VARCHAR2(10) not null,
trans_no CHAR(6) not null,
vouch_group VARCHAR2(10) not null,
teller_no VARCHAR2(15) default '',
user_no VARCHAR2(15) not null,
organ_no VARCHAR2(10) not null,
areacode VARCHAR2(5) default '',
create_time CHAR(14) not null,
checkout_time CHAR(14) not null,
checkin_time CHAR(14) default '',
suspend_time CHAR(14) default '',
resume_time CHAR(14) default '',
trans_time INTEGER default 0,
release_time INTEGER default 0,
state INTEGER not null,
result VARCHAR2(10) default '',
reason VARCHAR2(512) default ''
)
tablespace XX_BP pctfree 10 initrans 1 maxtrans 255 storage
(
initial 64K next 8K minextents 1 maxextents unlimited
);

創(chuàng)建索引約束調(diào)節(jié)等

alter table XX.BP_OPER_DETAIL_TB add constraint BP_OPER_DETAIL_PK primary key
(
TASK_ID, WORKITEMID, FLOW_NODE
)
using index tablespace XX_BP pctfree 10 initrans 2 maxtrans 255 storage
(
initial 64K next 1M minextents 1 maxextents unlimited
);

6 導(dǎo)入數(shù)據(jù)

insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0007', 'VH0000', '20160420074707');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0008', 'VH0000', '20160420074729');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0010', 'VH0000', '20160420074818');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0012', 'VH0000', '20160420074914');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0016', 'VH0000', '20160420075055');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0017', 'VH0000', '20160420075129');
insert into SM_FIELD_PARENT_TB (field_id, parent_field, last_modi_date)
values ('VH0021', 'VH0000', '20160420075305');
commit;

最后重新登陸數(shù)據(jù)庫,驗(yàn)證新增的遷移數(shù)據(jù)庫

您可能感興趣的文章:
  • oracle數(shù)據(jù)遷移到db2數(shù)據(jù)庫的實(shí)現(xiàn)方法(分享)
  • oracle數(shù)據(jù)庫遷移到MySQL的方法總結(jié)
  • mysql數(shù)據(jù)遷移到Oracle的正確方法
  • 直接拷貝數(shù)據(jù)文件實(shí)現(xiàn)Oracle數(shù)據(jù)遷移
  • Oracle數(shù)據(jù)庫升級或數(shù)據(jù)遷移方法研究
  • 深入ORACLE遷移到MYSQL的總結(jié)分析
  • oracle 數(shù)據(jù)庫數(shù)據(jù)遷移解決方案
  • Oracle 10g DG 數(shù)據(jù)文件遷移的實(shí)現(xiàn)

標(biāo)簽:青島 周口 武漢 和田 承德 開封 固原 甘肅

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Oracle數(shù)據(jù)庫遷移方案》,本文關(guān)鍵詞  Oracle,數(shù)據(jù)庫,遷移,方案,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Oracle數(shù)據(jù)庫遷移方案》相關(guān)的同類信息!
  • 本頁收集關(guān)于Oracle數(shù)據(jù)庫遷移方案的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章