问题描述: oracle11g对账户密码实行大小写识别,烦的一比!想移除此限制 问题解决: oracle 11g以前的版本的用户名和密码是不区分大小写!oracle 11g 用户名和密码默认区分大小写 alter system set sec_case_sensitive_logon=false //不区分大小写,默认true DBA用户登录执行就好了,修改后立即生效 引用: https://blog.csdn.net/keleguohn/article/details/8674
python连接oracle -- qlalchemy import cx_Oracle as co import pandas as pd from sqlalchemy import create_engine sql_select = ''' ...''' db = create_engine('oracle://qmcb:qmcb@localhost:1521/tqmcbdb') #test_data = pd.read_excel("data/tmp001.xlsx")
oracle 11g,密码默认有效期为180天,设置为不过期,可在线操作. 步骤: -->>进入oracle用户 su - oracle -->>已sys超级用户登录sqlplus sqlplus / as sysdba -->>查看PASSWORD_LIFE_TIME值默认default, select profile,resource_name,resource_type,limit from dba_profiles order by profile,resour