- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can I know free raw devices?
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
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
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
тАО07-14-2007 12:14 AM
тАО07-14-2007 12:14 AM
how can I know free raw devices?
simple question!!!
how can I know unused raw logical volumes in a HP-UX RISC servers?
we have currently two node cluster servicegaured running Oracle 9i database RAC.
recently, I discovered 1 TB unused (not belong to cluster RAC) after discussion with our application team.
Normally, with AIX servers, there is a flag closed/syncd or open/syncd to give you the status of the device.
how can I know that in HP-UX?
Thanks and regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2007 01:35 AM
тАО07-14-2007 01:35 AM
Re: how can I know free raw devices?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2007 03:10 AM
тАО07-14-2007 03:10 AM
Re: how can I know free raw devices?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2007 08:47 AM
тАО07-14-2007 08:47 AM
Re: how can I know free raw devices?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2007 03:19 AM
тАО07-15-2007 03:19 AM
Re: how can I know free raw devices?
Indeed it is quite difficult a question especially that you know your system more better than us.
I would recommend that you run the command:
alter database backup controlfile to trace as '/tmp/foo.sql'
Verify all the files being used and verify all the disk device files at the OS level
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2007 05:29 AM
тАО07-18-2007 05:29 AM
Re: how can I know free raw devices?
A good indication would be, if the ownership uid/gid belongs to a database account.
You could run dbv against the raw device.
It will pretty sure tell you if this "file" has oracle structure or not (at least for datafiles).
Logfiles and controlfile are more complicated.
For ALL databases select ALL filenames from
V$DATAFILE
V$TEMPFILE
V$LOGFILE
V$CONTROLFILE
and check the result for being either a raw device name or a symlink to a raw device.
List might not be complete, but a good starter and might need adjustment for other databases as well if installed in addition to oracle.
Good hunting
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2007 06:14 AM
тАО07-18-2007 06:14 AM
Re: how can I know free raw devices?
You may find this recent thread on the topic useful:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1138171
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-20-2007 08:23 PM
тАО10-20-2007 08:23 PM
Re: how can I know free raw devices?
I very sorry for my delayed response.
for this issue, I wrote a script for our DBA team to check the current used raw devices in the Oracle RAC and compare it with all raw devices in the system to find out the free volumes.
This is the only way I can see to solve this issue.
Thanks.