Oracle create user

一、用户创建过程备忘

 

CREATE USER ifuser

    IDENTIFIED BY D0vKrsTb

    default tablespace tbs_ifuser

    temporary tablespace tmp_ifuser;

   

CREATE USER kepler

    IDENTIFIED BY evAtiELJ

    default tablespace tbs_kepler

    temporary tablespace tmp_kepler;

   

grant select on V_$SESSION to IFUSER;

grant connect to IFUSER;

grant resource to IFUSER;

 

grant select on V_$SESSION to KEPLER;

grant connect to KEPLER;

grant resource to KEPLER;

posted @ 2017-05-16 17:05  jackfei  阅读(1039)  评论(0编辑  收藏  举报