Hi! I'm trying to run a Windows software that needs a connection to a database server. But when I'm trying to log in, it gives me the error 'Check connections and password. SQL General Error : error while trying to retrieve text for error ORA-03114. Alias: per'. Looking for this error I've found some connection issues. Using iptraf, I've noticed that it don't even calls the connection, but it tries to invoke the eth0. Any hints? Thanks. Vinicius 'Corvu'
Vinicius 'Corvu' BR <vinicius.snts@gmail.com> wrote:> I'm trying to run a Windows software that needs a connection to a > database server.What kind of connection is this?> But when I'm trying to log in, it gives me the error 'Check connections > and password. SQL General Error : error while trying to retrieve text > for error ORA-03114. Alias: per'. > Looking for this error I've found some connection issues. > > Using iptraf, I've noticed that it don't even calls the connection, but > it tries to invoke the eth0.What do you mean by 'invoke'? Shouldn't the connection go over the network? Daniel
Vinicius wrote:> I'm trying to run a Windows software that needs a connection to a > database server. > But when I'm trying to log in, it gives me the error 'Check connections > and password. SQL General Error : error while trying to retrieve text > for error ORA-03114. Alias: per'.Oracle error ORA-03114 means "not connected", for what it's worth. You're probably running into a Wine bug. One common source of problems (for Visual Basic apps, at least) is OLE. You could try installing DCOM98 and see if that helps. (See http://frankscorner.org/index.php?p=ishield for how.) You'll need to run your app like: WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n" wine myapp.exe Let me know if this helps. - Dan