Showing posts with label SharePoint 2013 Backups and Restores. Show all posts
Showing posts with label SharePoint 2013 Backups and Restores. Show all posts

27 August, 2013

Backup Restore in sharepoint 2013 + Backup and Recovery Tools for SharePoint

A good backup is an excellent approach to prevent data loss & repair database in most of the data corruption cases.

If your backup is not well structured then it will not help you to recover your data at any cost.

Back up a site collection by using Windows PowerShell
Backup-SPSite -Identity <SiteCollectionGUIDorURL> -Path <BackupFile> [-Force]

Example: Backup-SPSite -Identity http://sharepointamol/sites/planet -Path D:\planet.bak -force

Along with this, we can use the following parameters with respect to our requirements:

-Force: overwrite a previously used backup file

-NoSiteLock: keep the read-only lock from being set on the site collection while it is being backed up

Restore site collection by using windows PowerShell
Restore-SPSite -Identity <SiteCollectionURL> -Path <BackupFile>  -Force

Back up a Farm in SharePoint 2013 by using windows PowerShell
Backup-SPFarm -Directory <BackupFolder> -BackupMethod {Full | Differential} [-Verbose]

<BackupFolder> is the path of a folder on the local computer

Backing up sites, lists, and libraries
Export-SPWeb –Identity “http://SharePointamol/Planets/SharePoint2013” –Path “E:\Backups\SharePointPlanetSite.cmp”

Import List: Using Powershell
Import-SPWeb http://sharepointamol.com -path E:\backup\planets.cmp -updateversions overwrite

Backup and Recovery Tools for SharePoint

DocAve Backup and Restore for Microsoft® SharePoint Backup

A Simple Way to Restore Individual SharePoint Documents

Performance best practices for SharePoint backup and restore operations

If you have any queries/questions regarding the above mentioned information then please let me know, I would be more than happy to help you as well as resolves your issues, Thank you.

16 November, 2012

SharePoint 2013 Backups and Restores


The SharePoint 2013 backup architecture and recovery processes include farm backup and recovery, granular backup and recovery, and recovery from an unattached content database. You can complete backup and recovery operations by using the SharePoint Central Administration website or Windows PowerShell cmdlets. Note that some built-in backup and recovery tools may not meet all the requirements of your organization.

Million thanks to Microsoft for publishing such wonderful articles and make it publicly available to all of us.

The following articles on TechNet and related resources provide information about backup solutions for SharePoint 2013.The IT professionals who are responsible for backup and recovery solutions are expected to have an understanding of the technical backup details.
A backup is a copy of data that is used to restore and recover that data after a system failure. While backups allow you to restore data after a failure they are also useful to keep for routine purposes. These purposes include copying a database from one server to another, setting up database mirroring, and archiving to comply with regulatory requirements.