- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- New Database wants 1GB available in /
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
05-16-2002 04:42 AM
05-16-2002 04:42 AM
If this is not some parameter setting problem, can I increase the size of / without reinstalling HP-UX?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:49 AM
05-16-2002 04:49 AM
Re: New Database wants 1GB available in /
The ORACLE_BASE is not set. Did you export it into the environment in which you need it?
You certainly do not want to increase the size of the '/' filesystem!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:50 AM
05-16-2002 04:50 AM
Re: New Database wants 1GB available in /
There should not be any reason to extend / to hold such a amount of data. And yes, you would have had to reinstall.
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:54 AM
05-16-2002 04:54 AM
Re: New Database wants 1GB available in /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:58 AM
05-16-2002 04:58 AM
Re: New Database wants 1GB available in /
ORACLE_BASE & ORACLE_HOME normally only define where the Oracle software is located, NOT where the database's datafiles are.
Check the filenname or variables for the datafiles.
As mentionned '/' should not be extended, nor used for user or data files.
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 04:59 AM
05-16-2002 04:59 AM
Re: New Database wants 1GB available in /
This is a issue of ORACLE_BASE being not set properly.
How are you creating a database. Are you using some script. Can you set the ORACLE_BASE variable in the script and then try to create the database ?
We need more info about how you go about your database creation.
And there is no need to increase the size of the root.
-Sukant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:01 AM
05-16-2002 05:01 AM
Re: New Database wants 1GB available in /
What does
env | grep ORA
return?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:03 AM
05-16-2002 05:03 AM
Re: New Database wants 1GB available in /
ORACLE_BASE=/oradb
ORACLE_SID=dia2
ORACLE_TERM=xterm
ORA_NLS33=/oracle/product/9.0.1/ocommon/nls/admin/data
ORACLE_HOME=/oracle/product/9.0.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:04 AM
05-16-2002 05:04 AM
Re: New Database wants 1GB available in /
env| fgrep ORACLE_BASE
echo shows you only the vars in your current shell, not from subshells or a executable started from this shell.
Ruediger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:06 AM
05-16-2002 05:06 AM
Re: New Database wants 1GB available in /
echo $ORACLE_BASE
will give you the value in the current shell. Once the Oracle install starts it will source the variables, but only those exported from the current shell.
After setting the ORACLE_BASE variable (which you have done correctly), try
export $ORACLE_BASE
before starting the install again
Hope that helps
N
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:10 AM
05-16-2002 05:10 AM
Re: New Database wants 1GB available in /
Thierry, which variables and filenames should I check?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:14 AM
05-16-2002 05:14 AM
Re: New Database wants 1GB available in /
Oops - Sorry - just do the export and try and re-create the database
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 05:20 AM
05-16-2002 05:20 AM
SolutionORACLE_BASE <
I referred to the "create tablespace ... datafile 'xxx' " statements, check the datafile values.
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 06:02 AM
05-16-2002 06:02 AM
Re: New Database wants 1GB available in /
Thanks.
Because $ORACLE_BASE wasn't set during installation the pfile was sitting under $ORACLE_HOME and I just had to point it in the right direction.
Thierry, you get the points.