在專案中建立一個使用者

jichengjie發表於2012-04-14

一個做開發的朋友向我求助,發一些簡單的在一個專案中建立一個使用者的命令,下面這些簡單語句都給他救了急:

create tablespace test datafile '/u01/ora9/product/dbs/test001.dbf' size 5000m
extent management local
segment space management manual;

create user test identified by test default tablespace test temporary tablespace temp;

grant connect,resource to test;

grant unlimited tablespace to test;
alter tablespace test add datafile '/u01/ora9/product/dbs/test002.dbf' size 5000m;

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

相關文章