在SQL Plus中,如果以scott用户登陆时,提示ora-28000 the account is locked错误,请写出解锁的代 码,并重设密码为1234
--在SQL Plus中,如果以scott用户登陆时,提示ora-28000 the account is locked错误,请写出解锁的代 码,并重设密码为1234
操作如下:
sql>sqlplus /nolog
sql>alter user scott account unlock;
sql>alter user scott identified by 1234;
sql>conn scott/1234