create tablespace 表空間名
size 500m --表空間大小
autoextend on --autoextend on/off是否擴充套件
next 100m maxsize unlimited logging
extent management local autoallocate
segment space management auto;
create temporary tablespace user_temp
tempfile 'q:\oracle\product\10.2.0\oradata\test\xyrj_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
grant unlimited tablespace to username; --授予username使用者使用表空間的許可權
grant create table to username; --授予建立表的許可權
grant drop any table to username; --授予刪除表的許可權
grant insert any table to username; --插入表的許可權
grant update any table to username; --修改表的許可權
drop tablespace test_data(表空間名) including contents and datafiles;
create user username(使用者名稱) identified by password(密碼)
default tablespace spacename(表空間);
alert user username identified by password; --修改密碼
alter user username default tablespace 表空間;
grant select any table to otheruser; --給otheruser使用者當前使用者表空間所有查詢許可權
drop user username cascade; --刪除使用者及物件
drop user username; --刪除使用者
grant resource,connect to username; --復權
grant create session to username; --授予username使用者建立session的許可權,即登陸許可權
grant all to username; --這條比較重要,授予所有許可權(all)給所有使用者(username)
grant dba to username; --授予username使用者dba許可權
grant unlimited tablespace to username; --給使用者授表空間授無限增長許可權
grant select on tablename to username;--授予username使用者檢視指定表的許可權
grant drop on tablename to username;--授予刪除表的許可權
grant insert on tablename to username;--授予插入的許可權
grant update on tablename to username;--授予修改表的許可權
grant insert(id) on tablename to username;
grant update(id) on tablename to username;--授予對指定表特定欄位的插入和修改許可權,注意,只能是insert和update
grant alert all table to username;--授予sun使用者alert任意表的許可權
基本語法同grant,關鍵字為revoke
select * from user_sys_privs;--檢視當前使用者所有許可權
select * from user_tab_privs;--檢視所用使用者對錶的許可權
即使用者a將許可權授予b,b可以將操作的許可權再授予c,命令如下:
grant alert table on tablename to usernameb with admin option; --關鍵字 with admin option
grant alert table on tablename to usernameb with grant option; --關鍵字 with grant option效果和admin類似
角色即許可權的集合,可以把乙個角色授予給使用者
create role myrole; --建立角色
grant create session to myrole; --將建立session的許可權授予myrole
grant myrole to username; --授予username使用者myrole的角色
drop role myrole; --刪除角色
select table_name from user_tables; 或 select *from tab;--檢視使用者所擁有的表
select view_name from user_views; --檢視使用者所擁有的檢視
select trigger_name from user_triggers; --檢視使用者所擁有的觸發器
select sequence_name from user_sequence;--檢視使用者擁有的序列
select index_name from user_indexs;--檢視使用者擁有的索引
show user; --顯示當前使用者
conn scott/tiger; --切換使用者
conn scott/tiger as sysdba; --將使用者賦予某種角色登入
conn system/unis; select username from dba_users; --檢視所有使用者
select *from session_privs; --檢視使用者所擁有的許可權
alter user scott account lock; --給使用者加鎖
alter user scott account unlock; --給使用者解鎖
select username,default_tablespace from user_users; --檢視當前表空間
Oracle使用者表空間許可權
關於oracle使用者表空間許可權提問 在sys使用者下建立使用者a,預設的表空間為a1,臨時表空間為a2 然後建立表空間a3,怎樣讓使用者a具有在a3裡建立表的許可權?前提是不賦予a create any table 和 dba許可權 即使用者a可使用的表空間為a1,a2,a3 當a3換成sys預...
oracle使用者,許可權,表空間管理
1.建立表空間 create tablespace zhu tablespace datafile d oracletablespace zhu zhu tablespace.dbf size 512m extent management local segment space management...
oracle建立表空間 使用者 許可權
1 建立臨時表空間 create temporary tablespace user temp tempfile q oracle product 10.2.0 oradata test xyrj temp.dbf size 50m autoextend on next 50m maxsize 20...