oracle建立使用者

2021-06-25 11:25:25 字數 1615 閱讀 6829



//建立空間 

1. create

tablespace test  

2. datafile 

'c:\oracle\oradata\orcl9\test.dbf'

size

50m  

3. default

storage (initial 500k   

4. next

500k  

5. minextents 1  

6. maxextents unlimited  

7. pctincrease 0); 

//oracle建立使用者許可權

//建立使用者 

create

user

lxg identified 

bylxg 

default

tablespace test;  

temporary

tablespace 

//臨時表空間

//授權  

grant

resource,

connect

,dba 

totest; 

//刪除表空間

drop

tablespace 

"空間名

"including contents 

anddatafiles 

刪除使用者 

1. drop

user

"lxg"

cascade

增加表空間

1. alter

tablespace chinawater 

adddatafile 

'c:\oracle\oradata\orcl9\addchinawater.dbf'

size

200m 

建立使用者

1. create

user

username identified 

bypassword; 

建立使用者 username,密碼為 password

給使用者授權

1. grant

dba 

tolxg;

--授予

dba許可權 

2. grant

unlimited tablespace 

tolxg;

--授予不限制的表空間 

3. grant

select

anytable

tolxg;

--授予查詢任何表 

4. grant

select

anydictionary 

tolxg;

--授予

查詢任何字典

1. grant

dba 

tolxg;  

2. grant

unlimited tablespace 

tolxg;  

3. grant

select

anytable

tolxg;  

4. grant

select

anydictionary 

tolxg; 

Oracle 使用者建立

執行 cmd 進入 dos視窗 c sqlplus sys password as sysdba 使用sys使用者登入 sql create user username identified by password 建立使用者名稱和密碼 sql create tablespace ts userna...

Oracle建立使用者

當你建立使用者時,應該定義它的表空間 default tablespace 否則,它會使用系統表空間 system tablespace 這是應該避免的。這是常用的建立使用者的乙個例子 create user xx identified by xx profile default default t...

oracle 建立使用者

oracle10g建立使用者 oracle10g 的建立使用者名稱 1 linux 下oracle 的啟動以 oracle 身份登入 啟動lsnrctl start 登入sqplus nolog 連線資料庫 connect assysdba 啟動資料庫 startup 關閉資料庫 shutdown ...