您好,登錄后才能下訂單哦!
永久表空間:存放永久性數(shù)據(jù),如表,索引等。
臨時(shí)表空間 :不能存放永久性對(duì)象,用于保存數(shù)據(jù)庫(kù)排序,分組時(shí)產(chǎn)生的臨時(shí)數(shù)據(jù)
表空間:表空間是數(shù)據(jù)庫(kù)的邏輯劃分,一個(gè)表空間只能屬于一個(gè)數(shù)據(jù)庫(kù)。所有的數(shù)據(jù)庫(kù)對(duì)象都存放在指定的表空間中。但主要存放的是表, 所以稱(chēng)作表空間
create tablespace user_data logging datafile 'D:\oracle\oradata\user_data.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local;
create temporary tablespace user_temp2 tempfile 'D:\oracle\oradata\user_temp1.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local
create user etc -- 用戶(hù)名 identified by "admin" --密碼 default tablespace user_data --數(shù)據(jù)表空間 temporary tablespace user_temp1 -- 臨時(shí)表空間
alter user 用戶(hù)名 account unlock;
系統(tǒng)權(quán)限允許用戶(hù)執(zhí)行某些數(shù)據(jù)庫(kù)操作,如創(chuàng)建表就是一個(gè)系統(tǒng)權(quán)限
對(duì)象權(quán)限允許用戶(hù)對(duì)數(shù)據(jù)庫(kù)對(duì)象(如表、視圖、序列等)執(zhí)行特定操作
Qracle為了兼容以前的版本,提供了三種標(biāo)準(zhǔn)的角色(role):CONNECT、RESOURCE和DBA
臨時(shí)用戶(hù),特別是那些不需要建表的用戶(hù),通常只賦予他們CONNECTrole。CONNECT是使用Oracle的簡(jiǎn)單權(quán)限,這種權(quán)限只有在對(duì)其他用戶(hù) 的表有訪問(wèn)權(quán)時(shí),包括select、insert、update和delete等,才會(huì)變得有意義。擁有CONNECT role的用戶(hù)還能夠創(chuàng)建表、視圖、序列(sequence)、簇(cluster)、同義詞(synonym )、會(huì)話(session)和與其他數(shù)據(jù)庫(kù)的鏈(link)。
更可靠和正式的數(shù)據(jù)庫(kù)用戶(hù)可以授予RESOURCE role。RESOURCE提供給用戶(hù)另外的權(quán)限以創(chuàng)建他們自己的表、序列、過(guò)程(procedure)、觸發(fā)器(trigger)、索引(index)和簇(cluster)
DBA role擁有所有的系統(tǒng)權(quán)限----包括無(wú)限制的空間限額和給其他用戶(hù)授予各種權(quán)限的能力。SYSTEM由DBA用戶(hù)擁有。下面介紹一些DBA經(jīng)常使用的典型權(quán)限。
GRANT 命令可用于為用戶(hù)分配權(quán)限或角色
賦予系統(tǒng)權(quán)限:grant角色to用戶(hù);
賦予對(duì)象權(quán)限:Grant insert update delete select on表to用戶(hù);
回收系統(tǒng)權(quán)限:revoke角色from用戶(hù);
回收對(duì)象權(quán)限:revoke all on表from用戶(hù);
更改:ALTER USER MARTIN IDENTIFIED BY martinpass;(修改密碼)
刪除:drop user 用戶(hù)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。