- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Oracle raw device
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
12-20-2005 12:06 PM
12-20-2005 12:06 PM
Oracle raw device
2) whether it be displayed in bdf ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 12:18 PM
12-20-2005 12:18 PM
Re: Oracle raw device
If you know the lvol name that is using by oracle certainly you can come to which one it is .
And hope you cannot see from bdf output and need to use sql commands.
for raw deice it will be using /dev/rdsk/ or /dev/vgname/rlvol ,
you can use like this , to get list :
SQL> select group_number, disk_number, mount_status, header_status, state, path, failgroup
2 from v$asm_disk;
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 12:43 PM
12-20-2005 12:43 PM
Re: Oracle raw device
You will require to query form the database dictionary using SQL to see the datafile name and from there you can see the volume group where the oracle data files are defined.
Data file names details can be fetched from the the views DBA_DATA_FILES, v$datafile as well.
Then you can use vgdisplay for that volume group to see the disks on which the voulme group was defined.
the raw devices would look like /dev/rdsk/....
or /dev/vg0?/rvol?... as Raj mentioned above.
Indira A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 12:55 PM
12-20-2005 12:55 PM
Re: Oracle raw device
As the others have told you, bdf won't tell you about Oracle raw devices because they're not filesystems. My normal way of identifying this information is as follows:
1. su - oracle
2. sqplus/nolog << eof
connect 1/2 as sysdba
column file_name format a45
column member format a45
spool /tmp/dba_files.txt
select file_name from dba_data files
order by file_name;
select member from v$logfile
eof
That will get you all of the potential raw devices that Oracle could be using. Please realize that there are other things that Oracle needs to run - binaries, control files, archive log filesystems if used, etc..
HTH;
Doug
order by member
------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 04:11 PM
12-20-2005 04:11 PM
Re: Oracle raw device
you can also connect as sysdba and generate a trace file with all the required information.
alter database backup controlfile to trace;
hope this helps too!
kind regards
yogeeraj