- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Command line relinking Oracle
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 03:25 AM
тАО06-15-2004 03:25 AM
Command line relinking Oracle
Does anyone rememebr the command for it, If so please do let me know
Many Thnaks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 03:43 AM
тАО06-15-2004 03:43 AM
Re: Command line relinking Oracle
cd $ORACLE_HOME/rdbs/lib
make -f ins_rdbms.mk install
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 05:20 AM
тАО06-15-2004 05:20 AM
Re: Command line relinking Oracle
cd $ORACLE_HOME/network/lib
make -f ins_network.mk install
cd $ORACLE_HOME/sqlplus/lib
make -f ins_sqlplus.mk install
Thanks,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 03:42 PM
тАО06-15-2004 03:42 PM
Re: Command line relinking Oracle
see also the doc directory in cd $ORACLE_HOME/rdbms/doc
hope this helps too!
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 03:57 PM
тАО06-15-2004 03:57 PM
Re: Command line relinking Oracle
oracle $ cd $ORACLE_HOME
oracle $ relink all
regards
mB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2004 03:59 PM
тАО06-15-2004 03:59 PM
Re: Command line relinking Oracle
2.verify that your $ORACLE_HOME is set correctly:
$ cd $ORACLE_HOME
% pwd
3. verify environment for relinking:
- Set SHLIB_PATH to include $ORACLE_HOME/lib
- if 64bit 8i Oracle, SHLIB_PATH should also include $ORACLE_HOME/lib64.
- ensure LPATH is unset
4. shutdown both database abd listener
5. to relink Oracle:
if oracle 8i or 9i, a 'relink' script is found in the $ORACLE_HOME/bin
$ cd $ORACLE_HOME/bin
to relink most of the executables associated with oracle:
$ relink all
or you may use 'make' commands as below:
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
.....
If relinking is successful, the make command will eventually return to the OS prompt without an error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-29-2004 01:18 AM
тАО07-29-2004 01:18 AM
Re: Command line relinking Oracle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-29-2004 11:15 PM
тАО07-29-2004 11:15 PM
Re: Command line relinking Oracle
There is no attachment as far as i can see...
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-29-2004 11:35 PM
тАО07-29-2004 11:35 PM
Re: Command line relinking Oracle
On hpux, if Oracle 7.3.X, 8.0.X, 8.1.X, remember to:
- Set SHLIB_PATH to $ORACLE_HOME/lib If using 64bit 8i Oracle, also
- Set LD_LIBRARY_PATH to $ORACLE_HOME/lib
- ensure LPATH is unset
Hope it helps.
twang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-29-2004 11:36 PM
тАО07-29-2004 11:36 PM
Re: Command line relinking Oracle
if Oracle 7.3.x :
For executables: oracle, exp, imp, sqlldr, tkprof
% cd $ORACLE_HOME/rdbms/lib
% make -f ins_rdbms.mk install
For executables: svrmgrl, svrmgrm
% cd $ORACLE_HOME/svrmgr/lib
% make -f ins_svrmgr.mk linstall minstall <- linstall is for svrmgrl,
minstall is for svrmgrm
For executables: sqlplus
% cd $ORACLE_HOME/sqlplus/lib
% make -f ins_sqlplus.mk install
For executables: dbsnmp, oemevent, oratclsh
% cd $ORACLE_HOME/network/lib
% make -f ins_agent.mk install
For executables: names, namesctl
% cd $ORACLE_HOME/network/lib
% make -f ins_names.mk install
For executables: tnslsnr, lsnrctl, tnsping, csmnl, trceval, trcroute
% cd $ORACLE_HOME/network/lib
% make -f ins_network.mk install