oracle 使用者許可權

generators發表於2009-11-13

oracle使用者建立和許可權的管理
-------------------------------------------------------
create user user_name identified by user_pass default tablespace tab_1;
grant connect,resource to user_name;
revoke connect from user_name;
------------本使用者建立表空間---
alter user user_name default tablespace tab_1;
-------------------------------------------------
create tablespace tablespace1 datafile 'd:a.dbf' size 10m auto extend on next 10m;

alter database datafile 'F:ORACLEPRODUCT10.2.0ORADATATESTPCS.DBF' autoextend on next 10m maxsize unlimited;

------更改使用者預設表空間---------------------------

alter user user_name default tablespace tab_1;

---------------使用者擁有使用表空間的許可權--------

grant unlimited tablespace to 使用者名稱;

--賦權-execute immediate create table 許可權
grant create any table to pcs;

1.增加資料檔案
ALTER TABLESPACE game
ADD DATAFILE '/oracle/oradata/db/GAME02.dbf' SIZE 1000M;

2.手動增加資料檔案尺寸
ALTER DATABASE DATAFILE '/oracle/oradata/db/GAME.dbf'
RESIZE 4000M;

3.設定資料檔案自動擴充套件
ALTER DATABASE DATAFILE '/oracle/oradata/db/GAME.dbf AUTOEXTEND ON NEXT 100M MAXSIZE 10000M;

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9307930/viewspace-1028707/,如需轉載,請註明出處,否則將追究法律責任。

相關文章