Tdp oracle 2.2 Relinking Problem

jatala

Newcomer
Joined
Sep 17, 2002
Messages
1
Reaction score
0
Points
0
Hi tsm'rs



I have an AIX TSM Client 4.2.2.1 (AIX 4.3.3.). This server have an oracle 8.0.4.1 database installed. When I try to relink the Tdp for Oracle 2.2 libraries, my forms made on Developer 6i can't be saved on the Oracle database. This error doesn't happen with my other forms made with Developer 2.1.



What can I do ? any idea?
 
Hi

Did the relink work with no errors?

Oracle recommend the following process.

1.Login as the owner of software (normally oracle)

2. set $ORACLE_HOME environment variable

3. set symbolic link of libobk.a to tivoli file

4. Oracle 8.0.X:

- Set LIBPATH to include $ORACLE_HOME/lib

- Set LD_LIBRARY_PATH to include $ORACLE_HOME/lib and $ORACLE_HOME/network/lib (Required when using Oracle products that use Java)

- Set LINK_CNTRL to L_PTHREADS_D7 if using AIX 4.3. ('oslevel' verifies OS version)

5. Relink executables...

For executables: oracle, exp, imp, sqlldr, tkprof, mig, dbv, orapwd, rman, svrmgrl, ogms, ogmsctl

% cd $ORACLE_HOME/rdbms/lib

% make -f ins_rdbms.mk install

For executables: sqlplus

% cd $ORACLE_HOME/sqlplus/lib

% make -f ins_sqlplus.mk install

For executables: dbsnmp, oemevent, oratclsh, libosm.so

% cd $ORACLE_HOME/network/lib

% make -f ins_oemagent.mk install

For executables: tnslsnr, lsnrctl, namesctl, names, osslogin, trcasst, trcroute

% cd $ORACLE_HOME/network/lib

% make -f ins_network.mk install



If you still have an error report it to Oracle with the Form error number.
 
Back
Top