本文主要是介绍windows使用cmd窗口scott用户连接oracle数据库方便查看执行计划,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
scott用户的密码不对,进入管理员用户,修改scott用户密码即可
或者这样修改密码:
在运行栏里面敲:
sqlplus(空格)/nolog
接着在弹出框里面敲:
conn sys/password as sysdba
提示已连接
alter user scott identified by tiger;
回车(对SCOTT解锁)
alter user scott account unlock;
解锁方法:
用 system 登录进去之后,执行下面的命令:
SQL> alter user scott account unlock;
用户已更改。
这样就完成解锁的操作。接下来,你还可以重新给 scott 这个用户设定密码。
修改scott的登录密码:
SQL> alter user scott identified by tiger;
用户已更改。
大功告成,此时你再拿 scott 和 tiger 来登录就可以了!
SQL> conn scott/tiger
cd d:cd d:/ware/oracle/product/11.2.0/dbhome_2/BIN/./sqlplus.exe
scott/tiger用户登录
登录到sqlplus以后,显示sql的查询结果的列宽和行高
set line 150
col num for a30
给普通用户授权
grant create view to scott
————————————————
版权声明:本文为CSDN博主「行走的思想者」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yali1990515/article/details/51732427
这篇关于windows使用cmd窗口scott用户连接oracle数据库方便查看执行计划的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!