oracle里创建用户及分配权限的常用命令:
create user ylxc
identified by "ylxc"
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
grant connect to ylxc;
grant dba to ylxc;
grant resource to ylxc;
grant unlimited tablespace to ylxc;
create user ylxc
identified by "ylxc"
default tablespace USERS
temporary tablespace TEMP
profile DEFAULT;
grant connect to ylxc;
grant dba to ylxc;
grant resource to ylxc;
grant unlimited tablespace to ylxc;
本文介绍在Oracle数据库中创建用户并分配权限的方法。通过几个简单的SQL命令,可以实现用户的创建及其默认表空间、临时表空间的设置,并授予用户CONNECT、DBA、RESOURCE等权限。
5808

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



