1831435 Members
3331 Online
110025 Solutions
New Discussion

fbackup question

 
SOLVED
Go to solution
Mark Lawley
Contributor

fbackup question

I may be looking in the wrong places but I
haven't been able to find the answer to this
question.

Is it possible to backup raw data for one of our databases using fbackup?
5 REPLIES 5
Sanjay_6
Honored Contributor
Solution

Re: fbackup question

Hi Mark,

I think you cannot backup raw data using fbackup. You can use "dd" to backup raw data from the system.

Hope this helps.

regds
Rodney Hills
Honored Contributor

Re: fbackup question

As long as it exists as a file on a standard hpux file system, fbackup can save it.

If it is a database file, it can't be open at the time of backup. IE no transactions can be running against it.

-- Rod Hills
There be dragons...
S.K. Chan
Honored Contributor

Re: fbackup question

If it exists as a file, yes you can. Otherwise you can't use fbackup for raw data.
Tom Jackson
Valued Contributor

Re: fbackup question

Mark:

You must either use the database's backup utility to do a "hot backup", or you can shutdown the database then do a regular backup on the database files. If you backup your database while it's running, there is a chance that one (or more) database files can change while another database file is being backed up. This inconsistency could make the database unusable when restored.

hth - Tom