主頁 > 知識庫 > oracle創(chuàng)建表空間、授權(quán)、創(chuàng)建用戶、導(dǎo)入dmp文件

oracle創(chuàng)建表空間、授權(quán)、創(chuàng)建用戶、導(dǎo)入dmp文件

熱門標(biāo)簽:百度地圖標(biāo)注飯店位置怎么 電話機(jī)器人那種好 百度地圖標(biāo)注注解 上海網(wǎng)絡(luò)外呼系統(tǒng) 外呼系統(tǒng)好點(diǎn)子 地圖標(biāo)注的坐標(biāo)點(diǎn) 南通電銷外呼系統(tǒng)哪家強(qiáng) 區(qū)域地圖標(biāo)注怎么設(shè)置 理財產(chǎn)品電銷機(jī)器人

oracle創(chuàng)建表空間,授權(quán),創(chuàng)建用戶,導(dǎo)入dmp文件,具體詳解如下所示:

1.創(chuàng)建表空間

Create tablespace bpm datafile 'D:\ORACLE11\ORADATA\ORCL\BPM.DBF' size 400M autoextend on
Create tablespace lyoa datafile 'D:\ORACLE11\ORADATA\ORCL\LYOA.DBF' size 400M autoextend on
Create tablespace kdb datafile 'D:\ORACLE11\ORADATA\ORCL\KDB.DBF' size 400M autoextend on

2-- 創(chuàng)建用戶

2.創(chuàng)建LYOA用戶

create user LYOA
identified by LYOA
default tablespace LYOA
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to LYOA;
grant resource to LYOA;
-- Grant/Revoke system privileges
grant create database link to LYOA;
grant create public database link to LYOA;
grant create view to LYOA;

3 創(chuàng)建KDB用戶

create user KDB
identified by KDB
default tablespace KDB
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to KDB;
grant resource to KDB;

4 把LYOA下的表授權(quán)給KDB用戶

grant all on lyoa.oa_public_address_book to KDB;
grant all on lyoa.oa_public_address_book_group to KDB;
grant all on bpm.bpm_orgdeptlist to KDB;
grant all on bpm.bpm_orguserdeptmap to KDB;
grant all on bpm.bpm_orguserlist to KDB;
-- Grant/Revoke system privileges
grant create view to KDB;
grant unlimited tablespace to KDB;
-- Create the user
create user BPM
identified by BPM
default tablespace BPM
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to BPM;
grant resource to BPM;
-- Grant/Revoke system privileges
grant create database link to BPM;
grant create public database link to BPM;
grant create view to BPM;
grant drop public database link to BPM;
grant unlimited tablespace to BPM;
grant all on lyoa.ly_im_news_2 to bpm;
grant all on lyoa.oa_system_message to bpm;

1.在orac數(shù)據(jù)中,給scott用戶connect resource sysdb的權(quán)限 創(chuàng)建三個用戶

登錄 SYS/ AS SYSDBA

2.登錄每個用戶導(dǎo)入對應(yīng)用戶的表

導(dǎo)入用戶的表 給與lyoa用戶dba的權(quán)限 grant dba to lyoa

imp lyoa/lyoa@localhost/orcl file=F:\lyoa.dmp full=y

3.用戶沒有授權(quán)需要登錄 SYS/ AS SYSDBA 之后 sysdba為密碼進(jìn)行授權(quán)

以上所述是小編給大家介紹的oracle創(chuàng)建表空間、授權(quán)、創(chuàng)建用戶、導(dǎo)入dmp文件,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • 解決oracle12c創(chuàng)建用戶提示ORA-65096:公用用戶名或角色無效問題
  • Oracle數(shù)據(jù)庫創(chuàng)建用戶與數(shù)據(jù)庫備份小結(jié)(必看篇)
  • 使用sqlplus命令行工具為oracle創(chuàng)建用戶和表空間
  • Oracle 創(chuàng)建用戶及數(shù)據(jù)表的方法
  • oracle命令行刪除與創(chuàng)建用戶的代碼
  • oracle創(chuàng)建用戶過程詳解

標(biāo)簽:紹興 寧波 海東 遼源 百色 昭通 中衛(wèi) 自貢

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