Operating System - Linux
1753613 Members
5733 Online
108797 Solutions
New Discussion юеВ

Re: DBD:Oracle on Client Server

 
MikeL_4
Super Advisor

DBD:Oracle on Client Server

I'm installing DBD::Oracle on a Client server and the Database of course is on a Remote server.

How do I code the ORACLE_SID in the .setup_oracle_env file ??

ORACLE_SID=remoteserver:databasesid ????
2 REPLIES 2
H.Merijn Brand (procura
Honored Contributor

Re: DBD:Oracle on Client Server

I don't think you can, unless you have the same Oracle installed on the client as what you have installed on the server, since DBD-Oracle will have to link to the Oracle libraries, and even then I don't know if DBD-Oracle supports remote connections.

If you start the listener on the server side (if that's not already running), you can probably do what you want with DBD::ODBC

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
MikeL_4
Super Advisor

Re: DBD:Oracle on Client Server

I got a hold of a DBA that said I just need to add parameters:

TWO_TASK=dummy
TNS_ADMIN=/opt/oracle/admin/network


Thanks