Hi,
I have ProC programs connecting to an Oracle 8.1.7.4 and 9.2.0.5 databases in a Solaris 8 OS
The Database is in the same server as the programs.
The connection to the DB within each program is made with this instruction: [EXEC SQL CONNECT :username IDENTIFIED BY : password;]
My intention is to move the databases to a different server, an AIX 5.2
My problem / question is: Is there a way to configure the Oracle Client so it knows that the database is in another server.
I know that one solution is to change the connection instruction to: [EXEC SQL CONNECT :username IDENTIFIED BY : password AT :db_name USING :db_string;] but the problem is that I don't want to re-compile all my programs.
Do you know if there's a way to solve this?
I have ProC programs connecting to an Oracle 8.1.7.4 and 9.2.0.5 databases in a Solaris 8 OS
The Database is in the same server as the programs.
The connection to the DB within each program is made with this instruction: [EXEC SQL CONNECT :username IDENTIFIED BY : password;]
My intention is to move the databases to a different server, an AIX 5.2
My problem / question is: Is there a way to configure the Oracle Client so it knows that the database is in another server.
I know that one solution is to change the connection instruction to: [EXEC SQL CONNECT :username IDENTIFIED BY : password AT :db_name USING :db_string;] but the problem is that I don't want to re-compile all my programs.
Do you know if there's a way to solve this?
Comment