ORA-28000: the account is locked-的解决办法
2009-11-11 18:51

ORA-28000: the account is locked
第一步:使用PL/SQL,登录名为system,数据库名称不变,选择类型的时候把Normal修改为Sysdba;
第二步:选择myjob,查看users;
第三步:选择system,右击点击“编辑”;
第四步:修改密码,把“帐户被锁住”的勾去掉;
第五步:点击“应用”再点击“关闭”;
第六步:重新登录就可以通过验证了;
第二种
ALTER USER username ACCOUNT UNLOCK;

第三种

在plsql developer中要是以scott/tiger登录时提示ora-28000 the account islocked。

解决办法:

新装完Oracle10g后,用scott/tiger测试,会出现以下错误提示:
       oracle10g the account is locked
       oracle10g the password has expired
原因:默认Oracle10g的scott不能登陆。
解决:
(1)conn sys/sys as sysdba; //以DBA的身份登录
(2)alter user scott account unlock;// 然后解锁
(3)conn scott/tiger //弹出一个修改密码的对话框,修改一下密码就可以了

在运行里面输入cmd在DOS模式下输入sqlplus,以system用户名登录,密码是刚装oracle时自己填写的密码orcl,登录进去以后。

SQL> conn sys/sys assysdba;      (分号是必须的但是我是以system登录的所在这不应该写conn sys/sys as sysdba应该写connsystem/orcl as sysdba;)
        Connected.
SQL> alter user scott account unlock;
        User altered.
SQL> commit;
        Commit complete.
SQL> conn scott/tiger//请输入新密码,并确认后OK
Password changed
Connected.

这时再到plsql developer里面以scott/tiger登录就可以了。。。。。

Oracle 10g 默认安装带来的用户名/密码
   Username
Password
Description
See Also

CTXSYS
CTXSYS
The Oracle Text account
Oracle Text Reference

DBSNMP
DBSNMP
The account used by the Management Agent component of OracleEnterprise Manager to monitor and manage the database
Oracle Enterprise Manager Grid Control Installation and BasicConfiguration

LBACSYS
LBACSYS
The Oracle Label Security administrator account
Oracle Label Security Administrator's Guide

MDDATA
MDDATA
The schema used by Oracle Spatial for storing Geocoder and routerdata
Oracle Spatial User's Guide and Reference

MDSYS
MDSYS
The Oracle Spatial and Oracle interMedia Locator administratoraccount
Oracle Spatial User's Guide and Reference

DMSYS
DMSYS
The Oracle Data Mining account.
Oracle Data Mining Administrator's Guide

Oracle Data Mining Concepts

OLAPSYS
MANAGER
The account used to create OLAP metadata structures. It owns theOLAP Catalog (CWMLite).
Oracle OLAP Application Developer's Guide

ORDPLUGINS
ORDPLUGINS
The Oracle interMedia user. Plug-ins supplied by Oracle and thirdparty format plug-ins are installed in this schema.
Oracle interMedia User's Guide

ORDSYS
ORDSYS
The Oracle interMedia administrator account
Oracle interMedia User's Guide

OUTLN
OUTLN
The account that supports plan stability. Plan stability enablesyou to maintain the same execution plans for the same SQLstatements. OUTLN acts as a role to centrally manage metadataassociated with stored outlines.
Oracle Database Performance Tuning Guide

SI_INFORMTN_SCHEMA
SI_INFORMTN_SCHEMA
The account that stores the information views for the SQL/MM StillImage Standard
Oracle interMedia User's Guide

SYS
CHANGE_ON_INSTALL
The account used to perform database administration tasks
Oracle Database Administrator's Guide

SYSMAN
CHANGE_ON_INSTALL
The account used to perform Oracle Enterprise Manager databaseadministration tasks. Note that SYS and SYSTEM can also performthese tasks.
Oracle Enterprise Manager Grid Control Installation and BasicConfiguration

SYSTEM
MANAGER
Another account used to perform database administration tasks

ORA-28000: the account is locked的解决办法相关推荐

  1. 【DG】DG备库报ORA-28000: the account is locked的解决办法

    [DG]DG备库报ORA-28000: the account is locked的解决办法 测试用户为lhr 现象:主备库的lhr用户的状态都是OPEN,但是,备库连接的时候报ORA-28000: ...

  2. 出现“ORA-28000:the account is locked”的解决办法

    在oracle 11g的使用过程中有时候会出现所有的oracle用户被锁定,包括Scott用户也会被锁定.输入用户名和口令之后会出现"ORA-28000:the account is loc ...

  3. ORA-28000: the account is locked 的解决办法!

    1.运行cmd 2.进入C的根目录 3.输入:sqlplus /nolog; 4.connect 用户名/密码 as sysdba;(其中用户名和密码都是system,根据自己的来输入) 5.alte ...

  4. ORA-28000 the account is locked的解决办法

    文章目录 方式一 PL/SQL工具解锁 方式二 SQL脚本解锁 方式三 管理员命令解锁 ORA-28000: the account is locked 方式一 PL/SQL工具解锁 1. 使用PL/ ...

  5. oracle 用户被锁住 28000 the account is locked

    场景:用docker起了一个oracle数据库,以前一直没问题,有一天在连接的时候报 28000 the account is locked,使用navicat连接的可以使用以下方法 使用管理员账号和 ...

  6. Oracle账号被锁定了?the account is locked?解决最多分3步!

    Oracle账号被锁定了?the account is locked?解决最多分3步! 一般情况这是因为忘记密码导致的 1.登录系统用户system,当然大部分人都会忘记这个密码,如果记得直接登录,如 ...

  7. Eclipse中提示svn: is already locked的解决办法

    Eclipse中提示svn: is already locked的解决办法 eclipse的svn提交不了,报错.提示 svn: is already locked 解决办法:右键项目-------T ...

  8. SVN提交时出现locked错误解决办法

    问题:在SVN中执行 commit 操作时,在更新过程中,中断过,或者因为其他原因导致SVN 出现 locked 异常. 解决方法: 回到SVN文件夹的根目录.如图操作: 点击ok就好了.

  9. MySQL mysqld dead but subsys locked的解决办法_张童瑶的博客

    原文链接:http://yaoyaoman.cn/blog/archives/171 项目使用的mysql数据突然宕掉了,使用ps -ef|grep mysql ,没有发现mysql的进程,只有一些使 ...

最新文章

  1. 异步编程模型--使用 IAsyncResult 对象
  2. AWS S3云存储服务
  3. 0518 Scrum项目5.0
  4. 查看python库的版本-python中查看第三方库的版本号
  5. C++用顶层函数重载操作符(一)
  6. 不信任的 .exe 怎么办,用 Windows 沙盒啊!
  7. unity5, custom PBS shader
  8. Java基础---认识多态
  9. Django 2.0 学习(12):Django 模板语法
  10. 在混合开发框架模式中,简化客户端对Web API的频繁调用
  11. 小D课堂-SpringBoot 2.x微信支付在线教育网站项目实战_5-9.使用JWT生成用户Token回写客户端...
  12. length()函数_掌握Kotlin中的标准库函数: run、with、let、also和apply(转)
  13. yuicompressor java_YUI Compressor
  14. 【博弈论】翻硬币游戏8种模型
  15. Dijkstra最短路算法
  16. 思科模拟器的远程连接交换机的实现
  17. Jquery 模板插件 jquery.tmpl.js 的使用方法(1):基本语法,绑定,each循环,ajax获取json数据...
  18. java虚拟机与安卓虚拟机的区别
  19. 网络编程-HTTP编程
  20. Linux怎么解决更改xx权限:不允许的操作

热门文章

  1. android 调用系统方法,android 调用系统功窗口方法
  2. excel制作一个信息录入系统_制作Excel仓库入库单,一键完成数据录入、计算及保存操作...
  3. 普通用户安装nginx
  4. 一个特殊的内码转换处理对于XML格式的UTF-8
  5. linux addr2line
  6. LeetCode 633 平方数之和
  7. 防止API被恶意调用,一般有哪些方法?
  8. python类及其方法
  9. 作业3:基于墨刀的短视频APP
  10. Python查找算法之 -- 列表查找和二分查找