- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: PROBLEM IN OMNI II 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
04-02-2001 11:38 AM
04-02-2001 11:38 AM
PROBLEM IN OMNI II BACKUP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2001 11:45 AM
04-02-2001 11:45 AM
Re: PROBLEM IN OMNI II BACKUP
To speed up the backup, I do not think it is your database, unless it is on a slow system. You may want to change the level of cataloging to Directory level. I hope this helps a little,
Tommy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2001 11:57 AM
04-02-2001 11:57 AM
Re: PROBLEM IN OMNI II BACKUP
Both of these are options you need to decide on...or...
I would recommend removing old backup sessions you will not (more than likely) restore anything from. Then after you have done this..you need to do a write/read ascii to clean up your fragmented database.
To do this, create a directory someplace you have better than 2gb of free space and do the following as root:
#omnidbutil -writeascii -mmdb /
This will run for a good while (4gb I think takes several hours)...when it's done do:
#omnidbutil -readascii -mmdb /
This will run for a couple hours....but when finished your framented database will be smaller.
Hope this helps,
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 05:29 AM
04-03-2001 05:29 AM
Re: PROBLEM IN OMNI II BACKUP
Seems OBII at ver 3.x had a performance problem, and recommended loading patch PHSS_23105.
Just another thought,
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2001 06:50 AM
04-03-2001 06:50 AM
Re: PROBLEM IN OMNI II BACKUP
Below you'll find a way to strip your OBII database. But I don't think this is the cause of your slow OBII performance.
It can be the tape device or your network or the disk.
- Is your tape device a DLT or DDS
- Is it connect on a shared SCSI-bus
etc.
Hi,
# Check if the protection on your Catalog and tape are not set to permanent.
# Check if the purge is running oke, that Sessions are deleted
(/var/opt/omni/log/purge.log)
You can double check this by running a
omnidb -session (to see if there are no old sessions in the databse).
This is a procedure I've used frequently:
- Ensure that no omniback sessions are running.
- Execute an omnidbcheck
- Stop omniback.
- Make a backup of /var/opt/omni/db(tar)
- Start omniback
- omnidbutil -info >/tmp/omni_db_before.info
Export the OBII-database
- omnidbutil -writeascii [-mmdb Directory -cdb Directory -no_detail
e.g: omnidbutil -writeascii -mmdb /tmp/mmdb -cdb /tmp/cdb -no_detail
Initialize the OBII-database
- omnidbinit
- omnidbutil -info >/tmp/omni_db_middle.info
Import OBII database
- omnidbutil -readascii [-mmdb Directory -cdb Directory -no_detail
e.g: omnidbutil -readascii -mmdb /tmp/mmdb -cdb /tmp/cdb -no_detail
- omnidb -strip
- omnidbutil -purge -days #
- omnidbutil -info >/tmp/omni_db_after.info
Good Luck