为了账号安全,请及时绑定邮箱和手机立即绑定

怎么在PL/SQL中新建一个用户?并且用这个用户能够登录。

这个新建的用户要能导入数据库。

正在回答

2 回答

--刚才建用户语句写错了 不好意思
create user username identified by password;

 

0 回复 有任何疑惑可以回复我~
--创建用户
create user username identied by password;
--权限
grant create session to username;--登录权限
grant unlimited tablespace to username;--使用表空间的权限
grant create table to username;--授予创建表的权限
grant drop table to username;--授予删除表的权限
grant insert table to username;--插入表的权限
grant update table to username;--修改表的权限
--这些权限应该可以满足以上要求

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

怎么在PL/SQL中新建一个用户?并且用这个用户能够登录。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信