ORA-01017:用户名/密码无效;登录被拒绝

时间:2014-04-10 15:01:09

标签: forms oracle11g

我是oracle中的初学者,将11g格式化为Windows 7,并使用google chrome作为浏览器。但每当我编译并运行我的表单(没有错误)时,我在浏览器中遇到了这个错误:ORA-01017 : invalid username/password ; logon denied

在登录邮件错误之前我也有这个警告:

the connection to this website is untrusted and the link of the site

1 个答案:

答案 0 :(得分:0)

在Oracle 11g中,一个名为SEC_CASE_SENSITIVE_LOGON的新参数对于区分大小写的密码默认为TRUE。我的SCOTT密码是“ tiger”,是小写字母,而Forms 10g在运行时将其命名为“ TIGER”。

解决方案1: -以sys身份连接,并将参数更改为false。

alter system set SEC_CASE_SENSITIVE_LOGON = FALSE;

解决方案2: -以DBA身份连接,并将SCOTT的密码更改为LETTER大小写。

alter user scott identified by TIGER;