Reputation: 9
We recently switched from Oracle 10g to 11g. When trying to run our app from PB, dev machine A works fine, but dev machine B gives "999 DBMS ORA is not supported ..." We are getting SQLCA.DBMS from a .ini file which is set to ORA (to work with 11g client). If we change this to O10 (to work with 10g client) then machine B works. The strange thing is that both A and B have the same path (pointing to the same 11g instant client on the network), so it's not related to that. We need to use the 11g client since we are planning to drop support for 10g. Any suggestions would be greatly appreciated.
Upvotes: 0
Views: 4633
Reputation: 970
The first three characters of SQLCA.DBMS correspond to characters 3-5 of the driver name. For example, the O10 driver for PB 12.5 would be PBO10125.DLL.
Make sure that machine B has the driver PBORA###.DLL where ### is the PB version (you didn't say).
Upvotes: 1