- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup file warnings
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-17-2002 09:34 AM
06-17-2002 09:34 AM
I occasionally get warnings during our full backup with fbackup that a file (not always the same file) was not backed-up.
fbackup(3009): WARNING: File number 142 (/u03/oradata/ORD/user03.dbf)
was not successfully backed up
Can any one give clues as to how I can find out why the file wasn't backed-up?
Thanks in advance.
Dewy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 09:37 AM
06-17-2002 09:37 AM
Re: fbackup file warnings
The file was probably in use by the database / process.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 09:42 AM
06-17-2002 09:42 AM
Re: fbackup file warnings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 09:42 AM
06-17-2002 09:42 AM
Re: fbackup file warnings
As Sanjay has said tje file was in use and fbackup had exceeded the maxretries and then ignored the file .
You can increase maxretries in:-
/etc/sam/br/fbackup_config
blocksperrecord 32
records 32
checkpointfreq 32
readerprocesses 2
maxretries 10
retrylimit 5000000
maxvoluses 100
If it is at default (10) then try 15 and then 20.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 09:54 AM
06-17-2002 09:54 AM
Re: fbackup file warnings
It seems that these warnings are a fairly new occurrence.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 10:03 AM
06-17-2002 10:03 AM
SolutionIf this warning was preceeded by one that indicates that the (same) file was inuse (fbackup(3007)) then you have attempted to backup a file that changed between the time it was first targeted for transfer to tape and the time it finished transfering to tape.
'fbackup' note the timestamp of the file on disk as it begins its transfer to tape and again when it has finished its replication to tape. If the timestamp's differ, 'fbackup' will attempt to recopy the file 'maxretries' times as governed by this parameter's value in the 'fbackup' 'config' file (see the 'fbackup' man pages for more details).
The dire problem, here is that it appears that your database was inuse during the backup process. While you might get lucky and have a situation where you could copy various portions of your database, they would be inconsistent if you tried to restore them.
Too, if a file is in use when 'fbackup' reties its copy, tape is wasted. 'fbackup' marks the first (second, third, etc.) tape copy as "bad" and proceeds to copy the file (again) from disk until a good copy (same timestamp) exists on tape or until 'maxretries' is exhausted.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2002 10:15 AM
06-17-2002 10:15 AM
Re: fbackup file warnings
I might suggest a Plan B. You might consider doing a shutdown, a snapshot mount of all your Oracle filesystems, and then a startup. You would have a total downtime of about two minutes. You then backup the snapshot mount points. You then have all the warm-fuzzy safety of a true cold backup with almost all the uptime of a hotbackup. You must have OnlineJFS to do this.