创建用户、授权
create user user_name identified by user_password default tablespace tablesapce_name;
grant resource,connect,dba to user_name;
本文介绍如何使用SQL命令创建数据库用户并进行权限分配。通过执行createuser命令设置用户名、密码及默认表空间,再利用grant命令授予用户特定资源权限。
创建用户、授权
create user user_name identified by user_password default tablespace tablesapce_name;
grant resource,connect,dba to user_name;
1307
1635
5182
6541

被折叠的 条评论
为什么被折叠?