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
- See more at: http://sharepointknowledgebase.blogspot.in/2013/08/backup-restore-in-sharepoint-2013.html#sthash.0dLlwuSC.dpuf
No comments:
Post a Comment