学习测试使用oracle内置数据库scott

  • 查看账户状态
SQL> select username,account_status from dba_users where username='SCOTT';

USERNAME
--------------------------------------------------------------------------------
ACCOUNT_STATUS
--------------------------------------------------------------------------------
SCOTT
# 被锁
EXPIRED & LOCKED
  • 重置密码为password并解锁
SQL> alter user SCOTT account unlock identified by password;

User altered.
SQL> select username,account_status from dba_users where username='SCOTT';

USERNAME
--------------------------------------------------------------------------------
ACCOUNT_STATUS
--------------------------------------------------------------------------------
SCOTT
# 解锁并打开
OPEN
  • 登录验证
sqlplus scott/password@10.1.30.139:1521/orcl

SQL*Plus: Release 11.2.0.4.0 Production on Mon Mar 23 13:05:14 2020

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options

SQL>

END

相关文章:

  • 2021-05-18
  • 2021-10-10
  • 2021-11-10
  • 2021-06-14
  • 2021-10-26
  • 2021-11-21
  • 2021-10-05
猜你喜欢
  • 2022-12-23
  • 2021-06-04
  • 2021-08-10
  • 2022-12-23
  • 2021-10-20
  • 2021-09-19
  • 2022-12-23
相关资源
相似解决方案