--新建用户
create user test identified by test
default tablespace test_data
temporary tablespace test_temp;
--赋权
grant connect,resource to test; (dba:包含大部分的权限)
新建用户:
create user 用户名;
设置权限和角色:
grant 权限 to 用户名;
嗯,应该是没有相应的权限,在创建用户的时候给与他相应的权限。但还是用语句的比较方便。建议多用语句学习起来更地道。
忘记密码了吧 新建的用户不会有这样的问题吧