- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to specify an incremental backup in a scri...
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
тАО04-11-2001 05:47 AM
тАО04-11-2001 05:47 AM
How to specify an incremental backup in a script that calls an Omniback Datalists Backup???
Currently in our environement we have a job schedular called Autosys that calls many scripts in different jobs for various Omniback Backups. One of our Backups we perform on a daily basis is an Oracle Hot Backup. Everyday when this Hot Backup job is run in Autosys it calls a script which when executed starts a Full Backup of the Hot Backup Datalist specified.
Instead of running a Full Hot Backup everyday I wanted to try and modify this script so that when executed in Autosys it will run an incremental 1 backup. This will save total media and backup time as it will only backup any changes since last full Hot Backup.
Here is the script below that is called from Autosys.
root@Chapter3:/home/root/work/operator/omniback/Chapter3$ RTK_Hot_Database.bkp
#! /usr/bin/ksh
/opt/omni/bin/omnib -datalist Chapter3_RTK_Hot_Database
exit_status=`echo $?`
if [ $exit_status -eq 0 -o $exit_status -eq 10 ]
then
exit 0
else
exit 30
fi
Anyone know what I would need to modify on the line that states -datalist (Backup) to test how to do a Level 1 Incremental Backup?
Any help is greatly appreciated...
S Aldrich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2001 06:18 AM
тАО04-11-2001 06:18 AM
Re: How to specify an incremental backup in a script that calls an Omniback Datalists Backup???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2001 06:36 AM
тАО04-11-2001 06:36 AM
Re: How to specify an incremental backup in a script that calls an Omniback Datalists Backup???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2001 07:10 AM
тАО04-11-2001 07:10 AM
Re: How to specify an incremental backup in a script that calls an Omniback Datalists Backup???
Modify your script with this line:
/opt/omni/bin/omnib -datalist \ apter3_RTK_Hot_Database -mode incremental1
Best regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2001 07:30 AM
тАО04-11-2001 07:30 AM
Re: How to specify an incremental backup in a script that calls an Omniback Datalists Backup???
Thanks a lot for the replies. I don't know alot about Oracle but are there anyway issues with performing incremental backups on a Oracle database?
If I did one Full Backup a week and the rest at incremental level 1 and I had problems with the database then I would have to Restore from the weekly full backup and the last level 1 incremental backup. Is this correct?
Are there any issues with the Oracle Database after restoring from the Full Backup then the last level 1 incremental from a few days later?
Your help is greatly appreciated...
S Aldrich