美文网首页
oracle 创建新用户以及找回密码

oracle 创建新用户以及找回密码

作者: _嘿嘿_ | 来源:发表于2018-10-23 15:45 被阅读0次

1.创建用户
cmd进入输入sqlplus,回车
输入/as sysdba,回车
create user test identified by test,回车
grant connect,resource to test,回车
alter user test identified by xxx,修改test用户密码为xxx

2.找回密码
cmd进入输入sqlplus,回车
输入/as sysdba,回车
alter user mashroom identified by hao123

3.赋值权限
grant dba to mashroom;

相关文章

网友评论

      本文标题:oracle 创建新用户以及找回密码

      本文链接:https://www.haomeiwen.com/subject/yfjazftx.html