- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- raw partition backup
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
03-25-2005 05:47 PM
03-25-2005 05:47 PM
Our environment is hp-ux 10.2 with sybase 11.x
Sybase using raw disk partitioning.
my questions are
1.Apart from dd command,what other commands can be used to take backup of sybase raw partition.
2.Is there any way to take backup of sybase using OS commands without shutting down sybase.
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2005 08:27 PM
03-25-2005 08:27 PM
Solution1.You can use fbackup command.
2. No way to backup database with OS command withow shutdown database.
I recommend you should use the backup software for example: Data Protector or Veritas backup software.
These software support backup raw device/partion and online backup.(Of course, you have to by the lisence).
regard,
HoangChiCong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2005 10:42 PM
03-25-2005 10:42 PM
Re: raw partition backup
Can you please give the fbackup syntax.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2005 06:29 AM
03-26-2005 06:29 AM
Re: raw partition backup
Here's the syntax for backup.
e.g.
your tape drive device file = /dev/rmt/0m
filesystem you want to backup = /home
#fbackup -v -f /dev/rmt/0m -i /home
the command above will backup your home directory. you can add as many -i
Hope that helps.
Regards,
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2005 06:52 AM
03-26-2005 06:52 AM
Re: raw partition backup
Most database vendors who support raw devices have a backup utility that you should use - I don't know sybase I'm afraid, Informix for example has onbar and ontape.
You could use dd -- but this is not specifically built for backup/restore, and does not have the error checking that a true backup tool has. Also you will have to have a dd command for each device, like this:
dd if=/dev/vg01/rlvol1 of=/dev/rmt/0mnb bs=512k
if you use no rewind you can then append the next volume to the tape.
The other option is a backup software product like Data Protector or Veritas NetBackup.
Cheers,
Tony.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2005 06:53 AM
03-26-2005 06:53 AM
Re: raw partition backup
you will need a license from HP for hpux mirroring & and I would also purchase online JFS.
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2005 07:14 AM
03-26-2005 07:14 AM
Re: raw partition backup
http://sybooks.sybase.com/onlinebooks/group-as/asg1251e/commands/@Generic__BookView/26732;td=50#X
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2005 09:10 AM
03-27-2005 09:10 AM
Re: raw partition backup
----------------------------
isql -Usa -P <
go
exit
EOF
----------------------------
If it is a BIG database or no space, here is a example to dump to tape:
----------------------------
isql -Usa -P <
go
quit
EOF1
----------------------------
Hope this helps....>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2005 12:05 PM
03-27-2005 12:05 PM
Re: raw partition backup
Note that a database dump can be quite lengthy, requiring a *lot* of tape and time. Most databases will not handle a backup made while records are actively changed so when you restore such a backup, there will be numerous corrupt records, broken chains, invalid indexes, etc.
You probably paid a *lot* for the Sybase licenses so don't look for something free like dd or dump to backup your valuable data. Get a commercial tool such as HP's Data Protector which provides support for raw partition backups and hooks to support the database in backup mode. (make sure your DBAs understand how to put the database in backup mode and have made provisions for this in the user interface)
Bill Hassell, sysadmin