oracle資料庫使用者建立步驟

DAO1024發表於2020-11-18

1、先登入伺服器後,切換到oracle使用者狀態下: su oracle

2、進入sqlplus,命令:sqlplus / as sysdba

3,建立使用者表空間:
CREATE TABLESPACE HYGEIA datafile '/ora11g/app/oracle/oradata/orcl/zyq01.dbf' size 600M autoextend on next 50m maxsize unlimited;

4.建立使用者,指定密碼和上邊建立的使用者表空間
create user  ecard_test3 identified by ecard$123 default tablespace HYGEIA;

5.賦予許可權
grant connect,resource,dba to  ecard_test3;

grant create any synonym,create any view,debug any procedure,unlimited tablespace to ecard_test3;

相關文章