zoukankan      html  css  js  c++  java
  • [Oracle]开启SCOTT账户

    学习测试使用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

  • 相关阅读:
    Java 集合(静态导入)
    Java 集合 (Collections、Arrays)
    Java 异常
    Java 多态
    Java 继承

    内网服务器配置访问公网
    替换centos的原生yum源为阿里云yum源
    centos7安装杀毒软件ClamAV
    linux程序名称带devel跟不带的区别
  • 原文地址:https://www.cnblogs.com/leoshi/p/12551600.html
Copyright © 2011-2022 走看看