创建一个普通用户一般步骤

来源:互联网 发布:js 拓扑图 编辑:程序博客网 时间:2024/04/29 05:23

SQL> create user test identified by test default tablespace test;

用户已创建。

SQL> grant connect,resource to test;

授权成功。

SQL> revoke unlimited tablespace from test;

撤销成功。

SQL> alter user test quota unlimited on test;

用户已更改。