工具/原料
-
PLSQL
方法2
-
通过sql语句创建用户:依次单击“文件”--“新建”--“SQL窗口”
-
输入sql语句:
-- Create the user
create user USER2 --用户名 identified by user2 --口令 default tablespace USERS --默认表空间 temporary tablespace TEMP --临时表空间
-
单击执行按钮或按快捷键F8,执行sql语句,创建用户
-
输入sql语句:
-- Grant/Revoke role privileges grant connect to USER2;grant resource to USER2;
给用户赋予权限,按F8执行语句
-
运行plsql,输入新建用户的用户名和口令登录
END