Recovering the Progress database above 4 Gig

rsamuga

New Member
Hai All,

Is there any way to recover the Progress Multi Volume database, from the backup , when some of the extent files has different date & Time stamp ?

I tried with
"Proutil dbname -C truncate -F" (Open it with Forcefully)
it does not help.

IF the DB is < 2GB , I would have gone for
"Probkup online DBname backup-dbname".

If anyone of you have come across this kind of error, pls let me know the solution.

Thanks & Regards,
Raghu.
 

francis_aro

New Member
Hi Raghu,

After Online OS-copy of database. No prostrct repair was done afterwards on the new db, thus its db-file still pointed to the .d and bi-file of the old db.

Please the following steps for Start a DB in Force Mode (Proutil dbname -C truncate -F )

1. prostrct list <dbname>
2. Delete the .db file
3. prostrct builddb <dbname>
4. proutil <dbname> -C truncate -F
5. Dump of all tables, users and sequences
6. Create new database
7. Load contents

or

Restore db from backup.
Regards
Francis
rsamuga said:
Hai All,

Is there any way to recover the Progress Multi Volume database, from the backup , when some of the extent files has different date & Time stamp ?

I tried with
"Proutil dbname -C truncate -F" (Open it with Forcefully)
it does not help.

IF the DB is < 2GB , I would have gone for
"Probkup online DBname backup-dbname".

If anyone of you have come across this kind of error, pls let me know the solution.

Thanks & Regards,
Raghu.
 
Top