zoukankan      html  css  js  c++  java
  • 查看oracle 11g数据库用户的密码是否区分大小写

      用sys用户sqlplus连接到数据:

    SQL*Plus: Release 11.2.0.3.0 Production on Thu Jun 22 11:07:58 2017

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


    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining,
    Oracle Database Vault and Real Application Testing options

    SQL> show  parameter sec_case_sensitive_logon;

    NAME                                       TYPE                VALUE
    ------------------------------------    -----------     ------------------------------
    sec_case_sensitive_logon       boolean             TRUE

    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

     
    系统已更改。
     
    SQL> show  parameter  sec_case_sensitive_logon
     
    NAME                                             TYPE        VALUE
    ------------------------------------      -----------     ------------------------------
    sec_case_sensitive_logon             boolean     FALSE
    SQL>

  • 相关阅读:
    Celery 分布式任务队列入门
    异步通信----WebSocket
    爬虫框架之scrapy
    《JavaScript 高级程序设计》第一章:简介
    NodeJS学习:环境变量
    cmd 与 bash 基础命令入门
    H5开发中的故障
    认识 var、let、const
    netsh & winsock & 对前端的影响
    scrollify
  • 原文地址:https://www.cnblogs.com/qianyuliang/p/7064092.html
Copyright © 2011-2022 走看看