Oracle 11g中管理员用户sys,system密码不可用解决办法
Oracle 11g数据库安装的时候,跳过了密码设置那一项。在后来需要使用sys和system的时候,老是提示密码不对。这里提供一种能重新设置这些用户密码的方法。
使用sqlplus登陆数据库:
bash-3.00$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.2.0 - Production on Fri Nov 30 16:29:59 2012
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> alter user sys identified by admin;
User altered.
SQL> conn sys/admin as sysdba;
Connected.
SQL> alter user system identified by admin;
User altered.
至此,你就可以使用自己设置的密码登陆数据库了。
相关推荐
踩风火轮的乌龟 2020-07-26
lklong 2020-11-22
oraclemch 2020-11-06
shilukun 2020-10-10
周嘉笙 2020-11-09
zhuzhufxz 2020-09-16
bfcady 2020-08-16
Hody 2020-08-16
FightFourEggs 2020-08-16
数据库设计 2020-08-16
yanghuatong 2020-08-16
dbasunny 2020-08-16
罗罗 2020-08-16
ihuaqiang 2020-08-16
choice0 2020-07-30
娜娜 2020-07-28
solarspot 2020-07-28
娜娜 2020-07-20
xwb 2020-07-19
娜娜 2020-07-18
流云追风 2020-07-04
dataminer 2020-06-25
娜娜 2020-06-22
zhangchaoming 2020-06-21