博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle解锁scott账户
阅读量:5013 次
发布时间:2019-06-12

本文共 990 字,大约阅读时间需要 3 分钟。

 

Oracle安装完成之后scott账户默认是锁定的,登录的时候会提示账户已经被锁定:

C:\Users\CC11001100>sqlplus scott/toorSQL*Plus: Release 10.2.0.1.0 - Production on 星期四 6月 8 22:21:27 2017Copyright (c) 1982, 2005, Oracle.  All rights reserved.ERROR:ORA-28000: the account is locked请输入用户名:

需要手动打开。

 

使用安装时设定的sys密码登录,特权用户登录的时候必须带上as sysdba 或者as sysoper:

C:\Users\CC11001100>sqlplus sys/toor as sysoperSQL*Plus: Release 10.2.0.1.0 - Production on 星期四 6月 8 22:12:43 2017Copyright (c) 1982, 2005, Oracle.  All rights reserved.连接到:Oracle Database 10g Release 10.2.0.1.0 - ProductionSQL>

登录进去之后解锁scott账户:

SQL> alter user scott account unlock ;用户已更改。

修改scott的密码:

SQL> alter user scott identified by toor ;用户已更改。

再使用scott登录就可以登录成功了:

C:\Users\CC11001100\Desktop>sqlplus scott/toorSQL*Plus: Release 10.2.0.1.0 - Production on 星期五 6月 9 01:48:04 2017Copyright (c) 1982, 2005, Oracle.  All rights reserved.连接到:Oracle Database 10g Release 10.2.0.1.0 - ProductionSQL> show user;USER 为 "SCOTT"

 

.

转载于:https://www.cnblogs.com/cc11001100/p/6966920.html

你可能感兴趣的文章
iOS获取设备IP地址
查看>>
JavaSE| String常用方法
查看>>
NRF51822配对绑定要点
查看>>
C语言博客作业—数据类型
查看>>
[leetcode]Count and Say
查看>>
cookie、session和token的概念入门
查看>>
保护网站页面内容+版权
查看>>
Golang模拟客户端POST表单功能文件上传
查看>>
重启进程
查看>>
js 进度条效果
查看>>
RelativeLayout
查看>>
distinct!!!!!!!!!!!!!!!!!!
查看>>
input type
查看>>
Javascript脚本 :Function 对象的定义和使用
查看>>
工作疑问之AWS ubuntu16.04 修改网卡名
查看>>
data:image/png;base64
查看>>
private关键字
查看>>
通过Performance Log确定磁盘有性能问题?
查看>>
form快速转json serialize
查看>>
POJ_1185_炮兵阵地 dp+状态压缩
查看>>