E14: Exchange 2010 Database Portability Recovery
- Reference
http://social.technet.microsoft.com/Forums/exchange/en-US/6ec28ddb-63f3-4b6f-9d75-b0b507f9c0d7/how-to-move-database-using-database-portability-in-exchange-2010?forum=exchange2010
http://technet.microsoft.com/en-us/library/dd876926.aspx
http://msexchangeguru.com/2013/04/15/e2010-database-portability/
- A offline DB that need to recover on new server
- Check DB state first
- Copy DB to a new server. Rename old folder, and create a new folder for the Database
- Create a database for recovery on new server
- Specific the DB path
-
- Mount DB
- Enable restore on this DB
- Dismount DB
- Remove new db & logs
- Remove .chk file
- Mount the database
-
After the database is mounted, modify the user account settings with the Set-Mailbox cmdlet so that the account points to the mailbox on the new mailbox server. To move all of the users from the old database to the new database, use the following syntax.
Get-Mailbox -Database <SourceDatabase> |where {$_.ObjectClass -NotMatch '(SystemAttendantMailbox|ExOleDbSystemMailbox)'}| Set-Mailbox -Database <TargetDatabase>
[PS] C:\>Get-Mailbox -Database BQT-ArchiveIn_201309_R |where {$_.ObjectClass -NotMatch '(SystemAttendantMailbox|ExOleDbSystemMailbox)'}| Set-Mailbox -Database BQT-ArchiveIn_201309_R2 - Open outlook to check mailbox is able to read.
Comments
Post a Comment