- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Passing Multiple parameters to set a Oracle En...
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
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
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-24-2002 10:39 AM
06-24-2002 10:39 AM
Passing Multiple parameters to set a Oracle Environment Variable
During the course of Oracle Installation, one of the installation file had the following problem.
Results of execution of some of the lines from the file:
$ TOPLEVEL_COMPONENT = "oracle.server","8.1.7.0.0"}
(Executed Okay)
$ DEPENDENCY_LIST={ "oracle.rdbms","8.1.7.0.0", "oracle.options","8.1.7.0.0"}
sh: oracle.rdbms,8.1.7.0.0,: not found.
(Error)
$ DEPENDENCY_LIST={ "oracle.rdbms","8.1.7.0.0"}
sh: oracle.rdbms,8.1.7.0.0}: not found.
(Gave only two parameters for the env variable, but still error. Compare to the first one. I am stumped. )
Please Help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 12:00 PM
06-24-2002 12:00 PM
Re: Passing Multiple parameters to set a Oracle Environment Variable
Have you tried explicitly noting the full path to oracle?
Hang in there.
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 01:10 PM
06-24-2002 01:10 PM
Re: Passing Multiple parameters to set a Oracle Environment Variable
How find the full path to Oracle
Here is the file attachment for reference.
Thanks a lot for responding!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 03:01 PM
06-24-2002 03:01 PM
Re: Passing Multiple parameters to set a Oracle Environment Variable
Not real clear on what you are doing but ....
Our guys install using the oracle
login user i.d.
The environment variables are in set in the profile for oracle user.
Other than that, they simply run the installler program.
Best of luck.
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 03:16 PM
06-24-2002 03:16 PM
Re: Passing Multiple parameters to set a Oracle Environment Variable
On another note, it may be that the { } are cuasing you a headache with multiple vairable values separated by commas.
Try /"xxxx/",/"yyyyy/"
Or, if you need the curly braces, escape out those characters.
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 09:00 AM
06-25-2002 09:00 AM
Re: Passing Multiple parameters to set a Oracle Environment Variable
don't know what you do there, but it's definitely NOT Bourne/Korn-/POSIX-shell syntax!
Syntactically what you do is:
VAR=value
Where "value" is a string, quoted if containing space(s), but must not have spaces around the assignment operator (=).
So your first example has a value of
oracle.server,8.1.7.0.0}
The second DOES have a space outside quotes, so it complains.
The third does have a space following the curly brace, so it's another shell-feature:
VAR=value command
where that variable (VAR) is set ONLY for for the environment of the command (and its value is "{", but the command is
oracle.rdbms,8.1.7.0.0}
which does NOT exist as a codefile on your system, of course.
Having installed literally dozens (more like hundreds) of Oracle8.1.7 servers, I have never encountered that problem, so you did something "different" from the usual install, I suspect...
What do you intent, any way?
What file are you talking about?
What environment variable have you set in the session where you try that installation?
Regards,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2002 09:12 AM
06-25-2002 09:12 AM
Re: Passing Multiple parameters to set a Oracle Environment Variable
Due to space restrictions, I was installing Oracle directly from the disk, and the Oracle installer was hanging at this file, not able to execute.
I just ran this file directly from the Unix command prompt as the installer was prompting to check the file. Nevertheless, when I tried installing Oracle from a staging area, this problem did not repeat.
I guess, this is an Oracle Bug, if installed directly from the CD.
Thanks Again!