Oralce创建用户并授权:
用默认用户名密码system/manager登陆创建新用户:
create user test1 identified by test1;
grant connect,resource to test1;
用test1登陆:
sqlplus test1/test1
Oracle用户创建与授权
本文介绍如何使用默认的system/manager账号在Oracle中创建新用户test1,并对其进行connect和resource权限的授予。此外,还提供了使用新创建的test1用户进行登录的方法。
用默认用户名密码system/manager登陆创建新用户:
create user test1 identified by test1;
grant connect,resource to test1;
用test1登陆:
sqlplus test1/test1

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