Link to home
Start Free TrialLog in
Avatar of ITnavigators
ITnavigators

asked on

Restore Exchange 2010 Store with log files

Hello, We are in the middle of a brutal recovery....failed backups, no mdb file. The client is running Exchange 2010. We have their logfiles but do not have the mdb file. Can anyone point us in the right direction whether or not it is possible to restore a new mdb file and replay the log files?
Avatar of 5g6tdcv4
5g6tdcv4
Flag of United States of America image

how far back do the log files go? Do you have any mdb files from any backup?
Have you looked at any of the mdb to pst repair tools?
Avatar of William Yang
William Yang

you can only recover edb from logs files if the logs have not been deleted since the DB was created.

if yes, you can recover by run the script below:

@echo off
echo Performing database recovery ...
set Logfilepath=<your log file path>
set SystemFilepath=<your system file path, say the chk file>
set DBFilePath=<the database we should use>
set SGSeq=E00

eseutil /r %SGSeq% /i /d%DBFilePath% /l"%Logfilepath%" /s"%SystemFilepath%"

Good luck!
:
ASKER CERTIFIED SOLUTION
Avatar of Radweld
Radweld
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial