我是一个将oracle forms 11g整合到windows7的初学者,我使用google chrome作为浏览器。但是,每当我编译和运行表单(没有错误)时,浏览器中都会出现以下错误:ORA-01017 : invalid username/password ; logon denied
在出现登录消息错误之前,我也收到了以下警告:
the connection to this website is untrusted and the link of the site发布于 2018-10-12 19:00:20
在Oracle11g中,有一个名为SEC_CASE_SENSITIVE_LOGON的新参数,对于区分大小写的密码,该参数的默认值为TRUE。我的SCOTT密码是"tiger“是小写的,Forms 10g在运行时将其视为"TIGER”。
解决方案1:-以sys身份连接并将参数更改为false。
alter system set SEC_CASE_SENSITIVE_LOGON = FALSE;解决方案2:-以DBA身份连接,并将SCOTT的密码更改为字母大小写。
alter user scott identified by TIGER;https://stackoverflow.com/questions/22991794
复制相似问题