先安装database,后安装client
plsql

没有scott:
默认是有的,10g开始锁了账号,解锁的方法:
alter user scott account unlock;
如果没有这个账号,重新创建一个即可:
create user scott identified by tiger;
创建用户scott,密码是tiger。但是你还要给账号赋权,默认给个connect吧:
grant connect to scott;
先安装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
网友评论