Oracle

作者: 一阳生 | 来源:发表于2017-06-29 13:12 被阅读0次

先安装database,后安装client

plsql

没有scott:

默认是有的,10g开始锁了账号,解锁的方法:

alter user scott account unlock;

如果没有这个账号,重新创建一个即可:

create user scott identified by tiger;

创建用户scott,密码是tiger。但是你还要给账号赋权,默认给个connect吧:

grant connect to scott;

相关文章

网友评论

      本文标题:Oracle

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