- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- RAW LVs backup using unix utilities
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-01-2006 06:59 PM
06-01-2006 06:59 PM
RAW LVs backup using unix utilities
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2006 07:11 PM
06-01-2006 07:11 PM
Re: RAW LVs backup using unix utilities
You can use dd command.
http://www.informatik.uni-frankfurt.de/doc/man/hpux/dd.1.html
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2006 07:15 PM
06-01-2006 07:15 PM
Re: RAW LVs backup using unix utilities
check the man pages of cpio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2006 10:39 PM
06-01-2006 10:39 PM
Re: RAW LVs backup using unix utilities
Regarding oracle raw volume backup -
You're probably aware of this already but the database needs to be down when you use dd for raw volume backup.
We successfully used the dd technique to migrate a database from one server to another after we ftp'd the files across the network - so dd does work :)
Alternatively, if the database 'is' down. You can do a export and backup that file only, along with the database structure in the VG's .
Regards,
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2006 02:20 AM
06-02-2006 02:20 AM
Re: RAW LVs backup using unix utilities
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2006 02:31 AM
06-02-2006 02:31 AM
Re: RAW LVs backup using unix utilities
Syntax that I often use:
dd if=/dev/sapdata/rora001dbf bs=1024k of=/cheapsataraid/rora001.dd
For some of our large enterprise databases, we use split mirrors for bot HOT and COLD backup and use NetBackup to push the RAW splits to tape.
Hope this helps.