ORA-01019 error in win7 but not XP

kawi6rr

Registered User.
Local time
Today, 15:35
Joined
Jun 29, 2010
Messages
28
Having a hard time figuring out why I get this error in win7 but not winXP? There is an MS Access application that is using the connection string below. A few of our employees have been moved to win7 and are reporting this.

ERROR
ORA-01019: unable to allocate memory in the users side

CAUSE
connectStr = "Provider=msdaora;Data Source=HIDW.WORLD;User Id=xxxxx;Password=xxxxx"
conn.Open (connectStr)

Why would this work n XP and not win7? Does anybody know a work around for this? Any help is appreciated, thanks.
 
We're using win7 not win8 and all Access 2003 applications work on it just fine the only issue is the ODBC connection to the Oracle DB.
 
I wasn't trying to be rude its hard to convey emotion when posting quick responses to forums replies :)
 
kawi6rr,

This works for me in Windows 7:

Code:
strConnection = "Driver={Oracle In InstantClientx32};" & _
                "DBQ=ORCL;" & _
                "Database=EWDS_2012;" & _
                "Uid=xxxx;Pwd=xxxx;"

Wayne
 
Thanks Wayne your post lead me in a direction for a solution. It ended up not being a coding issue but when work issued us new computers they had the tnsnames files in teh wrong folder. Adding this to the correct folder fixed the issue.
 

Users who are viewing this thread

Back
Top Bottom