- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- restore from tape help
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
01-23-2002 02:24 PM
01-23-2002 02:24 PM
Thanks in advance...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 02:30 PM
01-23-2002 02:30 PM
Re: restore from tape help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 02:31 PM
01-23-2002 02:31 PM
Re: restore from tape help
Question number 1: How was the backup made? That is, what utility was used to create your backup?
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 02:37 PM
01-23-2002 02:37 PM
SolutionRun this script
#!/bin/sh
find /dbdir -mtime +"days since backup" -exec ls {} \; > /tmp/newfiles.out
for i in `cat /tmp/newfiles.out`
do
echo "$i \" >> /tmp/newfiles1.out
done
Then vi /tmp/newfiles1.out and add this on the first line making sure it not to remove the line currently present, but before the entry already present.
tar xvf /dev/rmt/tapedevice
Example
tar xvf /dev/rmt/tapedevice /ora01/file1 /ora01/file2 etc...
Hope this helps,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 02:59 PM
01-23-2002 02:59 PM
Re: restore from tape help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2002 03:13 PM
01-23-2002 03:13 PM
Re: restore from tape help
You'll have to do the restore either thru SAM, or use the frecover command.
Do you know, or can you tell via an ll of the directory, which files have changed since you ran the backup? If so, the recovery interface through SAM lets you specify specific files to restore. I am not sure what the other options within SAM are for recovering, as I'm not able to login right now.