ORA-12203 error on stations

Dear sirs,
My program works fine at the server, but when I try to run it at the stations I get the ORA-12203 error. The stations can see and edit the files using SQLPlus, but not throught my application.

What am I doing wrong ?
Thanks for your attention,

Luiz Fernando
 
By default Direct Oracle Access will use the SQL*Net or Net8 version from the Primary Oracle Home. It seems that the tnsnames.ora file of this oracle home is not configured correctly. To find out at runtime which oracle home is used, use the following code:

InitOCI;
ShowDOAInfo(nil);

These procedures are located in the OracleCI unit.

------------------
Marco Kalter
Allround Automations
 
Back
Top